/* 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, .dnd-section>.row-fluid, .page-center {
  margin: 0 auto;
  padding: 0 1rem;
  width:100%;
}

.content-wrapper.full_width{
  max-width:100%;
   width:100%;
}

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

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

.dnd-section[class*="force-full-width-section"]{
  padding:0;
}

@media(min-width:768px){
  .dnd-section .dnd-column {
    padding: 0 1rem;
  }
}

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

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

/* 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.  */
svg{
  fill:currentColor;
  vertical-align: middle;
}
img{
  max-width:100%;
  width:100%;
}
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 0 1rem;
}

p:last-child {
  margin: 0;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
  transition:all 0.3s ease;
}

/* Headings */

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

/* Lists */

ol, ul {
  margin-bottom: 16px;
  padding-left: 32px;
}

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

.flex_row .col12 {
  width: 100%;
}
.flex_row .col11 {
  width: 91.66%;
}
.flex_row .col10 {
  width: 83.33%;
}
.flex_row .col9 {
  width: 75%;
}
.flex_row .col8 {
  width: 66.66%;
}
.flex_row .col7 {
  width: 58.33%;
}
.flex_row .col6 {
  width: 50%;
}
.flex_row .col5 {
  width: 41.66%;
}
.flex_row .col4 {
  width: 33.33%;
}
.flex_row .col3 {
  width: 25%;
}

.flex_row .col20 {
  width: 20%;
}

.flex_row .col2 {
  width: 16.66%;
}
.flex_row .col1 {
  width: 8.33%;
}

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

.cu_specifier_resources_page .cu_main_resource_wrap {
  display: flex;
  flex-wrap: wrap;
}

.cu_specifier_resources_page .cu_main_resource_wrap .cu_resource_sidebar {
  width: 30%;
  padding-right: 15px;
}

.cu_specifier_resources_page .cu_main_resource_wrap  .cu_resource_content {
  width: 70%;
  padding-left: 15px;
}

@media(max-width:1024px){
  .flex_row .col4, .flex_row .col3 {
    width: 50%;
  }
}

@media(max-width:992px){
  .cu_specifier_resources_page .cu_main_resource_wrap .cu_resource_sidebar {
    width: 100%;
    padding: 0px;
  }

  .cu_specifier_resources_page .cu_main_resource_wrap .cu_resource_content {
    width: 100%;
    padding: 0;
  }
}

@media(max-width:767PX){
  .flex_row .col4, .flex_row .col3,  .flex_row .col6 {
    width: 100%;
  }
  .submitted-message, form {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}


.webpage-2 table {
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ececec;
  width: 100%;
  background: transparent;
}

.webpage-2 table tr:nth-child(2n+1) {
  background-color: #fcfcfc;
}

.webpage-2 table tr td:first-child,
.webpage-2 table tr th:first-child {
  border-left-style: solid;
  border-left-width: 1px;
  border-color: #ececec;
}

.webpage-2 table tr td, 
.webpage-2 table tr th {
  border: none;
  background: 0 0;
  vertical-align: top;
  border-color: #ececec;
  border-left: none;
  border-style: none solid solid none;
  border-top: medium none;
  border-width: medium 1px 1px medium;
  font-size: 14px;
  padding: 10px;
}

.productInnerPage .innerWrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap:40px;
  padding-top: var(--section_spacing);
  padding-bottom: var(--section_spacing);
}
.productInnerPage .innerWrapper .left_wrap,
.productInnerPage .innerWrapper .right_wrap {
  width: 100%;
  padding: 0 15px;
}
.productInnerPage>.content-wrapper .content-wrapper {
  padding-left: 0;
  padding-right: 0;
}
.productInnerPage>.content-wrapper .content-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.tabberWrap .tabberInner .tabberButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.tabberWrap .tabberInner .tabberButton {
  width: calc(50% - 2.5px);
  padding: 12px 20px;
  background-color: #f4f5f6;
  border: 1px solid #c0c6cf;
  border-bottom: 0;
  cursor: pointer;
  box-shadow: inset 0 -5px 5px -3px rgba(0,0,0,.05);
  transition: all 0.3s ease;
}

.tabberWrap .tabberInner .tabberButton.active {
  background: #cf2030;
  box-shadow:none;
  color: #fff;
}

.tabberWrap .tabberInner .tabberContentContainer {
  padding: 20px;
  background: #fff;
  border: 1px solid #c0c6cf;
}

.tabberWrap .tabberInner .tabberContent {
  display: none;
}

.tabberWrap .tabberInner .tabberContent.active {
  display: block;
}

.tabberWrap .tabberInner .tabberButton:hover:not(.active) {
  background-color: #e6e8ec;
}
@media(min-width:992px){
  .productInnerPage .innerWrapper .left_wrap {
    width: 66.67%;
  }
  .productInnerPage .innerWrapper .right_wrap {
    width: 33.33%;
  }
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

button:hover,
button:focus,
.button:hover,
.button:focus {
  text-decoration: none;
}

button:active,
.button:active {
  text-decoration: none;
}

button,
.button,
.hs-button,
.btn__primary,
.btn--primary a,
.btn--custom a,
.btn__secondary,
.btn--secondary a {
  display: inline-block;
  line-height:normal;
}

.btn-wrapper .icon-image,
.btn-wrapper .icon-icon {
  margin-left: 0.75rem;
}

.btn-wrapper .icon-icon svg {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  color: inherit;
  fill: currentcolor;
}

.btn-wrapper .text.text_icon-icon {
  vertical-align: middle;
}

.btn-wrapper .icon-icon {
  display: inline-block;
  vertical-align: middle;
  color: inherit;
}

.slider_btn .splide__arrow {
  position: static;
  transform: none;
}

.slider_btn .splide__arrows {
  display: flex;
  justify-content: end;
  gap: 1rem;
  padding-bottom: 2rem;
}

.slider_btn .splide__arrow {
  font-size: 0.9rem;
  height: auto;
  width: auto;
  padding: 0.625em 2em;
  border-radius: 56px;
  line-height: 1;
  border: 1px solid var(--tertiary_color);
  background-color: transparent;
}

.slider_btn .splide__arrow svg {
  font-size: 1rem;
  height: 1.5em;
  width: 1.5em;
  fill: currentColor;
  color: var(--tertiary_color);
  line-height: 1;;
}

.slider_btn .splide__arrow:hover svg {
  color: var(--quaternary_color);
}

.slider_btn .splide__arrow:hover {
  background-color: var(--tertiary_color);
  border-color: var(--tertiary_color);
}

.slider_btn .splide__pagination__page {
  border:1px solid var(--tertiary_color);
  background-color:transparent;
}

.slider_btn .splide__pagination__page.is-active {
  border-color:var(--tertiary_color);
  background-color:var(--tertiary_color);
}

.slider_btn .splide__pagination__page:hover {
  border-color:var(--tertiary_color);
  background-color:var(--tertiary_color);
}

.skip-content-btn a{
  display: inline-block;
  margin-left: 43px;
  text-align: center;
  transform: translateY(-200%);
  transition: transform 0.3s;
  position: absolute;
  top: 30px;
  left: 90px;
  z-index: 99999;
}

.skip-content-btn > a:focus {
  transform: translateY(0%);
  outline: none;
}
/* Fields */

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

.hs-search-field__bar button svg {
  min-height: 18px;
  min-width: 18px;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}
.form-title:empty {
  display: none;
}

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

form textarea {
  /*   resize: vertical; */
  min-height: 99px;
  resize: none;
}

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;
  margin-top: 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;
}

.widget-type-google_search a.hs-button.primary {
  margin-top: 20px;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

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

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

.hs_error_rollup label {
  color: #ef6b51 !important;
}

::-webkit-input-placeholder{
  color: currentColor;
}

::-moz-placeholder{
  color: currentColor;
}

:-ms-input-placeholder{
  color: currentColor;
}

:-moz-placeholder{
  color: currentColor;
}

::placeholder{
  color: currentColor;
}

@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
  form .hs-input:not([type="checkbox"]):not([type="radio"]) {
    width: 100% !important;
  }
}

.hs_cos_wrapper_type_email_subscriptions,
.hs_cos_wrapper_type_password_prompt,
.hs-search-field__bar,
.widget-type-form,
.hs_cos_wrapper_type_form,
.widget-type-blog_subscribe,
.widget-type-google_search,
.widget-type-password_prompt.custom_error_message,
.widget-type-email_simple_subscription,
.section.post-footer form ,
.hs_cos_wrapper_type_member_login , 
.hs_cos_wrapper_type_member_register,
.hs_cos_wrapper_type_password_reset_request ,
.hs_cos_wrapper_type_password_reset{
  display:block;
  margin-bottom:20px;
}


/* 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: 1px solid;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
  word-break: normal;
}

/* Table Cells */

th,
td {
  border: 1px solid;
  padding: 0.75rem;
  vertical-align: top;
  text-align: left;
}

th {
  font-weight: bold;
}

/* Table Header */

thead th,
thead td {
  border-bottom: 1px solid;
  vertical-align: bottom;
}

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

.cu_header_main_wrapper_outer .cu_header_main_wrapper_outer {
  position: relative;
  z-index: 99;
}

.cu_header_main_wrapper_outer header.cu_main_header {
  font-weight: 400;
  padding-top: 5px;
  padding-bottom: 5px;
  background: linear-gradient(to right, var(--septenary_color) 50%, var(--secondary_color) 50%);
  transition: 0.3s all ease-in-out;
}
.cu_header_main_wrapper_outer {
  min-height: 153px;
}

.cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  position:relative;
}

.cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_logo_wrapper {
  padding: 5px 0;
  padding-right: 10px;
}

.cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_top_menu {
  padding-left: 10px;
  display: flex;
  align-items: center;
}

.cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_top_menu .hs-menu-wrapper>ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_top_menu .hs-menu-wrapper>ul>li a {
  color: var(--septenary_color);
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
}

.cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_top_menu .hs-menu-wrapper>ul>li:not(:last-child) {
  margin-right: 20px;
}

.cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_top_menu .hs-menu-wrapper>ul>li a:hover {
  color: var(--tertiary_color);
}

.cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_logo_wrapper:before {
  background-color: var(--tertiary_color);
  content: "";
  height: 160px;
  position: absolute;
  right: 46.5%;
  top: -32.8px;
  transform: rotate(41deg);
  width: 22px;
  z-index: 5;
}

.cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_logo_wrapper:after {
  background-color: var(--septenary_color);
  content: "";
  height: 160px;
  position: absolute;
  right: 45%;
  top: -52px;
  transform: rotate(41deg);
  width: 85px;
  z-index: 4;
}

.cu_header_main_wrapper_outer .cu_bottom_header {
  position: relative;
  background-color: var(--tertiary_color);
  color: var(--septenary_color);
  z-index: 99;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_menu .hs-menu-wrapper>ul {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_menu .hs-menu-wrapper>ul>li a {
  color: var(--septenary_color);
  font-size: 17px;
  position:relative;
  display: block;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_menu .hs-menu-wrapper>ul>li:not(:last-child) {
  margin-right: 10px;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_menu .hs-menu-wrapper>ul>li>a {
  padding: 10px 18px;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_menu .hs-menu-wrapper>ul>li>a:after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  width: 0;
  height: 5px;
  background-color: var(--septenary_color);
  bottom: 0px;
  transition: 0.3s all ease-in-out;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_menu .hs-menu-wrapper>ul>li:hover>a:after {
  left: 0;
  right: auto;
  width: 100%;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_menu .hs-menu-wrapper>ul>li {
  position: relative;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_menu .hs-menu-wrapper>ul>li ul {
  position: absolute;
  transform: translateY(20px);
  top: 100%;
  left: 0;
  transition: 0.3s all ease-in-out;
  visibility: hidden;
  opacity: 0;
  min-width: 250px;
  width: max-content;
  background-color:var(--secondary_color);
  padding:5px 0;
  pointer-events: none;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_menu .hs-menu-wrapper>ul>li:hover ul {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_menu .hs-menu-wrapper>ul ul li {
  padding: 5px 20px;
  transition: 0.3s all ease-in-out;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_menu .hs-menu-wrapper>ul ul li:hover {
  background-color: var(--tertiary_color);
}


.cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_top_menu .cu_search_icon_wrap {
  color: var(--septenary_color);
  margin-left: 20px;
  cursor: pointer;
  transition: 0.3s ease-in-out all;
}

.cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_top_menu .cu_search_icon_wrap:hover {
  color: var(--tertiary_color);
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  top: 0;
  transition: all .3s ease-in-out;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main .cu_search_inner {
  max-width: 767px;
  width: 100%;
  position: relative;
  z-index: 99;
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--secondary_color);
  z-index: -1;
  opacity: 0;
  transition: 0.3s ease-in-out all;
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main .hs-search-field__bar {
  margin: 0;
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main .hs-search-field__bar .hs-search-field__button {
  max-width: 70px;
  width: 100%;
  border: 0;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main .hs-search-field__bar .hs-search-field__button svg {
  fill: var(--septenary_color);
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main .hs-search-field__bar .hs-search-field__button .hs_cos_wrapper {
  display: inline-flex;
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main form input[type=search] {
  outline: none;
  border: 0;
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main.cu_search_open {

  opacity: 1;
  visibility: visible;
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main.cu_search_open:after {
  opacity: 0.9;
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main .cu_cross_search_btn {
  background-color: var(--tertiary_color);
  position: absolute;
  top: 12px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: var(--septenary_color);
  cursor: pointer;
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main .hs-search-field__bar .hs-search-field__suggestions-container {
  background-color: var(--secondary_color);
  color: var(--septenary_color);
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main .hs-search-sr-message-container {
  color: #000;
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main .hs-search-field--open .hs-search-field__suggestions, .cu_search_wrapper_main  .inpage-editor-active-field .hs-search-field__suggestions {
  background-color: var(--secondary_color);
  border: 0;
  padding: 0;
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main .hs-search-field__suggestions .results-for, .cu_search_wrapper_main .hs-search-field__suggestions a {
  padding: 0;
  font-weight: 700;
  padding: 5px 10px;
}

.cu_header_main_wrapper_outer .cu_search_wrapper_main .hs-search-field__suggestions a:hover {
  background-color: var(--septenary_color);
}

.cu_header_main_wrapper_outer header.cu_bottom_header.cu_header_bottom_fixed{
  position: fixed;
  width: 100%;
  top: 0;
}

.cu_header_main_wrapper_outer.lp_header{
  overflow: hidden;
}



.cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger, header.cu_main_header .cu_inner_wrap .cu_top_menu .cu_search_icon_wrap {
  display: none;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper {
  display: flex;
  align-items: center;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper .hs-search-field__bar {
  margin: 0;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper .cu_desk_search_icon_wrap {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .cu_bottom_menu {
  padding-right: 10px;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper {
  padding-left: 10px;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper form input[type=search] {
  width: 0;
  padding: 0;
  transition: all 0.3s ease-in;
  border: 0;
  height: 40px;
  outline: none;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper.desktop_form_open form input[type=search] {
  width: 250px;
  padding: 11px;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper .search_desktop_input {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out all;
  display: flex;
  align-items: center;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper.desktop_form_open .search_desktop_input {
  opacity: 1;
  visibility: visible;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper form button.hs-search-field__button {
  padding: 0 10px;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper form button.hs-search-field__button svg {
  min-width: 15px;
  min-height: 15px;
  fill:var(--septenary_color);
}

.cu_header_main_wrapper_outer .hs-search-field__suggestions a {
  color: var(--septenary_color);
}

.cu_header_main_wrapper_outer .hs-search-field__suggestions a:hover {
  background-color: var(--tertiary_color) !Important;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper form .hs-search-field__suggestions-container {
  position: absolute;
  top: 100%;
  background-color: var(--secondary_color);
  width: 100%;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper .hs-search-field--open .hs-search-field__suggestions {
  background-color: var(--secondary_color);
  border: 0;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper .cu_desk_search_icon_wrap .fa-xmark {
  display: none;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper.desktop_form_open .fa-magnifying-glass {
  display: none;
}

.cu_header_main_wrapper_outer .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper.desktop_form_open .fa-xmark {
  display: block;
}


/* ////////////////////////// */

.cu_header_main_wrapper_outer.header_v2 .cu_bottom_header .cu_bottom_menu .hs-menu-wrapper>ul>li a {
  padding: 10px;
  font-size: 16px;
  line-height: normal;
}
.cu_header_main_wrapper_outer.header_v2 .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper {
  padding: 5px 0;
}
.cu_header_main_wrapper_outer.header_v2 .cu_bottom_header .cu_bottom_inner_wrap .cu_bottom_menu {
  padding: 5px 0;
}
.cu_header_main_wrapper_outer.header_v2 .cu_bottom_header .cu_bottom_inner_wrap {
  gap: 20px;
}
.cu_header_main_wrapper_outer.header_v2 .cu_bottom_header .cu_bottom_menu .hs-menu-wrapper>ul>li>a:after {
  height: 2px;
}


@media(max-width: 1224px){
  .cu_header_main_wrapper_outer.header_v2 .cu_bottom_header .cu_bottom_menu .hs-menu-wrapper>ul>li a {
    font-size: 14px;
  }
  .cu_header_main_wrapper_outer.header_v2 .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper .cu_desk_search_icon_wrap {
    width: 40px;
  }
  .cu_header_main_wrapper_outer.header_v2 .cu_bottom_header .cu_bottom_inner_wrap .desktop_search_wrapper.desktop_form_open form input[type=search] {
    width: 200px;
  }
}

@media(min-width:1025px){
  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .mobile_top_icons {
    display: none;
  }
  .cu_header_main_wrapper_outer .cu_header_mob_main {
    display: none;
  }

  .cu_header_main_wrapper_outer .cu_search_wrapper_main {
    display: none;
  }

}

@media(max-width:1024px){

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_top_menu.icon_mob {
    display: flex;
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_top_menu {
    display: none;
  }
  
  
  .cu_header_main_wrapper_outer.lp_header header.cu_main_header .cu_inner_wrap .cu_logo_wrapper {
    padding: 10px 0;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }

  .cu_header_main_wrapper_outer {
    min-height: 85px;
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger {
    cursor: pointer;
    display: block;
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .plate {
    height: 70px;
    width: 50px
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .plate svg {
    height: 70px;
    position: absolute;
    width: 50px
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .plate.plate5 .line {
    transition: stroke-dasharray .4s .1s,stroke-dashoffset .4s .1s,transform .4s .1s
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .plate.plate5 .line1 {
    stroke-dasharray: 40 40
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .plate.plate5 .line2,header.cu_main_header .cu_inner_wrap .hameburger .plate.plate5 .line3 {
    stroke-dasharray: 20 39
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .plate.plate5 .line4 {
    stroke-dasharray: 40 40
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .plate.plate5 .x {
    transition: transform .4s 50ms
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .plate.active.plate5 .line {
    transition: stroke-dasharray .4s,stroke-dashoffset .4s,transform .4s
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .plate.active.plate5 .line1 {
    stroke-dasharray: 1 40;
    stroke-dashoffset: -33px
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .plate.active.plate5 .line2,header.cu_main_header .cu_inner_wrap .hameburger .plate.active.plate5 .line3 {
    stroke-dasharray: 5 39;
    stroke-dashoffset: -39px
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .plate.active.plate5 .line4 {
    stroke-dasharray: 1 40;
    stroke-dashoffset: -33px
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .plate.active.plate5 .x {
    transition: transform .4s 50ms
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .line {
    fill: none;
    stroke: #fff;
    stroke-width: 3px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform-origin: 50%;
    transition: stroke-dasharray .5s .2s,stroke-dashoffset .5s .2s,transform .5s .2s
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .x {
    transform: scale(0);
    transition: transform .4s
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .x .line {
    stroke-width: 3px
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .hameburger .active .x {
    transform: scale(1);
    transition: transform .4s .35s
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_top_menu .menu-wrapper {
    display: none;
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_logo_wrapper:before {
    display: none;
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_logo_wrapper:after {
    display: none;
  }

  .cu_header_main_wrapper_outer header.cu_main_header {
    background: var(--secondary_color);
  }

  .cu_header_main_wrapper_outer .cu_bottom_header {
    display: none;
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_top_menu .cu_search_icon_wrap{
    display:block;
  }

  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .mobile_top_icons {
    display: flex;
    align-items: center;
    padding-left: 10px;
  }
  .cu_header_main_wrapper_outer header.cu_main_header .cu_inner_wrap .cu_top_menu .cu_search_icon_wrap{
    margin:0;
  }

  .cu_header_main_wrapper_outer {
    position: relative;
    z-index: 99;
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main {
    position: absolute;
    z-index: 99;
    top: 100%;
    background-color: var(--tertiary_color);
    left: 0;
    right: 0;
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper {
    display: none;
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper>ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper>.hs-menu-wrapper>ul{

    padding: 20px 0;
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper>ul li a {
    color: var(--septenary_color);
    display: block;
    padding: 10px 20px;
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper>ul li {
    position: relative;
    transition: 0.3s background-color ease-in-out;
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper>ul li .cm-child-trigger {
    position: absolute;
    top: 0;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--septenary_color);
    cursor: pointer;
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper>ul ul li a {
    padding-left: 30px;
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper>ul li:hover,
  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper>ul li.cu_active_li{
    background-color: var(--septenary_color);
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper>ul li:hover a,
  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper>ul li.cu_active_li a{
    color: var(--tertiary_color);
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper>ul li:hover .cm-child-trigger,
  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper>ul li.cu_active_li .cm-child-trigger{
    color: var(--tertiary_color);
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper>ul ul li:hover a {
    color: var(--septenary_color);
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper>ul ul li:hover {
    background-color: var(--tertiary_color);
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper ul {
    display: block;
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper ul ul{
    display: none;
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper>ul li .cm-child-trigger.child-open>i {
    transform: rotate(180deg);
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main .cu_mob_menu_wrapper .hs-menu-wrapper>ul li .cm-child-trigger>i {
    transition: 0.3s all ease-in-out;
  }

  .cu_header_main_wrapper_outer .cu_mob_fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition:all 0.3s ease-in-out;
  }

  .header-hide.cu_header_main_wrapper_outer .cu_mob_fixed {
    transform: translateY(-110%);
  }

  .header-show.cu_header_main_wrapper_outer .cu_mob_fixed {
    transform: translateY(0%);
  }

  .mob_menu_open .cu_header_main_wrapper_outer .cu_mob_fixed {
    transform: none;
  }

  .cu_header_main_wrapper_outer .cu_header_mob_main {
    max-height: calc(100vh - 102px);
    overflow-y: auto;
  }


  .cu_header_main_wrapper_outer .cu_header_mob_main::-webkit-scrollbar {
    width: 5px;
  }

  /* Track */
  .cu_header_main_wrapper_outer .cu_header_mob_main::-webkit-scrollbar-track {
    background: var(--septenary_color) ; 
  }

  /* Handle */
  .cu_header_main_wrapper_outer .cu_header_mob_main::-webkit-scrollbar-thumb {
    background:var(--quaternary_color) ; 
  }

  .hs-search-field__suggestions {
    overflow-x: auto;
    position: relative !important;
  }

}
.footer{
  position: relative;
  z-index: 98;
}

.footer .top-footer {
  padding: 60px 0 30px;
  line-height: 1.6;
}
.footer .container-inner {
  display: flex;
  margin:0 -15px;
  flex-wrap: wrap;
}
.footer .col {
  max-width: 100%;
  width: 100%;
  padding: 0 15px;
}
.footer .top-footer .col_3 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.footer .top-footer .col_2 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 30px;
}
.footer .top-footer .col_1 {
  margin-bottom: 30px;
}
.footer .top-footer .logo_wrap {
  margin-bottom: 32px;
}
.footer .top-footer .logo_wrap img {
  display: block;
}
.footer h4,.footer p {
  margin-bottom: 16px;
}
.footer p:last-child {
  margin-bottom: 0;
}
.footer .bottom-footer .bt-ft {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .bottom-footer .col_2 .social-links {
  text-align: right;
  justify-content: end;
}
.footer .bottom-footer p {
  margin-bottom: 0;
  font-size:14px;
}
.footer .menu-footer ul>li {
  margin-bottom: 10px;
}
.footer .menu-footer ul,
.footer .menu-footer a {
  display: block;
}
.footer .bottom-footer a {
  display: block;
  line-height: normal;
}
.footer .menu-footer li:last-child a {
  line-height: 1;
}

.footer .back_to_top {
  transition: all 0.3s ease;
  position: fixed;
  bottom: 80px;
  right: 19px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background: rgba(100, 100, 100, 0.4);
  border-radius: 100%;
  cursor:pointer;
  opacity:1;
  visibility:hidden;
}

.footer.back_active .back_to_top{
  opacity:1;
  visibility:visible;
}

.footer .back_to_top:hover {
  color: #fff;
  background: #000;
}
.footer_v2.back_active .back_to_top {
  opacity: 1;
  visibility: visible;
}

.footer_v2 .back_to_top {
  background: hsla(0, 0%, 39%, .4);
  border-radius: 100%;
  bottom: 80px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  height: 36px;
  line-height: 36px;
  opacity: 1;
  position: fixed;
  right: 19px;
  text-align: center;
  transition: all .3s ease;
  visibility: hidden;
  width: 36px;
}

.footer_v2 .back_to_top:hover {
  background: #000;
  color: #fff;
}
@media(min-width:992px){
  .footer .bottom-footer .col {
    width: 50%;
  }
  .footer .top-footer .col {
    width: 33.33%;
  }
}
@media(max-width:991px){
  .footer .top-footer .col_3 {
    justify-content: center;
  }
  .footer .top-footer {
    text-align: center;
  }
  .footer .top-footer .logo_wrap img {
    margin: 0 auto;
    display: inline-block;
  }
  .footer .bottom-footer {
    text-align: center;
  }
  .footer .bottom-footer .col_2 .social-links {
    justify-content: center;
    margin-top:16px;
  }
}

.footer_v2 {
  padding: 20px 0;
  font-size: 12px;
  background-color: var(--bottom_footer_bg_color);
  color: var(--bottom_footer_font_color);
  position: relative;
  z-index: 9;
}
.footer_v2 .footerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:30px;
}

@media(max-width:767px){
  .footer_v2 .footerInner {
    flex-direction:column;
  }
}
/* 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%;
}
.contact-page-wrap .contact_top_two {
  display: flex ;
  flex-wrap: wrap;
  padding: 80px 0;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 7px 1px #00000045;
  margin: 80px 0;
  background-color: #f4f4f4;
}
.contact-page-wrap .contact_top_two .contact_left {
  width: 50%;
  padding-right: 15px;
}

.contact-page-wrap .contact_top_two .contact_right {
  width: 50%;
  padding-left: 15px;
}

.bottom_map:after,
.bottom_map:before{
  content:'';
  display:table;
  clear:both;
}





/* ////////////////////////////////////////////// */

.landing-page-v2 .wrapper_landing {
  display: flex;
  flex-wrap: wrap;
}

.landing-page-v2 .wrapper_landing .left_section {
  width: 25%;
  padding-right: 15px;
}

.landing-page-v2 .wrapper_landing .right_section {
  width: 75%;
  padding-left: 15px;
}


.landing-page-v2 .wrapper_landing .left_section .hs-menu-wrapper>ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 0;
  list-style: none;
  padding: 0;
}

.landing-page-v2 .wrapper_landing .left_section .hs-menu-wrapper> ul>li {
  padding: 0;
  list-style: none;
  margin: 0;
}

.landing-page-v2 .wrapper_landing .left_section .hs-menu-wrapper ul>li .menu__child-toggle {
  display: none;
}

.landing-page-v2 .wrapper_landing .left_section .hs-menu-wrapper ul>li ul {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  background-color: transparent;
  box-shadow: none;
  padding-left: 20px;
}


.landing-page-v2 .wrapper_landing .left_section .hs-menu-wrapper ul>li *:before {
  display: none;
}

.landing-page-v2 .wrapper_landing .left_section .hs-menu-wrapper ul li a {
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  line-height: 24px;
  display: block;
}

.landing-page-v2 .wrapper_landing .left_section .hs-menu-wrapper ul>li ul li {
  border: none;
  padding: 4px 0;
}


.landing-page-v2 {
  background-color: #f6f6f6;
}

i.icon-salient-right-line:before {
  content: "\e004";
}

.landing-page-v2 .wrapper_landing .form_section .form-title {
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
  color: #444;
}

.landing-page-v2 .wrapper_landing .form_section {}

.landing-page-v2 .wrapper_landing .form_section .form_sec {
  box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
  background-color: #fff;
  padding: 25px 15px 15px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
  top: 0;
}

.landing-page-v2 .wrapper_landing .form_section form {
  color: #676767;
}

.landing-page-v2 .wrapper_landing .form_section form label:not(.hs-error-msg){
  color: #676767;
  font-size: 16px;
}

.landing-page-v2 .wrapper_landing .form_section form input[type=email],
.landing-page-v2 .wrapper_landing .form_section form input[type=file],
.landing-page-v2 .wrapper_landing .form_section form input[type=number],
.landing-page-v2 .wrapper_landing .form_section form input[type=password],
.landing-page-v2 .wrapper_landing .form_section form input[type=search],
.landing-page-v2 .wrapper_landing .form_section form input[type=tel],
.landing-page-v2 .wrapper_landing .form_section form input[type=text],
.landing-page-v2 .wrapper_landing .form_section form select,
.landing-page-v2 .wrapper_landing .form_section form textarea {
  font-size: 14px;
  background-color: transparent;
  border: 1px solid #ccc;
  box-shadow: none;
  -webkit-box-shadow: none;
  font-size: 16px;
  -o-box-shadow: none;
  padding: 16px;
  width: 100%;
  line-height: 24px;
  color: #555;
  transition: all .2s ease;
}

.landing-page-v2 .wrapper_landing .form_section form input[type=email]:focus,
.landing-page-v2 .wrapper_landing .form_section form input[type=file]:focus,
.landing-page-v2 .wrapper_landing .form_section form input[type=number]:focus,
.landing-page-v2 .wrapper_landing .form_section form input[type=password]:focus,
.landing-page-v2 .wrapper_landing .form_section form input[type=search]:focus,
.landing-page-v2 .wrapper_landing .form_section form input[type=tel]:focus,
.landing-page-v2 .wrapper_landing .form_section form input[type=text]:focus,
.landing-page-v2 .wrapper_landing .form_section form select:focus,
.landing-page-v2 .wrapper_landing .form_section form textarea:focus{
  border-color: #999; 
}

.landing-page-v2 .wrapper_landing .form_section .form_sec:hover {
  transform: translateY(-4px);
  box-shadow: 0 17px 25px rgba(0, 0, 0, .13);
}

.hs-search-results__pagination{
  flex-wrap: wrap;
  row-gap: 10px;


}



@media(max-width:1024px){
  .landing-page-v2 .wrapper_landing .right_section {
    padding: 0;
    width: 100%;
  }

  .landing-page-v2 .wrapper_landing .left_section {
    width: 100%;
    padding: 0;
  }

  .landing-page-v2 .wrapper_landing {
    gap: 40px;
  }
}

@media(max-width:992px){

  .content_advanced_button .inner_wrap .content_section {
    padding: 0;
    width: 100%;
  }

  .content_advanced_button .inner_wrap .button_section {
    padding: 0;
    width: 100%;
  }

  .content_advanced_button .btn_sec {
    margin-top: 0;
  }

  .contact-page-wrap .contact_top_two .contact_left,
  .contact-page-wrap .contact_top_two .contact_right{
    width:100%;
    padding:0;
  }

  .contact-page-wrap .contact_top_two {
    row-gap: 30px;
    padding: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .contact-page-wrap .contact_top_two form {
    padding: 0 !important;
  }

}

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

/* Blog post */
.blog_post {
  padding: 100px 0;
}

.blog_post .blog_post_inner {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  padding-bottom:40px;
}

.blog_post .blog_post_inner .left_wrap, .blog_post .blog_post_inner .right_wrap {
  width: 100%;
  padding: 0 15px;
}

.blog_post .blog_post_inner .blog_head {
  margin-bottom: 20px;
}

.blog_post .blog_head .print-button .fa {
  margin: 0 5px 0 0;
  color: #888;
}

.blog_post .post_info h2.post-title {
  margin-bottom: 0;
}
.blog_post .post_info .post-info{
  margin: 15px 0 20px;
  row-gap:12px;
}

.blog_post .post_info .post-info{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.blog_post .post_info .post-info>div{
  display: flex;
  line-height: 16px;
  vertical-align: middle;
  text-transform: capitalize;
  flex-wrap: wrap;
}
.blog_post .post_info .post-info .post_tags {gap: 4px;}
.blog_post p img{
  width:auto; 
}
.blog_post .post_info .post-info>div+div:before{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  content: '\00b7';
  font-size: 13px;
  vertical-align: middle;
  padding: 0 6px;
}

.blog_post .post_info .featured_img img {
  max-width: 500px;
  margin: 0 auto;
  display: block;
  width: 100%;
}

.blog_post .post_info .featured_img {
  margin-bottom: 16px;
}

.blog_post .post_body h3 {
  font-size: 28px;
}

.blog_post .social-shares {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog_post .social-shares a {
  padding: 8px 16px;
  font-size: 13px;
  line-height: 1.25;
  vertical-align: middle;
  border: 1px solid transparent;
  display: inline-block;
  font-weight: bold;
  color:#fff;
}

.blog_post .social-shares a.facebook-share {
  background-color: #4267b2;
  border-color: #4267b2;
}
.blog_post .social-shares a.facebook-share:hover {
  background-color: #375794;
  border-color: #4267b2;
}

.blog_post .social-shares a.twitter-share {
  background-color: #339aed;
  border-color: #339aed;
}
.blog_post .social-shares a.twitter-share:hover {
  background-color: #1488e4;
  border-color: #339aed;
}

.blog_post .social-shares a.linkedin-share {
  background-color: #0a66c2;
  border-color: #0a66c2;
}
.blog_post .social-shares a.linkedin-share:hover {
  background-color: #08529b;
  border-color: #0a66c2;
}

.blog_post .social-shares a.pinterest-share {
  background-color: #c61118;
  border-color: #c61118;
}
.blog_post .social-shares a.pinterest-share:hover {
  background-color: #a00e13;
  border-color: #c61118;
}

.blog_post .post_tags_bt .tags{
  display:inline-block;
}

.blog_post .post_tags_bt .post_tag a:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 3px;
}
.blog_post .post_tags_bt .post_tag a {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.blog_post .post_tags_bt .post_tag {
  display: inline-block;
  vertical-align: middle;
  text-transform:capitalize;
  padding:0 5px;
}
.blog_post .post_pagination {
  border: 1px solid rgba(229, 229, 229, 1);
  border-radius: 8px;
  margin: 20px 0;
  overflow: hidden;
  display: flex;
  font-size: 13px;
}

.blog_post .post_pagination .post-item {
  display: inline-block;
  line-height: 20px;
  vertical-align: middle;
  width: 50%;
}

.blog_post .post_pagination .post-item.next {
  border-left: 1px solid rgba(229, 229, 229, 1);
}
.blog_post .post_pagination .post-item.next a{
  justify-content:flex-end;
}
.blog_post .post_pagination .post-item a{
  color: inherit;
  display: flex;
  padding: 15px 20px;
  vertical-align: middle;
  align-items: center;
}
.blog_post .post_pagination .post-item a:hover{
  background-color:rgb(249 249 249);
}
.blog_post .post_pagination .post-item i{
  color: #888;
  vertical-align: middle;
  font-size: 20px;
}
.blog_post .post_pagination .post-item.prev i{
  margin: 0 10px 0 0;
}
.blog_post .post_pagination .post-item.next i{
  margin: 0 0 0 10px;
}

.blog_post .entry-author .author-heading,
.blog_post .post-related .post-related-heading{
  border-bottom: 2px solid rgba(212, 212, 212, 1);
  font-size: inherit;
  font-weight: bold;
  padding: 10px 0;
  margin: 20px 0;
  text-transform: uppercase;
  line-height: 1.2;
}

.blog_post .entry-author .avatar {
  position: relative;
  display: inline-flex;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.blog_post .entry-author .avatar a {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #fff;
  text-align: center;
  border-radius: 4px;
}

.blog_post .entry-author .avatar a img {
  flex-grow: 1;
  border-radius: 3px;
  vertical-align: middle;
}

.blog_post .entry-author .author-info .authors-name {
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 3px;
}

.blog_post .entry-author .author-info .authors-name a,
.blog_post .entry-author .author-meta a{
  color: inherit;
}

.blog_post .entry-author .author-meta {
  margin-top:1px;
  display:flex;
}
.blog_post .entry-author .author-meta>div {
  margin-top: 10px;
  line-height: 18px;
}
.blog_post .entry-author .author-meta>div+div {
  margin-left:20px;
  padding-left:20px;
  border-left: 1px solid rgba(229, 229, 229, 1);
}
.blog_post .entry-author .author-meta a i{
  font-size:16px;
}
.blog_post .entry-author .author-recent-posts {
  background: rgba(249,249,249, 1);
  border-top: 1px solid rgba(229,229,229, 1);
  border-radius: 0 0 7px 7px;
  padding: 13.333333333333px;
  margin: 20px 0 10px;
  font-size: 13px;
}

.blog_post .entry-author .author-recent-posts .author-post_top {
  display: flex;
  align-items: center;
}

.blog_post .entry-author .author-recent-posts .author-post_top h5 {
  margin: 0;
  line-height: 24px;
  font-size: 20px;
  font-weight: 500;
}

.blog_post .entry-author .author-recent-posts .recent_title {
  flex-grow: 1;
}

.blog_post .author-recent-posts .recent-posts-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog_post .author-recent-posts .recent-posts-list .recent-post-item {
  border-top: 1px solid rgba(229, 229, 229, 1);
  margin-top: 10px;
  padding-top: 10px;
}

.blog_post .author-recent-posts .recent-posts-list .recent-post-item a {
  display: flex;
  justify-content: space-between;
  line-height: 20px;
}

.blog_post .author-recent-posts .recent-posts-list .recent-post-item .post-date {
  color: #888;
  display: inline-block;
  line-height: 20px;
}

.blog_post .author-recent-posts .recent-posts-list .recent-post-item a i {
  color: #888;
  display: inline-block;
  line-height: 20px;
  margin-right: 10px;
}

.blog_post .post-related .related_posts {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.blog_post .related_posts .related_posts_item {
  padding: 15px;
  width: 100%;
  margin-bottom: 20px;
}

.blog_post .related_posts .related_posts_item .featuredImage {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #b6b6b6;
  display: block;
  padding: 0 0 55%;
  margin: 0 0 10px;
}

.blog_post .related_posts .related_posts_item h3 {
  font-size: 16px;
  margin: 0 0 5px;
}

.blog_post .related_posts .related_posts_item a {
  color: inherit;
}

.blog_post .related_posts .related_posts_item .post-tags {
  text-transform:capitalize;
  color: #6c757d;
}

.blog_post .subscribe_author .tooltip {
  background: rgb(16 16 16);
  border-radius: 6px;
  color: #fff;
  padding: 8px;
  font-size: 12px;
  position: absolute;
  bottom: 125%;
  z-index: 1;
  white-space: nowrap;
  left: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

.blog_post .subscribe_author:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.blog_post .subscribe_author{
  position: relative;
  display: inline-block;
}

.blog_post .subscribe_author .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 2%;
  margin-left: 0px;
  border-width: 6px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}
.blog_post .post_info .featured_img {
  position: relative;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

.blog_post .post_info .featured_img:before {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  z-index: 2;
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  text-align: center;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  font-size: 20px;
  line-height: 36px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  margin: -20px 0 0 -20px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.blog_post .post_info .featured_img:hover:before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.blog_listings .post_item .post_tags>div:after {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  content: '\00b7';
  font-size: 13px;
  vertical-align: middle;
  padding: 0 6px;
}

.blog_listings .post_item .post_tags>div {
  display: flex;
}

/* Blog comments */

.blog-comments {
  margin: 0 auto;
  max-width: 680px;
}

.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}

.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
  background-color: transparent;
  text-decoration: underline;
}
/* blog listing */
.blog-index .blog-index_inner{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  padding: 50px 0;
}

.blog-index .blog-index_inner .right_index,
.blog-index .blog-index_inner .left_index {
  width: 100%;
  padding: 0 15px;
}
.blog_listings .social-shares {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog_listings .social-shares a {
  padding: 8px 16px;
  font-size: 13px;
  line-height: 1.25;
  vertical-align: middle;
  border: 1px solid transparent;
  display: inline-block;
  font-weight: bold;
  color:#fff;
}

.blog_listings .social-shares a.facebook-share {
  background-color: #4267b2;
  border-color: #4267b2;
}
.blog_listings .social-shares a.facebook-share:hover {
  background-color: #375794;
  border-color: #4267b2;
}

.blog_listings .social-shares a.twitter-share {
  background-color: #339aed;
  border-color: #339aed;
}
.blog_listings .social-shares a.twitter-share:hover {
  background-color: #1488e4;
  border-color: #339aed;
}

.blog_listings .social-shares a.linkedin-share {
  background-color: #0a66c2;
  border-color: #0a66c2;
}
.blog_listings .social-shares a.linkedin-share:hover {
  background-color: #08529b;
  border-color: #0a66c2;
}

.blog_listings .social-shares a.pinterest-share {
  background-color: #c61118;
  border-color: #c61118;
}
.blog_listings .social-shares a.pinterest-share:hover {
  background-color: #a00e13;
  border-color: #c61118;
}

.blog_listings .post_item:not(:first-child) {
  padding-top: 24px;
  margin-top:24px;
  border-top: 1px solid rgba(229,229,229, 1);
}
.blog_listings .post_item .post_title {
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 10px;
  font-weight: 900;
}

.blog_listings .post_item .post_title a {
  color: inherit;
}

.blog_listings .post_item .post_tags {
  align-items: center;
  margin: 0 0 15px;
  line-height: 16px;
  display: flex;
  text-transform: capitalize;
  flex-wrap: wrap;
}

.blog_listings .post_item .post_tags a {
  color: #888;
  display: block;
  margin-left: 5px;
}

.blog_listings .post_item .post_tags a:first-child {
  margin-left: 0;
}

.blog_listings .post_item .featured_img {
  margin-bottom: 15px;
  line-height: 1;
  display: block;
  position: relative;
}

.blog_listings .post_item .post_content {
  clear: both;
  display: table;
}

.blog_listings .post_item p {
  margin-bottom: 16px;
}

.blog_listings .post_item .hs-button {
  font-weight: bold;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  padding: 8px 16px;
  font-size: 13px;
  line-height: 1.25;
  margin: 10px 0;
}

.blog_listings .post_item .post_tags_bottom {
  margin-top: 10px;
  display:flex;
  align-items:center;
  gap:5px;
  text-transform:capitalize;
}
.blog_listings .post_item .post_tags_bottom a{
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}
.blog_listings .post_item .post_tags_bottom a:before{
  content: "";
  font-family: FontAwesome;
  margin-right: 3px;
}

.pagination-filter .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-filter {
  margin: 12px 0;
  padding: 4px 8px;
}

.pagination-filter .pagination .pagination_link {
  border: 1px solid rgb(229 229 229);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgb(119 119 119);
  font-size: 14px;
  line-height: 20px;
  background-color: #fff;
}

.pagination-filter .pagination .pagination_link:not(:first-child) {
  margin-left: -1px;
}

.pagination-filter .pagination .pagination_link a {
  color: inherit;
  padding: 8px;
}

.pagination-filter .pagination .pagination_link:hover,
.pagination-filter .pagination .pagination_link.link-active {
  background-color: rgb(244 244 244);
}

.pagination-filter .pagination .pagination_link.link-disabled {
  color: rgb(212 212 212);
}
.pagination-filter .pagination .pagination_link.number-link a{
  padding: 8px 12px;
}

.pagination-filter .pagination .pagination_link.link-disabled,
.pagination-filter .pagination .pagination_link.link-active {
  pointer-events: none;
}

.blog_listings .tag_pg {
  display: flex;
  gap: 16px;
}

.blog_listings .tag_pg .avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
}

.blog_listings .tag_pg .tag_pg_title {
  flex-grow: 1;
}

.blog_listings .tag_pg .tag_author {
  display: flex;
  align-items: center;
}

/* blog header */
.blog_header {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  z-index: 9;
  border-bottom: 1px solid rgb(229 229 229);
  margin-bottom:16px;
  padding-bottom:12px
}
.blog_header .home {
  flex: 0 1 auto;
  margin-right: 2px;
}
.blog_header a {
  border: 1px solid transparent;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  display:inline-block;
  line-height: 20px;
  color: rgb(34 34 34);
  background-color: transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.blog_header a:hover{
  color: rgb(34 34 34);
  background-color: rgb(246,248,254);
}
.blog_header a.active{
  color: rgb(78 114 226);
  background-color: rgb(246,248,254);
}
.blog_header .tool_menu{
  display: flex;
  flex-wrap: wrap;
  flex: 1 0 auto;
  align-items: center;
}
.blog_header .toolbar-action{
  display: flex;
  flex-wrap: wrap;
  flex: 0 1 auto;
  align-items: center;
  margin-left: auto;
}
.blog_header .tooltip_bar {
  position: relative;
}
.blog_header .toolbar_search_wrap .cat_open .categories_list {
  opacity: 1;
  visibility: visible;
}
.blog_header .tooltip_bar .tooltip {
  background: rgb(16 16 16);
  border-radius: 8px;
  color: #fff;
  padding: 8px;
  font-size: 12px;
  position: absolute;
  bottom: 100%;
  z-index: 1;
  white-space: nowrap;
  left: 50%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
}

.blog_header .tooltip_bar .tooltip .tippy-svg-arrow {
  width: 16px;
  height: 16px;
  transform: translate(19px, 0);
  position: absolute;
  left: 0;
  bottom: 0;
}
.blog_header .tooltip_bar a:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
.blog_header .tooltip_bar .tooltip .tippy-svg-arrow svg {
  position: absolute;
  top: 16px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  fill: rgb(16 16 1);
  left: 0;
}
.blog_header .toolbar_search_wrap {
  flex: 1 0 auto;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 0;
  visibility: hidden;
  opacity: 0;
  padding-right:8px;
  left: 0;
  z-index: 99;
  background: #fff;
  display: flex; 
}
.blog_header.search_active .toolbar_search_wrap {
  visibility: visible;
  opacity: 1;
}
.blog_header .toolbar_search_wrap .toolbar_search {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}

.blog_header .toolbar_search_wrap .cat_text {
  -webkit-appearance: none;
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  vertical-align: middle;
  line-height: 20px;
  border: 1px solid rgb(163 163 163);
}

.blog_header .toolbar_search_wrap .cat_text:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: rgb(237, 241, 252) 0px 0px 0px 2px, rgb(237, 241, 252) 0px 0px 0px 4px, rgba(0, 0, 0, 0) 0px 0px 0px 0px;
}

.blog_header .toolbar_search_wrap .cat_text:hover {
  background-color: rgb(244, 244, 244);
}

.blog_header .toolbar_search_wrap .categories_list {
  margin-top: 10px;
  padding: 12px 8px;
  max-height: 380px;
  overflow-y: auto;
  width: 400px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow:  rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.04) 0px 2px 4px -2px, rgba(0, 0, 0, 0.08) 0px 5px 10px -1px;
  border: 1px solid rgb(229, 229, 229);
  font-size: 14px;
  line-height: 20px;
  left: 0;
  position: absolute;
  top: 100%;
  visibility: hidden;
  opacity: 0;
}

.blog_header .categories_list .categories_item {
  display: flex;
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-radius: 8px;
  align-items: center;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.blog_header .categories_list .categories_item:hover {
  background-color: rgb(244, 244, 244);
}

.blog_header .categories_list .categories_item a {
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  padding: 12px 8px;
  border: 0;
  color: inherit;
  background: none;
  line-height: 16px;
}

.blog_header .toolbar_search_wrap .categories_wrp {
  position: relative;
}
.blog_header.search_active .home,
.blog_header.search_active .tool_menu,
.blog_header.search_active .toolbar-action {
  visibility: hidden;
}
.blog_header .toolbar_search_wrap .hs-search-field__bar {
  margin: 0;
}

.blog_header .toolbar_search_wrap .hs-search-field__bar>form>.hs-search-field__input {
  padding: 8px;
  border: 0;
  border-radius: 8px;
  outline:0;
  font-size: 14px;
  line-height: 20px;
  background: transparent;
}

.blog_header .toolbar_search_wrap .hs-search-field__bar--button-inline .hs-search-field__button {
  margin-left: 16px;
  outline: 2px solid transparent;
  outline-offset: 2px;
  color: inherit;
  vertical-align: middle;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 8px;
  align-items: center;
  position: relative;
  display: inline-flex;
  justify-content: center;
  padding: 8px 12px;
  font-weight: 700;
  line-height: 20px;
  font-size: 14px;
  vertical-align: middle;
}

.blog_header .toolbar_search_wrap .toolbar_search>.hs_cos_wrapper {
  flex: 1;
}

.blog_header .toolbar_search_wrap .hs-search-field__bar button svg {
  font-size: 14px;
  min-width: initial;
  min-height: initial;
  line-height: 20px;
  width: 14px;
  fill:currentColor;
  display: inline-block;
  height: 14px;
}

.blog_header .toolbar_search_wrap .hs-search-field__bar button:after {
  content: 'Search';
  display: inline-block;
  margin-left: 6px;
  font-size: 14px;
  vertical-align: middle;
  font-weight: 700;
}

.blog_header .toolbar_search_wrap .search-close-btn {
  margin-left: 16px;
}

.blog_header .toolbar_search_wrap .search-close-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  text-align: center;
  border: 1px solid transparent;
  padding: 8px;
  line-height: 20px;
  text-decoration: none;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.blog_header .toolbar_search_wrap .hs-search-field__bar>form>.hs-search-field__input::placeholder {
  color: rgb(212, 212, 212);
}

.blog_header .toolbar_search_wrap .hs-search-field--open .hs-search-field__suggestions {
  margin-top: 10px;
  padding: 0;
  overflow-y: auto;
  max-width: 730px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow:  rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.04) 0px 2px 4px -2px, rgba(0, 0, 0, 0.08) 0px 5px 10px -1px;
  border: 1px solid rgb(229, 229, 229);
  font-size: 14px;
  line-height: 20px;
  max-height: 380px;
}

.blog_header .toolbar_search_wrap .hs-search-field--open .hs-search-field__suggestions .results-for {
  padding: 16px;
  border-radius: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  border-bottom: 1px solid rgb(229, 229, 229);
  margin: 0;
  width: 100%;
}

.blog_header .toolbar_search_wrap .hs-search-field__suggestions li a {
  padding: 16px;
  font-size: 14px;
  line-height: 20px;
  border: 0;
  display: block;
  border-top: 1px solid rgb(229, 229, 229);
  border-radius: 0;
  margin: 0 8px;
}

.blog_header .toolbar_search_wrap .hs-search-field__suggestions li {
  display: block;
  width: 100%;
}

.blog_header .toolbar_search_wrap .hs-search-field__suggestions li:nth-child(2) a {
  border: 0;
}

.blog_header .toolbar_search_wrap .hs-search-field__suggestions li a:hover {
  background-color: rgb(244, 244, 244);
}

.blog_header .toolbar_search_wrap .hs-search-field__suggestions li:last-child {
  padding-bottom: 8px;
}
@media(min-width:992px){
  .blog_listings .post_item .featured_img {
    float: left;
    margin-right: 15px;
    max-width: 250px;
  } 
  .blog-index .blog-index_inner{
    padding: 100px 0;
  }
  .blog-index .blog-index_inner .left_index {
    width:66.67%;
  }
  .blog-index .blog-index_inner .right_index{
    width: 33.33%;
  }
  .blog_post .related_posts .related_posts_item {
    width: 33.33333%;
  }
  .blog_post .blog_post_inner .left_wrap {
    width:66.67%;
  }

  .blog_post .blog_post_inner .right_wrap {
    width: 33.33%;
  }
  .blog_post .post_info h2.post-title {
    font-size: 40px;
    margin-bottom: 0;
  }
}

@media(max-width: 767px) {
  .blog_post .post_info .post-info {
    flex-direction: column;
    align-items: self-start;
    gap: 12px;
  }

  .blog_post .post_info .post-info>div+div:before{
    display: none;
  }

  .blog_post .post_pagination .post-item a {
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .blog_post .entry-author .author-recent-posts .author-post_top {
    flex-direction: column;
    align-items: self-start;
    gap: 12px;
  }

  .blog_post .author-recent-posts .recent-posts-list .recent-post-item a {
    flex-direction: column;
    gap: 10px;
  }

  .blog_post {
    padding: 50px 0;
  }
  .blog_listings .post_item .post_tags {
    align-items: self-start;
    gap: 6px;
  }

  .blog_listings .post_item .post_tags>div:after {
    display: none;
  }

  .blog_listings .post_item .post_tags a {
    margin: 0;
  }

  .blog_listings .post_item .post_tags>div {
    width: 100%;
  }
  .blog_header .tooltip_bar .tooltip {
    right: 0;
    left: auto;
    transform: none;
  }

  .blog_header .tooltip_bar .tooltip .tippy-svg-arrow {
    left: auto;
    right: 10px;
    transform: none !important;
  }
  .blog_header .toolbar_search_wrap .categories_wrp {
    width: 100%;
  }

  .blog_header .toolbar_search_wrap .toolbar_search {
    flex-wrap: wrap;
    gap: 10px;
  }

  .blog_header .toolbar_search_wrap .categories_list {
    width: 100%;
  }

  .blog_header .toolbar_search_wrap .cat_text {
    width: 100%;
  }

  .blog_header .toolbar-action {
    margin-right: auto;
  }

  .blog_header {
    flex-direction: column;
  }
  .blog_post img {
    float: none !important;
  }
}



/* ///////////////////////////////////////////// */


.solution_blog_list_main .solution_blog_wrap {
  padding: 0 0 100px;
}

.solution_blog_list_main .solution_blog_wrap .blog_listing_title>h3 {
  text-align: center;
  margin-bottom: 8px;
  font-size:32px;
}


.solution_blog_list_main .solution_blog_wrap .blog_listing_title>h3:after {
  content: "";
  display: block;
  margin: 10px auto 30px;
  height: 3px;
  width: 150px;
  background: #cf2030;
}

.solution_blog_post {
  padding: 0 0 100px;
}

.solution_blog_post .blog_post_inner {
  padding-top: 80px;
}

.solution_blog_post .left_wrap {
  width: 66.66666667%;
  padding-right: 15px;
}

.solution_blog_post .right_wrap {
  width: 33.33333333%;
  padding-left: 15px;
}

.solution_blog_post .blog_post_inner {
  display: flex;
  flex-wrap: wrap;
}

.solution_blog_post .left_wrap .post-title {
  margin: 0;
  margin-bottom: 8px;
  text-align: center;
}

.solution_blog_post .left_wrap .post-title:after {
  content: "";
  display: block;
  margin: 10px auto 30px;
  height: 3px;
  width: 150px;
  background: #cf2030;
}

.solution_blog_post .blog-comments {
  padding-top: 100px;
}


.solution_blog_post_main .post_body .content-wrapper {
  padding: 0;
}

@media(max-width:992px){
  .solution_blog_post .left_wrap {
    width: 100%;
    padding: 0;
  }

  .solution_blog_post .right_wrap {
    width: 100%;
    padding: 0;
  }

  .solution_blog_post .blog_post_inner{
    row-gap: 40px;
  }

  .solution_blog_post  .blog-comments {
    padding-top: 60px;
  }

  .solution_blog_post {
    padding: 0 0 60px;
  }

}

@media (max-width:767px){
  .blog_post p img {
    width: auto;
    margin-left: 0 !important;
    display: block;
    margin-right: 0 !important;
  } 
}