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

/* Sticky Footer */
html,
body {
  height: 100%;
}

.body-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}

div[data-global-resource-path*="header"] {
  grid-row-start: 1;
  grid-row-end: 2;
  min-width: 0; /* Fixes width issues on smaller screens */
}

div[data-global-resource-path*="footer"] {
  grid-row-start: 3;
  grid-row-end: 4;
  min-width: 0; /* Fixes width issues on smaller screens */
}

.body-container-wrapper {
  grid-row-start: 2;
  grid-row-end: 3;
  min-width: 0; /* Fixes width issues on smaller screens */
}

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  .row-fluid .span11 {
    width: 91.66%;
  }

  .row-fluid .span10 {
    width: 83.33%;
  }

  .row-fluid .span9 {
    width: 75%;
  }

  .row-fluid .span8 {
    width: 66.66%;
  }

  .row-fluid .span7 {
    width: 58.33%;
  }

  .row-fluid .span6 {
    width: 50%;
  }

  .row-fluid .span5 {
    width: 41.66%;
  }

  .row-fluid .span4 {
    width: 33.33%;
  }

  .row-fluid .span3 {
    width: 25%;
  }

  .row-fluid .span2 {
    width: 16.66%;
  }

  .row-fluid .span1 {
    width: 8.33%;
  }
}

/* Visibilty classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/* Responsive visibilty classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 40px;
}

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

.dnd-section .dnd-module.widget-span {
  padding: 0 20px;
}

.dnd-section[class*="force-full-width-section"] > .row-fluid,
.dnd-section[class*="force-full-width-section"] .dnd-module.widget-span {
  padding: 0;
}

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

html {
  line-height: 160%;
  word-break: break-word;
}

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

/* Paragraphs */

p {
  margin: 0 0 1.6em;
}

p:last-child {
  margin-bottom: 0 !important;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s linear;
}

a:hover,
a:focus {
  text-decoration: underline;
}

a:focus {
  outline: 0;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 160%;
  margin: 0 0 1em;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0 !important;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.6em;
  padding-left: 25px;
}

ul:last-child,
ol:last-child {
  margin-bottom: 0 !important;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
  padding-left: 0;
}

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  margin: 0 0 1.6em;
  quotes: "\201C" "\201D";
  text-align: center;
}

blockquote:last-child {
  margin-bottom: 0 !important;
}

blockquote:before {
  content: open-quote;
}

blockquote:after {
  content: close-quote;
}

/* Horizontal rules */

hr {
  border: 0;
  border-bottom: 1px solid #CCC;
  margin: 1.6em 0;
}

hr:first-child {
  margin-top: 0;
}

hr:last-child {
  margin-bottom: 0 !important;
}

/* Image alt text */

img {
  font-size: 9px;
  height: auto;
  max-width: 100%;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

a.button {
  text-decoration: none;
}

/* No button */

.no-button {
  border-radius: 0;
  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;
}

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  color: initial;
  text-decoration: none;
  transition: none;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
}

.hs-form-field > label {
  margin-bottom: 5px;
}

/* Help text */

form legend {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  border: 1px solid #CCC;
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  padding: 10px 20px;
  width: 100%;
}

form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form select:focus,
form textarea:focus {
  border-color: #000;
  outline: 0;
}

form select {
  padding: 10px 16px;
}

form textarea {
  resize: vertical;
}

form fieldset {
  margin: 0 -9px !important;
  max-width: none !important;
}

form fieldset .hs-form-field {
  padding: 0 9px;
}

form fieldset.form-columns-1 .input,
form fieldset.form-columns-1 .hs-input:not([type="checkbox"]):not([type="radio"]),
form fieldset.form-columns-2 .input,
form fieldset.form-columns-2 .hs-input:not([type="checkbox"]):not([type="radio"]),
form fieldset.form-columns-3 .input,
form fieldset.form-columns-3 .hs-input:not([type="checkbox"]):not([type="radio"]) {
  margin-right: 0 !important;
  width: 100% !important;
}

form fieldset.form-columns-2 .hs-form-field {
  width: 50% !important;
}

form fieldset.form-columns-3 .hs-form-field {
  width: 33.33% !important;
}

@media (max-width: 767px) {
  form fieldset.form-columns-2 .hs-form-field,
  form fieldset.form-columns-3 .hs-form-field {
    width: 100% !important;
  }
}

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 5px 0 0;
}

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

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

/* 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-button,
.fn-date-picker .pika-next,
.fn-date-picker .pika-prev {
  border-radius: 0;
  min-width: auto;
}

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

/* Placeholder */

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
}

::-moz-placeholder { /* Firefox 19+ */
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
}

:-moz-placeholder { /* Firefox 18- */
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
}

::placeholder {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
}

/* Headings and text */

.widget-type-form .form-title {
  font-size: 64px;
  line-height: 107.4%;
  margin-bottom: 35px;
}

.widget-type-form .hs-richtext,
.widget-type-form .hs-richtext p {
  font-size: 14px;
  margin: 0 0 22px;
}

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

/* GDPR */

.legal-consent-container .inputs-list > li:first-child {
  margin-top: 0;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 2em !important;
}

/* Validation */

.hs_error_rollup {
  color: red;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  margin-bottom: 25px;
}

.hs-form-required {
  color: red;
}

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

.hs-error-msg {
  color: red;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  margin-top: 5px;
}

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 25px;
  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
*/

.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}
/* Sticky Header */

.main-header {
  background-color: #FFF;
  position: relative;
  width: 100%;
  z-index: 999;
}

body[data-sticky="true"] .main-header {
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
}

body[data-nav="true"] {
  overflow: hidden;
}

/* Header Container */

.header-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  padding-top: 20px;
}

.main-header--no-navigation .header-container {
  justify-content: center;
}

/* 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;
  flex-basis: 100%;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 0;
  max-width: 200px;
}

.header-logo .logo-company-name {
  font-size: 18px;
}

/* Navigation */

.header-navigation-wrapper {
  background-color: #FFF;
  height: 100%;
  left: 0;
  min-height: 100%;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  visibility: hidden;
  width: 100%;
  z-index: 999;
}

body[data-nav="true"] .header-navigation-wrapper {
  opacity: 1;
  visibility: inherit;
}

.header-navigation--open,
.header-navigation--close {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  color: #000;
  display: block;
  padding: 0;
  position: relative;
  z-index: 999;
}

.header-navigation--open:hover,
.header-navigation--open:focus,
.header-navigation--close:hover,
.header-navigation--close:focus {
  background-color: transparent;
  border: 0;
  color: #000;
}

.header-navigation--open:active,
.header-navigation--close:active {
  transform: scale(0.9);
}

.header-navigation--open svg,
.header-navigation--close svg {
  display: block;
  height: 26px;
  width: auto;
}
.main-footer--bottom {
  font-size: 0.8em;
  padding: 20px 0;
}

.main-footer--bottom p {
  margin: 0;
}

.main-footer--bottom .content-wrapper {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.main-footer--bottom .website-by span,
.main-footer--bottom .website-by img {
  display: inline-block;
  vertical-align: middle;
}

.main-footer--bottom .website-by img {
  margin-left: 12px;
}
/* Logo */

.hs_cos_wrapper_type_logo,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_logo a {
  display: inline-block;
  vertical-align: top;
}

/* 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 ul {
  flex-direction: row;
}

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

/* Images */

.hs_cos_wrapper_type_linked_image,
.hs-image-widget  {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 1024px) {
  
}
@media (max-width: 767px) {
  .content-wrapper {
    padding: 0 30px;
  }

  .dnd-section > .row-fluid,
  .dnd-section .dnd-module.widget-span {
    padding: 0 15px;
  }
}

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




@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Header Css Start */
[data-sticky="true"] header.main-header {
    background: #1e3669 !important;
}
.header-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:20px;
}
header.main-header {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    background: transparent !important;
}
a.header-skip {
    display: none;
}
.header-navigation {
    display: none;
}
.main-menu ul.menu__wrapper {
    display: flex;
    padding: 0 30px;
    background: #F5F5F5;
    border-radius: 15px;
}
.main-menu ul.menu__wrapper li.menu__item {
    padding: 20px 30px;
}
.main-menu ul.menu__wrapper li.menu__item .menu__link {
    color: #302E2F;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}
.header-navigation-wrapper {
    position: static;
    opacity: 1;
    visibility: visible;
    overflow-y: inherit;
    background-color: transparent;
}
.header-navigation-wrapper .content-wrapper button.header-navigation--toggle {
    display: none;
}
.header-navigation-wrapper .content-wrapper {
    padding: 0;
}
.header-navigation-outter {
    display: flex;
    align-items: center;
}
.header-btn {
    margin: 0 0 0 20px;
    width: max-content;
}
.header-btn a.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background-image: linear-gradient(#5EA9C9, #315977);
    border-radius: 15px;
    padding: 0 40px;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

#landing-page-4567891 .header-navigation-wrapper {
    display: none;
}
/* Header Css End */


/* Footer Css Start */
footer.main-footer {
    margin: 0 20px 20px;
}
.footer-box {
    background: #1E3669 url(https://48132577.fs1.hubspotusercontent-na1.net/hubfs/48132577/raw_assets/public/aeyecrm/images/Mask%20group.png) no-repeat center bottom;
    border-radius: 30px;
    padding: 80px 0;
}
.footer-top-section {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    padding-left: 20px;
    padding-right: 20px;
}
.footer-top-section nav.main-menu ul.menu__wrapper {
    background: transparent;
    padding: 0;
}
.footer-top-section nav.main-menu ul.menu__wrapper li.menu__item {
    padding: 0 0 0 80px;
}
.footer-top-section nav.main-menu ul.menu__wrapper li.menu__item .menu__link {
    color: #FFFFFF;
}
.footer-box .main-footer--bottom .content-wrapper {
    padding: 0;
    max-width: 100%;
    margin: 0;
}
.footer-box .main-footer--bottom {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    width: 100%;
    margin: 40px auto 0;
    padding-left: 20px;
    padding-right: 20px;
}
.footer-box .main-footer--bottom .content-wrapper p {
    font-size: 18px;
    line-height: 20px;
    color: #FFFFFF;
    font-weight: 400;
}
.footer-box .main-footer--bottom .content-wrapper p a {
    color: #5EA9C9;
    margin: 0 5px;
}
.footer-box .social-icons a.social-links__link {
    height: 50px;
    width: 50px;
    background: #5EA9C9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px;
}
.footer-box .social-icons a.social-links__link svg {
    fill: #fff;
}
/* Footer Css End */


.hs-content-id-190489413443 .our-service-first {
    border: none;
    box-shadow: none;
}
.hs-content-id-190489413443 .hero-section-main>.row-fluid-wrapper {
    background: url(https://aeyecrm.com/hubfs/raw_assets/public/aeyecrm/images/hand-touching-digital-screen-with-data-visualization.jpg) no-repeat;
    background-size: 100% 100%;
    position: relative;
}
.hs-content-id-190489413443 .hero-section-main>.row-fluid-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 30px;
    background: rgba(30, 54, 105, 0.8);
    z-index: 0;
}
.hs-content-id-190489413443 .hero-section-main .row-fluid {
    position: relative;
}

.prospect-engage-section h2 {
    color: #315977;
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 70px;
    text-align: center;
}
.prospect-engage-section p {
    color: #868686;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}
.prospect-engage-section .hs-tabs button.hs-tabs__tab {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #ddd !important;
    color: #1e3669 !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    font-family: Poppins, sans-serif;
}
.prospect-engage-section .hs-tabs button.hs-tabs__tab:after {
    display: none;
}
.prospect-engage-section .hs-tabs button.hs-tabs__tab[aria-selected='true'] {
    color: #5ea9c9 !important;
    border-bottom: 2px solid #5ea9c9 !important;
}
.prospect-engage-section .hs-tabs button.hs-tabs__tab:hover {
    color: #5ea9c9 !important;
    border-bottom: 2px solid #5ea9c9 !important;
}
.prospect-engage-section .hs-tabs button.hs-tabs__tab[aria-selected='true']:after {
    border-bottom-color: #5ea9c9 !important;
}
.prospect-engage-section .hs-tabs__content {
    background-color: transparent ! important;
    display: block;
    border: none !important;
    background: #fff;
    border-radius: 15px;
    box-shadow: 5px 5px 50px 0 rgba(0, 0, 0, .1);
    padding: 20px 20px;
}
.prospect-engage-section .hs-tabs__content .hs-tabs__content__panel {
    display: none;
}
.prospect-engage-section .hs-tabs__content .hs-tabs__content__panel.hs-tabs__content__panel--visible {
    display: block;
} 
.prospect-engage-section section.hs-tabs-wrapper {
    margin: 30px 0 0;
}
.card-group-outer .card-innear {
    width: calc(33.33% - 20px);
}
.hs-content-id-190489413443 .our-service-topsection p {
    color: #868686;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    font-style: normal;
}
.hs-content-id-190489413443 .our-service-topsection h3 {
    color: #000;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 40px;
    margin: 10px 0 20px;
}

section.blog-related-posts ul.tabs {
    justify-content: center;
}
section.blog-related-posts ul.tabs {
    justify-content: center;
    border: none;
}
section.blog-related-posts ul.tabs li.tab-link {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    color: #1e3669;
    font-weight: 500;
    font-size: 20px;
}
section.blog-related-posts ul.tabs li.tab-link.active {
    color: #5ea9c9;
    border-bottom: 2px solid #5ea9c9;
    font-weight: 700;
}
section.blog-related-posts .tab-content p {
    color: #868686;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}
section.blog-related-posts .blog-related-posts__list {
    padding: 0 !important;
}
section.blog-related-posts .blog-related-posts__list article.blog-related-posts__post {
    padding: 0;
}
section.blog-related-posts .blog-related-posts__list article.blog-related-posts__post a.blog-related-posts__post-image-wrapper img {
    width: 100%;
}
section.blog-related-posts .blog-related-posts__list article.blog-related-posts__post .blog-related-posts__content h3 {
    font-size: 20px !important;
    color: #121212 !important;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}
section.blog-related-posts .blog-related-posts__list article.blog-related-posts__post .blog-related-posts__content h3 a {
    color: #121212 !important;
    text-decoration: none !important;
}
section.blog-related-posts .tab-content > a {
    align-items: center;
    background-image: linear-gradient(#5ea9c9, #315977);
    border: 1px solid hsla(0, 0%, 100%, .4);
    border-radius: 15px;
    box-shadow: 0 10px 30px 1px rgba(0, 0, 0, .35);
    color: #fff;
    display: inline-flex;
    font-size: 18px;
    font-weight: 600;
    justify-content: center;
    letter-spacing: 2px;
    margin: 30px 0 0;
    min-height: 60px;
    padding: 0 40px;
    text-transform: uppercase;
    text-decoration: none !important;
}
.content-wrapper--vertical-spacing, .dnd-section {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}
section.prospect-engage-section {
    padding: 100px 0 0;
}
section.blog-related-posts h2 {
    color: #315977;
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 70px;
    margin: 0 0 10px !important;
}

.hs-content-id-190489413443 section.card-outer-section {
    padding: 100px 0;
}
.hs-content-id-190489413443 .our-service-first-logo {
    display: none;
}
.hs-content-id-190489413443 .card-group-outer:after {
    bottom: -100px;
    height: 250px;
    right: -100px;
    width: 250px;
}
.hs-content-id-190489413443 section.custom-contact-us-section {
    padding: 0 0 100px;
}
.hs-content-id-190489413443 section.blog-related-posts {
    padding: 100px 0;
}
section.blog-related-posts {
    padding: 100px 0;
}

/*Header section responsive css start*/
.header-btn a.header-btn {margin: 0;}
@media screen and (max-width: 1500px) {
    .header-container {
        padding: 20px 30px;
    }
    header.main-header {
        top: 30px;
    }
}
@media screen and (max-width: 1200px) {
    .main-menu ul.menu__wrapper li.menu__item {
        padding: 20px 20px;
    }
}
@media screen and (max-width: 1024px) {
    .main-menu ul.menu__wrapper {
        padding: 0 20px;
    }
    .header-btn a.header-btn {
        padding: 0 30px;
    }
}
@media screen and (max-width: 980px) {
    .header-btn a.header-btn {
        padding: 0 20px;
        font-size: 16px;
    }
    .header-btn {
        margin: 0 0 0 10px;
    }
    .main-menu ul.menu__wrapper {
        padding: 0 10px;
    }
    .main-menu ul.menu__wrapper li.menu__item {
        padding: 20px 10px;
    }
    .main-menu ul.menu__wrapper li.menu__item .menu__link {
        font-size: 15px;
    }
}
@media screen and (max-width: 768px) {
    header.main-header {
        top: 10px;
    }
    .header-container {
        padding: 20px 20px;
    }
    .header-navigation, a.header-skip {
        display: block;
    }
    .header-navigation-wrapper {
        opacity: 0;
        position: absolute;
        visibility: hidden;
        top: 0;
        display: none;
        padding: 0 20px;
    }
    .header-navigation-wrapper[aria-hidden="false"] {
        opacity: 0;
        position: absolute;
        visibility: visible;
        top: 100%;
        display: block;
    }
    .header-btn a.header-btn {
        font-size: 13px;
        padding: 0 15px;
        letter-spacing: 1px;
        min-height: 50px;
    }
    header.main-header .widget-type-custom-logo img {
        max-width: 140px;
    }
    .header-container .header-column.header-logo {
        order: 1;
    }
    .header-container .header-column.header-navigation {
        order: 3;
    }
    .header-container .header-navigation-outter {
        order: 2;
        padding-right: 20px;
    }
    .header-container .header-column.header-navigation svg path {
        fill: #fff;
    }
    .main-menu ul.menu__wrapper {
        flex-direction: column;
        padding: 10px 10px;
    }
    .main-menu ul.menu__wrapper li.menu__item {
        padding: 10px 10px;
    }
  #landing-page-4567891 .header-column.header-navigation {
      display: none;
  }
  #landing-page-4567891 .header-container .header-navigation-outter {
      padding-right: 0;
  }
 }
/*Header section responsive css End*/


/*Footer section responsive css Start*/
@media screen and (max-width: 1300px) {
    footer.main-footer {
        margin: 0 10px 10px;
    }
}
@media screen and (max-width: 1024px) {
    .footer-box {
        padding: 50px 0;
    }
}
@media screen and (max-width: 980px) {
    .footer-top-section nav.main-menu ul.menu__wrapper li.menu__item {
        padding: 0 0 0 20px;
    }
    .footer-logo img {
        max-width: 200px;
    }
    .footer-top-section {
        padding-bottom: 30px;
    }
    .footer-box .main-footer--bottom {
        margin: 30px auto 0;
    }
}
@media screen and (max-width: 767px) {
    .footer-box {
        background-size: cover;
    }
    .footer-top-section {
        flex-direction: column;
    }
    .footer-top-section .footer-column.footer-logo {
        padding: 0 0 20px;
    }
    .footer-top-section .footer-column.footer-logo img {
        max-width: 190px;
    }
    .footer-top-section .footer-navigation-wrapper {
        width: 100%;
    }
    .footer-top-section .footer-navigation-wrapper ul.menu__wrapper {
        flex-direction: row;
    }
    .footer-box .main-footer--bottom {
        flex-direction: column;
    }
    .footer-box .main-footer--bottom .content-wrapper {
        justify-content: center;
        padding: 0 0 20px;
    }
    .footer-box .main-footer--bottom .content-wrapper p {
        margin: 0 0 15px;
    }
}
/*Footer section responsive css End*/


/*Salesforce Page responsive css Start*/
@media screen and (max-width: 1600px) {
  .hs-content-id-190489413443 .card-group-outer:after {
      bottom: -80px;
      height: 200px;
      right: -30px;
      width: 200px;
  }
  
}
@media screen and (max-width: 1500px) {
    .prospect-engage-section h2 {
        font-size: 50px;
        line-height: 60px;
    }
    section.blog-related-posts h2 {
        font-size: 50px;
        line-height: 60px;
    }
    .hs-content-id-190489413443 .our-service-topsection h3 {
        font-size: 26px;
        line-height: 36px;
    }
  .hs-content-id-190489413443 .card-group-outer:after {
        bottom: -60px;
        height: 150px;
        right: 0;
        width: 150px;
  }
}
@media screen and (max-width: 1300px) {
    section.prospect-engage-section {
        padding: 100px 0 0;
    }
    .main-menu ul.menu__wrapper li.menu__item {
        padding: 15px 15px;
    }
    .main-menu ul.menu__wrapper {
        padding: 0 10px;
    }
}
@media screen and (max-width: 1024px) {
    .main-menu ul.menu__wrapper li.menu__item {
        padding: 15px 10px;
    }
    .prospect-engage-section h2 {
        font-size: 40px;
        line-height: 50px;
    }
    .hs-content-id-190489413443 .our-service-topsection h3 {
        font-size: 22px;
        line-height: 32px;
    }
    section.blog-related-posts h2 {
        font-size: 40px;
        line-height: 50px;
    }
  .card-group-outer {
      flex-wrap: wrap;
      row-gap: 20px;
  }
  .card-group-outer .card-innear {
      width: calc(50% - 10px);
  }
  .hs-content-id-190489413443 .card-group-outer:after {
    display: none;
  }
}
@media screen and (max-width: 980px) {
    .main-menu ul.menu__wrapper li.menu__item .menu__link {
        font-size: 10px;
    }
    section.prospect-engage-section {
        padding: 50px 0 0;
    }
    .prospect-engage-section .hs-tabs button.hs-tabs__tab {
        padding: .6rem 0.8rem;
        font-size: 15px;
    }
    .prospect-engage-section .hs-tabs button.hs-tabs__tab[aria-selected='true'] {
        font-size: 16px !important;
    }
    .card-group-outer .card-innear {
        width: 100%;
    }
    section.blog-related-posts {
      padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
    .main-menu ul.menu__wrapper {
        padding: 10px 10px;
    }
    .main-menu ul.menu__wrapper li.menu__item {
        padding: 10px 10px;
    }
    .main-menu ul.menu__wrapper li.menu__item .menu__link {
        font-size: 15px;
    }
    .prospect-engage-section h2 {
        font-size: 30px;
        line-height: 40px;
        margin: 0 0 15px;
    }
    .prospect-engage-section p {
        font-size: 18px;
        line-height: 28px;
    }
    .hs-content-id-190489413443 .our-service-topsection p {
        font-size: 18px;
        line-height: 28px;
    }
    .hs-content-id-190489413443 .our-service-topsection h3 {
        font-size: 20px;
        line-height: 30px;
    }
    section.blog-related-posts .blog-related-posts__list article.blog-related-posts__post .blog-related-posts__content h3 {
        font-size: 18px !important;
    }
    section.blog-related-posts h2 {
        font-size: 30px;
        line-height: 40px;
    }
    section.blog-related-posts .tab-content p {
        font-size: 18px;
        line-height: 28px;
    }
    section.blog-related-posts .tab-content > a {
        font-size: 16px;
        margin: 20px 0 0;
        min-height: 50px;
        padding: 0 20px;
    }
    .prospect-engage-section .hs-tabs button.hs-tabs__tab {
      font-size: 15px !important;
      padding: .5rem 0.6rem;
    }
    .prospect-engage-section .hs-tabs button.hs-tabs__tab[aria-selected='true'] {
        font-size: 15px !important;
    }
}
/*Salesforce Page responsive css End*/

/* independent day css */
#independenceDayBanner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: flyUp 7s ease-out forwards;
  z-index: 2147483647;
  pointer-events: none;
}

@keyframes flyUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
  21% {
    opacity: 1;
    transform: translate(-50%, -45%); 
  }
  80% {
    opacity: 1;
    transform: translate(-50%, -45%); 
  }
  90% {
    opacity: 0.5;
    transform: translate(-50%, -60%); 
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -200%); 
  }
}

/* 👇 Responsive tweaks for small screens */
@media (max-width: 768px) and (min-width:430px) {
  #independenceDayBanner img {
    max-width: 600px;
  }

  @keyframes flyUp {
    0% {
      opacity: 0;
      transform: translate(-50%, 100%);
    }
    21% {
      opacity: 1;
      transform: translate(-50%, -35%);
    }
    80% {
      opacity: 1;
      transform: translate(-50%, -35%);
    }
    90% {
      opacity: 0.5;
      transform: translate(-50%, -55%);
    }
    100% {
      opacity: 0;
      transform: translate(-50%, -200%);
    }
  }
}
@media (max-width: 768px) {
  #independenceDayBanner img {
    max-width: 325px;
  }} 
/* independent day css */