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



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

body{
	overflow-x:hidden;
}

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
	text-decoration:none;
	transition:all .3s ease-in;
}

/* Headings */

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

/* Lists */

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

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;
}
::placeholder {
    color: #8C8CA1;
}
/* 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;
}
.systems-page form label {
    color: #494754;
}

/* 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: 1rem;
	padding: 10px;
	line-height:1.8;
	width: 100% !important;
	margin-bottom:1rem;
}
form input[type=email]:focus, form input[type=file]:focus, form input[type=number]:focus, form input[type=password]:focus, form input[type=search]:focus, form input[type=tel]:focus, form input[type=text]:focus, form select:focus, form textarea:focus {
	outline: none;
}
form textarea {
	min-height:100px;
	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: 1rem;
	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 .hs-button, form input[type=submit] {
	font-weight: 600;
	line-height: 1;
	font-size: 1rem;
	font-family: Urbanist;
	cursor: pointer;
	display: inline-block;
	margin-top: 20px;
	width: auto;
	border-style:solid;
	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;
}

td, th {
    border: 1px solid;
    padding: 1rem;
}

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

.header-wrapper-inner {
  position: absolute;
  width: 100%;
  z-index: 999;

}
.hs-header{
  padding: 40px 0;
}
.hs-header .page-center {
  padding: 0px 16px;;
  
  max-width: 1312px;
  
}
.hs-header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.hover-card-wrapper .card {
  background-position: top center;
}
.logo-section img.hs-image-widget {
  width: 199px !important;
}
.menu-section {
  padding: 10px;
  border-radius: 30px;
  margin: 0 auto;
}
.menu-section .hs-menu-wrapper>ul li.hs-menu-depth-1 {
  margin: 0;
  position: relative;
}
.menu-section .hs-menu-wrapper>ul li.hs-item-has-children a {
  padding-right: 14px;
}
.menu-section .hs-menu-wrapper>ul li.hs-menu-depth-1>a {
  display: inline-block;
  padding: 8px 22px;
  line-height: 1.5;
  border-radius:30px;
}
.menu-section .hs-menu-wrapper>ul li ul.hs-menu-children-wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  display:none;
  min-width: 200px;

}
.menu-section .hs-menu-wrapper>ul li:hover>ul.hs-menu-children-wrapper {
  display:block;
}
.menu-section .hs-menu-wrapper>ul li ul.hs-menu-children-wrapper li.hs-menu-depth-2>a {
  display: inline-block;
  padding: 16px 8px;
  width:100%;
  border-bottom:2px solid #7087FF;
  line-height: 1.5;
}
body.no-banner .header-wrapper {
  min-height: 140px;
}
.menu-section .hs-menu-wrapper>ul li.hs-item-has-children>a i {
  padding-left: 4px;
}
.menu-section .hs-menu-wrapper>ul li.hs-menu-depth-1>a i.fa-solid.fa-chevron-down {
  font-size: 10px;
  vertical-align: top;
  padding-top: 5px;
}
.pop_up-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}
.top-header-section {
  padding: 10px;
}
.hs-header .globe_class {
  background-image: none;
}
.hs-header
.custom-icon svg path {
  fill:  #fff;
}
.hs-header
.globe-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hs-header
.globe-icon .hs_cos_wrapper_type_icon {
  flex-grow: 1;
}
.hs-header
.globe-icon .hs_cos_wrapper_type_icon svg {
  width: 24px;
  height: 24px;
}
.hs-header
.header__language-switcher-label {
  position: absolute;
}
.hs-header
.lang_list_class {
  top: 20px;
}
.top-header-section {
  padding-bottom: 30px;
}
.top-header-section .page-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-social {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.header-social .social-item a svg {
  width: 20px;
  height: 20px;
}
.header-lang {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hs-header a.hs-button {
  line-height: 1;
  font-size: 16px;
}
.header-search ul.hs-search-field__suggestions {
  position: absolute;
  z-index: 999999;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  list-style: none;
  padding: 20px;
  width: 100%;
  display: none;
}
.hs-search-field.hs-search-field--open ul.hs-search-field__suggestions {
  display: block;
}
.search-suggestion {
  position: relative;
}
.header-search form {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.header-search form button {
  position: absolute;
  right: 0;
}
.header-search form input {
  border-radius: 30px;
  margin: 0;
}
.header-search form button svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}
.button, button {
  border-style: solid;
}
.header-wrapper .alert-section {
  text-align: center;
  padding: 10px 0;
}
.header-wrapper .alert-section p {
  margin: 0;
}
.pop_up-content .pop-up-overlay {
  z-index: 2;
  background: #000;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: .5;
}
body.open-popup .pop_up-content {
  display: block;
}
.pop_up-content {
  display: none;
}
.pop-wrapp {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow-y: auto;
  justify-content: center;
  width: 100%;
}
.pop-wrapp .close-cions {
  position: absolute;
  right: 30px;
  top: 20px;
  cursor: pointer;
}
img {
  max-width: 100%;
}
.pop-wrapp .close-cions svg {
  width: 40px;
  height: 40px;
}
.pop-wrapp-inner {
  width: 100%;
  padding: 40px;
  background: #fff;
}
body.open-popup {
  overflow: hidden;
}
.header-search form button:hover svg {
  fill: #5d74f7;
}
.pop_up-content { 
  overflow-y: auto;
}
.container-fluid.header_dnd_sec.header_top_sec, .container-fluid.header_dnd_sec.header_bottom_sec {
  margin-top: -2px;
}
.doc-cards.cards-wrapper-background .card-inner1-image.left-image img {
  width: 40px;
  filter: invert(1);
}
.menu-section .hs-menu-wrapper>ul li ul.hs-menu-children-wrapper li.hs-menu-depth-2>ul>li>a {
  display: block;
  width: 100%;
  padding: 16px 8px;
}
.landing-banner.contact-wrapper .page-center {
  margin: -150px 0;
}
.menu-section .hs-menu-wrapper>ul li ul.hs-menu-children-wrapper li.hs-menu-depth-2 {
  position: relative;
}
.cards-wrapper-background.doc-cards .card-inner1-image img {
  width: 50px;
  filter: invert(1);
}
.menu-section .hs-menu-wrapper>ul li ul.hs-menu-children-wrapper li.hs-menu-depth-2>ul {
  left: 100%;
  right: auto;
  top: 0;
}
.doc-image.hover-card-wrapper .card .card-bg img {
  height: auto;
}
.doc-image.hover-card-wrapper .card:before {
  z-index: 1;
}
.doc-image.hover-card-wrapper .card  .card-content {
  position: relative;
  z-index: 2;
}
.menu-section .hs-menu-wrapper>ul li ul.hs-menu-children-wrapper li.hs-menu-depth-2>a i {
  transform: rotate(270deg);
}
@media(min-width:1024px){
  .header-social .social-item a svg {
    fill: #fff;
  }
  .mobile-section {
    display: none;
  }
  .hamburger-section {
    display: none;
  }
}
@media(max-width: 1150px){
  .menu-section .hs-menu-wrapper>ul li.hs-menu-depth-1>a{
    padding: 8px 12px; 
  }
}
@media(max-width:1023px){ 
  .mobile-section .buttons-sec {
    padding: 0 30px;
    padding-top: 4rem;
  }
  .mobile-section .buttons-sec a.hs-button {
    width: 100%;
  }
  .mobile-section .buttons-sec a.hs-button {
    margin-bottom: 20px;
  }
  .mobile-sec .hs-menu-wrapper>ul {
    padding: 0 30px;
    padding-top: 9rem;
    display: block;
  }
  .mobile-sec .hs-menu-wrapper ul li ul {
    display: none;
  }
  .mobile-sec .hs-menu-wrapper>ul>li.hs-menu-depth-1+li {
    border-top: 0;
  }
  .mobile-sec .hs-menu-wrapper>ul>li.hs-menu-depth-1 {
    border-bottom: 1px solid #495057;
    border-top: 1px solid #495057;
  }
  .mobile-sec .hs-menu-wrapper>ul>li.hs-menu-depth-1>a {
    padding: 10px;
    padding-right: 60px;
    width: 100%;
    display: block;
  }
  .mobile-sec .hs-menu-wrapper>ul>li.hs-menu-depth-1>ul.hs-menu-children-wrapper {
    display: none;
  }
  .mobile-sec .hs-menu-wrapper>ul>li.hs-menu-depth-1>ul.hs-menu-children-wrapper>li>a,	.mobile-sec .hs-menu-wrapper>ul>li>ul>li>ul>li>a {
    display: block;
    width: 100%;
    padding: 10px;
  }
  .cst-humburger-icon span.trigger {
    border-radius: 1px;
    display: block;
    height: 2px;
    margin: 6px 0 6px 12px;
    opacity: 1;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    width: 28px;
  }
  .hs-header-inner.mobile-open .mobile-section {
    display: block;
  }
  .cst-humburger-icon span.trigger:nth-child(2) {
    margin-left: 20px;
    width: 20px;
  }
  .mobile-section {
    display: none;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
  }
  .cst-humburger-icon {
    cursor: pointer;
  }
  .menu-section {
    display: none;
  }
  .mobile-child-trigger {
    text-align: center;
    z-index: 99;
    justify-content: center;
    padding: 5px;
    position: absolute;
    right: 0;
    top: 0;
    user-select: none;
    width: 56px;
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 48px;
  }
  body.mobile-menu-open .hamburger-section span.trigger {
    display: none;
  }
  body.mobile-menu-open .hamburger-section {
    position: relative;
    z-index: 999;
  }
  .cst-humburger-icon svg {
    width: 40px !important;
    height: 40px !important;
  }
  .cst-humburger-icon svg {
    display: none;
  }
  body.mobile-menu-open 
  .cst-humburger-icon svg {
    display: block;
  }
  .mobile-sec .hs-menu-wrapper ul li {
    position: relative;
  }
  .mobile-child-trigger.child-open:after {
    content: '-';
  }
  .mobile-child-trigger:after {
    content: "+";
    font-size: 30px;
  }
  .top-header-section.mob_top_section {
    display: block;
  }
  .button-section {
    display: none;
  }
  .hamburger-section {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .top-header-section {
    display: none;
  }
  .top-header-section .page-center {
    align-items: flex-start;
  }
  .header-lang {
    width: 100%;
    display: block;
  }
  .mobile-section {
    overflow-y: auto;
  }
}
@media(max-width:767px){
  .top-header-section .page-center {
    flex-direction: column;
    gap: 20px;
  }
}
ul:not([class]) li:not([class]) {
  position: relative;
  margin: 0;
  display: flex;
  margin-bottom:16px;
}
ul:not([class]) {
  padding: 0;
  list-style: none;

}
ul:not([class]) li:not([class]):before {
  background-image:url('https://22592884.fs1.hubspotusercontent-na2.net/hubfs/22592884/raw_assets/public/Themes/Pinnacle/images/pinnacle-images/Group%2041860.png');
    content:'';
    max-width: 24px;
    display: inline-block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 24px;
    width:100%;
    margin-right: 10px;
    }
.menu-section .hs-menu-wrapper>ul li ul.hs-menu-children-wrapper li.hs-menu-depth-2>a {
  display: flex;
  gap: 7px;
  align-items: center;
}
.menu-section .hs-menu-wrapper>ul li ul.hs-menu-children-wrapper li.hs-menu-depth-2>a i{
  font-size: 12px;
  padding-left: 0px;
}
.footer-social-item svg path {
  fill: currentColor;
}

html:not(.hs-inline-edit) .footer_partial_wrapper .container-fluid > .row-fluid-wrapper > .row-fluid > .span12.widget-span {
  min-height: 0;
}

.footer-section .footer_contact_section_item {
  display: flex;
  padding-top: 10px;
  align-items: center;
}

.footer-section .footer_contact_section_item .left-section {
  width: 16px;
  margin-right: 10px;
  line-height: 1;
  height:16px
}

.footer-section .footer_contact_section_item .left-section svg {
  width: 100%;
  height: 100%;
}

.footer-section .footer_contact_section_item .left-section.icon {
  width: auto;
  height: auto;
}

.footer-section .footer_contact_section_item .left-section.icon svg {
  height: 15px;
  width: 15px;
  display: block;
}

.footer .flex_row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
  padding-right: 8px;
}

footer.footer .footer-menu .hs-menu-wrapper>ul {
  display: flex;
  flex-direction: row;
  width: 100%;
  column-gap: 38px;
}

footer.footer .hs-menu-wrapper>ul >li {
  font-size: 18.0px;
}

.footer .footer-section .hs-menu-wrapper>ul >li>a{
  color: inherit; 
  line-height: 1.57;
  font-weight: 700;
}

.footer-form form input[type=email]::placeholder,
.footer-menu .hs-menu-wrapper>ul>li>ul>li>a{
  font-size: 14.0px;
}

.footer-form form input[type=submit] {
  font-weight: 600;
  font-size:16px; 
}

.footer-menu .hs-menu-wrapper>ul>li>ul>li>a{
  white-space: nowrap; 
}

.footer-menu .hs-menu-wrapper>ul>li>ul{
  margin-top: 14px; 
}

.footer-menu .hs-menu-wrapper>ul>li>ul>li{
  margin-bottom: 6px; 
  line-height: 1.45;
}

.footer .hs-menu-wrapper>ul >li:first-child {
  margin-top: 0;
}

.footer .hs-menu-wrapper>ul >li:last-child {
  margin-bottom: 0;
}

/* .footer .col-section {
padding: 0 20px;
} */

.footer-section .footer-content p:last-child {
  margin: 0;
}

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

.footer-social img, .footer-social svg {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
}

.footer-social img {
  height: auto;
}
.footer-heading h5 {
  display: inline-block;
  margin: 0;
  padding-bottom:10px;
  font-weight: 600;
} 

.footer-heading h6{
  margin: 0 0 14px; 
}
footer .footer-content h2{
  margin-bottom: 8px; 
}

.footer .popup-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  transition: visibility 0s linear 0.4s, opacity 0.4s, transform 0.4s;
  visibility: hidden;
  opacity: 0;
}

.footer .popup-wrapper .inner-popup-container {
  position: relative;
  max-width: 600px;
  margin: 10px;
  margin: 0 auto;
}

.footer .popup-wrapper .popup-inner-wrapper {
  box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
  position: relative;
  border-radius: 6px;
  outline: 0;
  padding: 15px;
}

.footer .close-icon {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  border: 0;
  float: right;
  font-weight: 700;
  line-height: 1;
}

.ftr_btn_item.ftr-search-open .popup-wrapper {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.7s, transform 0.7s;
}

.footer .footer-social {
  width: 100%;
}

.footer-form form .hs-button {
  width: auto;
  margin-top: 0px;
  text-transform: uppercase;
}

.footer-form form input[type=email]{
  height: 45px;
}

.footer-content h4:last-child {
  margin: 0;
} 


.back_to_top {
  align-items: center;
  bottom: -100px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  position: fixed;
  right: 70px;
  width: 30px;
  height: 30px;
  z-index: 20;
  visibility: hidden;
  transform: scale(0);
  transition: .4s ease-in-out 0s;
  right: 2rem;
  bottom: 4rem;
}

.back_to_top svg {
  width: 9px;
  height: 9px;
  display: inline-block;
  vertical-align: middle;
}

footer .back_to_top:not(:hover) svg path {
  fill: none;
  stroke: currentColor;
}

.back_to_top.active {
  bottom: 60px;
}

.back_to_top {
  bottom: -100px;
  border-radius: 10rem;
}

.body-wrapper .back_to_top {
  visibility: hidden;
}
.backtotop_show .body-wrapper .back_to_top {
  visibility: visible;
}

.footer-form .form-title:empty {
  display: none;
}

.footer-social-item,
.footer-section .footer_contact_section_item .left-section.icon .f-icon-wrap{
  width: 25px;
  height: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}



.footer-social-item a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.footer-menu .hs-menu-wrapper>ul {
  padding-top: 0;
}

.back_to_top.go-top {
  visibility: visible;
}

.backtotop_show .back_to_top {
  visibility: visible;
  bottom: 5rem;
  transform: scale(1);
}

.blog_feed-wrapper .blog_feed_content {
  padding-bottom: 10px;
}

.popup-type-video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.popup-type-video .close-icon.popup-ftr {
  position: absolute;
  right: 0;
  cursor: pointer;
  z-index: 999999;
}

.popup-type-video .popup-inner-wrapper {
  padding: 0 ;
}

.backtotop_show .back_to_top {
  border-width: 1px;
  border-style: solid;
}

.footer .back_to_top svg path {
  fill: none;
  stroke: inherit;
}

.backtotop_show .back_to_top:hover {
  transition: .1s ease-in 0s;
}

.popup-wrapper.popup-type-video .popup-inner-wrapper {
  line-height: 0;
}

.footer .footer-simple-menu ul {
  display: flex;
  flex-direction: column;
}

.footer .blog_feed-wrapper .blog_feed_item .blog_feed_item_byline span.readmore {
  display: block;
}

.footer .blog_feed_item {
  margin-bottom: 15px;
  padding: 4px 0;
  display: flex;
  align-items: center;
}

.footer .blog_feed_item .blog_feed_featured_image {
  border-radius: 5px;
  content: "";
  display: inline-block;
  min-height: 100px;
  left: 0;
  overflow: hidden;
  position: relative;
  flex: 0 0 25%;
  top: 0;
  transform: none;
  max-width: 25%;
  vertical-align: middle;
  z-index: 10;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  margin-right: 10px;
}

.footer .blog_feed_item_byline span.author {
  margin-right: 15px;
}

.footer .blog_feed_item_title {
  font-weight: 700;
}

.footer-menu .hs-menu-wrapper ul {
  display: block;
  position: relative;
  opacity: 1;
  top: 0;
  left: 0;
}

.footer-menu .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  position: relative;
}

.footer .ftr-search-open .popup-wrapper .inner-popup-container {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.footer .popup-wrapper .inner-popup-container {
  border-radius: 5px;
  margin: 0 auto;
  max-width: 1024px;
  opacity: 0;
  overflow: hidden;
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-transition: .4s ease .2s;
  -o-transition: .4s ease .2s;
  transition: .4s ease .2s;
  width: 100%;
}

.footer .custom-wrapper-popup {
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  overflow-y: auto;
  padding: 50px 20px;
  width: 100%;
}

.footer .custom-embeded-content {
  padding-bottom: 56.25%;
  position: relative;
}

.footer .custom-embeded-content iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  max-width: 100%;
}

.footer .cst-external-video {
  position: relative;
  padding-bottom: 56.7%;
}

.footer .cst-external-video iframe.iframe_video {
  position: absolute;
  height: 100%;
  width: 100%;
}

.popup-type-video .close-icon.popup-ftr {
  margin-right: 15px;
  margin-top: 5px;
}

.footer_contact_section_item .left-section svg, .footer_contact_section_item .left-section img {
  width: 50px;
  fill: currentColor;
}

.footer .footer-simple-menu ul {
  padding: 0;
}

.footer .footer-button.btn_row {
  margin-top: 0;
}

.footer .footer-row.type_blog_feed {
  text-align: left;
}

.footer .al_center {
  text-align: center;
}

.footer .al_right {
  text-align: right;
}

.footer .al_center.type_social_icons .footer-social {
  justify-content: center;
}

.footer .al_right.type_social_icons .footer-social {
  justify-content: flex-end;
}

.footer .al_center .footer-button {
  justify-content: center;
}

.footer .al_left .footer-button {
  justify-content: flex-start;
}

.footer .al_right .footer-button {
  justify-content: flex-end;
}

.footer .custom-embeded-content iframe {
  top: 0;
  left: 0;
}

.footer .right-section.sl-content a {
  color: inherit;
}

.footer .footer-social-item svg {
  display: block;
}

@media(max-width: 991px) and (min-width:768px) {
  footer.footer div.tab_hide {
    display: none;
  }
}

@media(min-width: 992px) {
  footer.footer div.desktop_hide {
    display: none;
  }
}

@media(max-width: 991px) and (min-width:768px) {
  .footer .al_tab_center {
    text-align: center;
  }

  .footer .al_tab_right {
    text-align: right;
  }

  .footer .al_tab_left {
    text-align: left;
  }

  .footer .al_tab_center.type_social_icons .footer-social {
    justify-content: center;
  }

  .footer .al_tab_right.type_social_icons .footer-social {
    justify-content: flex-end;
  }

  .footer .al_tab_left.type_social_icons .footer-social {
    justify-content: flex-start;
  }

  .footer .al_tab_center .footer-button {
    justify-content: center;
  }

  .footer .al_tab_left .footer-button {
    justify-content: flex-start;
  }

  .footer .al_tab_right .footer-button {
    justify-content: flex-end;
  }
}

@media(max-width: 1024px){
  /*   footer.footer .hs-menu-wrapper>ul >li{
  width: 33.333% 
} */
}

@media(max-width: 767px) {
  .footer .flex_row .col-section.col2 {
    width: 100%;
  }

  .footer .flex_row .col-section {
    width: 100%;
  }

  .footer-social-item {
    margin: 0;
  }

  .footer .footer-section-2 .col-section.col2 {
    padding: 0;
  }

  .footer .popup-wrapper.popup-type-pop_form .inner-popup-container {
    padding-right: 10px;
    padding-left: 10px;
  }

  .back_to_top {
    right: 22px;
  }

  .footer .flex_row .col-section:not(:first-child) {
    padding-top: 20px;
  }

  .footer .back_to_top {
    height: 2.6rem;
    width: 2.6rem;
  }

  footer.footer div.mobile_hide {
    display: none;
  }

  .footer .al_mob_center {
    text-align: center;
  }

  .footer .al_mob_right {
    text-align: right;
  }

  .footer .al_mob_left {
    text-align: left;
  }

  .footer .al_mob_center.type_social_icons .footer-social {
    justify-content: center;
  }

  .footer .al_mob_right.type_social_icons .footer-social {
    justify-content: flex-end;
  }

  .footer .al_mob_left.type_social_icons .footer-social {
    justify-content: flex-start;
  }

  .footer .al_mob_center .footer-button {
    justify-content: center;
  }

  .footer .al_mob_left .footer-button {
    justify-content: flex-start;
  }

  .footer .al_mob_right .footer-button {
    justify-content: flex-end;
  }

}

@media(max-width: 379px){
  footer.footer .hs-menu-wrapper>ul >li{
    width: 100%;
  }
}
.page-center,
.content-wrapper,
.dnd-section > .row-fluid{
  margin: 0 auto;
  width: 100%;
}
 

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

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

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

.cards-wrapper-background.header-theme .card-inner1-image img {
  max-width: 100%;
}
.cards-wrapper-background.header-theme .card-inner1-image {
  justify-content: center;
}

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


.body_container_blog_post {
  padding: 100px 0;
}

.post_body .post_content {
  width: 70%;
}

.post_body {
  column-gap: 20px;
  display: flex;
  padding: 0 10px;
}

.post_tags {
    flex-wrap: wrap;
}

.post_body .post_content>img {
  width: 100%;
  min-height: 450px;
  height: 450px;
  object-fit: cover;
  margin-bottom: 40px;
}

.post_body .post_author {
  background-color: #7087FF;
  padding: 29px;
  border-radius: 5px;
  margin-bottom: 50px;
}

.post_body .post_author .author-desc {
  display: flex;
  align-items: center;
  gap: 24px;
}

.post_body .post-author-avatar .hs-author-avatar {
     border: 5px solid #8699fb;
    border-radius: 100%;
    height: 70px;
    width: 70px;
    overflow: hidden;
}
img.blog-header__author-avatar{
	 height: 70px;
    width: 70px;
	    border-radius: 100%;
}
.post_body .post-author-avatar .hs-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post_body .post_author .author-bio {
  color: #fff;
}

.post_body .post_author .author-bio a {
  color: #fff;
}

.post_body .post_author .author-bio h4 {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.4;
}

.post_body .post_author .author-bio p {
  margin: 0;
}

.post_body .post_sidebar {
  width: 30%;
}

.post_body .post_category, .latest_post{
  background: #fff;
  box-shadow: 0 2px 14px #BDBDBC;
  padding: 22px 20px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.post_body .post_category h4, .latest_post h4 {
  margin-bottom: 28px;
}

.post_body .post_content_category ul {
  margin: 0;
}

.post_body .post_content_category ul li {
  margin-bottom: 0 !important;
  padding: 14px 0;
  border-bottom: 0.4px solid #BDBDBD;
}
.post_body .post_content_category ul li:first-child {padding-top: 0;}

.post_body .post_content_category ul li:last-child {
  border: 0;
}
.post_body .latest_post_content {
  display: flex;
  flex-direction: column;
  row-gap: 28px;
}

.post_body .latest-post-item {
  display: flex;
  gap: 14px;
}
.post_body .latest_post_img img {
    width: 100%;
    height: 100%;
}
.post_body .latest_post_img {
    width: 60px;
    overflow: hidden;
    border-radius: 100%;
}
.post_body .latest_post_img img {
  object-fit: cover;
}

.post_body .latest_content h4 {
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.4;
  color: #494754;
}

.post_body .latest_content {
  width: 100%;
}

.post_body .latest_content  p {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}

.post_body .post_sidebar {
  width: 30%;
  height: 100vh;
  min-height: 200px;
  position: sticky;
  top: 0;
}


@media (max-width:767px){
  .post_body {
    flex-direction: column-reverse;
  }

  .post_body .post_content {
    width: 100%;
  }

  .post_body .post_sidebar {
    width: 100%;
  }

  .post_body .post_sidebar {
    height: unset;
    position: static;
  }

}
/* Error pages */

.error-page {
  padding: 10rem 0;
  position: relative;
  text-align: center;
}

.error-page:before {
  color: #F3F6F9;
  content: attr(data-error);
  font-size: 40vw;
  font-weight: bold;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}

/* System pages */


.systems-page--search-results {
  max-width: 100%;
}
.systems-page {
  padding: 50px 20px;
  word-wrap: break-word;
}
.systems-page .header {
  background-color: transparent;
  border-bottom: none;
  padding: 0;
}

.systems-page .success {
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  display: inline-block;
  margin: 1.4rem 0;
  padding: 0.1rem 0.7rem;
  width: 100%;
}

.systems-page form input {
  max-width: 100%;
}

.systems-page form input[type='submit'] {
  margin: 0.7rem 0;
  display: block;
}

/* Search pages */

.hs-search-results__title {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  text-decoration: underline;
}

.hs-search-results__title:hover {
  text-decoration: none;
}

.hs-search-results__description {
  padding-top: 0.7rem;
}

/* Password prompt */

.password-prompt input[type=password] {
  height: auto !important;
  margin-bottom: 1.4rem;
}

.systems-page #hs-login-widget-remember,
.systems-page #hs-login-widget-remember ~ label {
  display: inline-block;
  margin-bottom: 0.175rem;
}

.systems-page #hs_login_reset {
  display: block;
  margin-bottom: 0.7rem;
}

/* Backup unsubscribe */

.backup-unsubscribe #email-prefs-form div {
  padding-bottom: 0 !important;
}

.backup-unsubscribe input[type=email] {
  font-size: 0.875rem !important;
  margin-bottom: 1.4rem;
  padding: 0.7rem !important;
}

/* Subscription preferences */

#email-prefs-form .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#email-prefs-form .item.disabled input:disabled {
  cursor: not-allowed;
}

/* Membership pages */

#hs-membership-form a[class*='show-password'] {
  font-size: 0.75rem;
}

/* Input error messages */

.form-input-validation-message ul.hs-error-msgs {
  padding-left: 0;
  margin: 0;
}

.form-input-validation-message ul.hs-error-msgs li {
  margin: 0;
}
.blog-comments button.comment-reply-to.hs-button.secondary, .h5, h5{
  margin-bottom: 14px;
}

.hs-breadcrumb-menu-wrapper ul.hs-breadcrumb-menu li {
  line-height: 1;
}

.hs-breadcrumb-menu-wrapper .hs-breadcrumb-menu-divider:before{
  content: '/';
}

.hs-breadcrumb-menu-wrapper .hs-breadcrumb-menu-divider:before,
ul li.hs-breadcrumb-menu-item:not(:first-child) {
  padding-left: 5px;
}

.hs-breadcrumb-menu-wrapper .hs-breadcrumb-menu-item.first-crumb:before {
  content: "";
  display: block;
  height: 17px;
  width: 17px;
  background: center center/cover no-repeat;
  margin-right: 10px;
  vertical-align: middle;
}

.hs-breadcrumb-menu-wrapper .hs-breadcrumb-menu li,
.hs-breadcrumb-menu-wrapper .hs-breadcrumb-menu{
  display: flex;
  align-items: center;
}