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

.dnd-section[class*="force-full-width-section"]>.row-fluid .dnd-column {
  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.  */

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

p:last-child {
  margin: 0;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

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

.hs-search-results__pagination{
  flex-wrap:wrap;
}



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

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

  .btn--custom a, .btn--primary a, .btn__primary, .button, .hs-button, button {
    font-size: 18px !important;
  }
}
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; 
}

.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(-150%);
  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;
}

form{
  font-family: var(--secondary_font);
}

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

header.oc_main_header {
  position: relative;
  z-index: 99;
  font-family: var(--secondary_font);
}

header.oc_main_header .oc_wrapper {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}

header.oc_main_header .oc_wrapper .top_header {
  /*   background-color: #01a3ec; */
  /*   color: #fff; */
}

header.oc_main_header .oc_wrapper .top_header .top_inner {
  display: flex;
  align-items: center;
  padding: 11.5px 0;
  justify-content: space-between;
  gap: 20px;
}

header.oc_main_header .oc_wrapper .top_header .top_inner .back_to_home * {
  /*   color: #fff; */
}

header.oc_main_header .oc_wrapper .top_header .top_inner .back_to_home p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
}

header.oc_main_header .oc_wrapper .top_menu .hs-menu-wrapper>ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 14px;
  flex-direction: row;
  justify-content: center;
}

header.oc_main_header .oc_wrapper .top_menu .hs-menu-wrapper>ul>li>a {
  /*   color: #fff; */
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

header.oc_main_header .oc_wrapper .top_menu .hs-menu-wrapper>ul>li {
  line-height: 1.4;
  font-weight: 500;
}

header.oc_main_header .oc_wrapper .top_menu .hs-menu-wrapper>ul>li>a:before {
  /*   color: #fff; */
  content: "•";
  padding-right: 16px;
  font-size: 20px;
  display: inline-flex;
  vertical-align: bottom;
}

header.oc_main_header .oc_wrapper .bottom_header {
  /*   background-color: #0E2135; */
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25098039215686274);    
}

header.oc_main_header .oc_wrapper .bottom_header .bottom_inner {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  align-items: center;
}

header.oc_main_header .oc_wrapper .bottom_header .bottom_inner .header_logo {
  display: inline-flex;
}

header.oc_main_header .bottom_inner .header_logo a {
  display: inline-flex;
}

header.oc_main_header .bottom_inner .header_logo .hs_cos_wrapper {
  display: inline-flex;
}




@media(min-width:1024px){

  header.oc_main_header .oc_wrapper .bottom_header .bottom_inner .header_logo {
    width: 18%;
  }

  header.oc_main_header .oc_wrapper .bottom_header .bottom_inner .bottom_menu {
    width: 58%;
  }

  header.oc_main_header .oc_wrapper .bottom_header .bottom_inner .header_btn {
    width: 20%;
  }
  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: flex-end;
    margin: 0;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li>a {
    font-size: 18px;
    font-weight: 600;
    /*     color: #fff; */
    padding: 13px 0;
    line-height: 20px;
    transition: 0.3s all ease-in-out;
    margin:0 12px;
    display: flex;
  }


  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li {
    display: flex;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul li {
    position: relative;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li .sub-arrow {
    line-height: 1;
    padding: 10px;
    padding-right: 0;
    margin-top: -10px;
    margin-bottom: -10px;
    display: flex;
    align-items: center;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li .sub-arrow svg {
    height: 1em;
    width: 1em;
    fill: #fff;
    transition: 0.3s all ease-in-out;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li:last-child>a {
    margin-right: 0;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li:first-child>a {
    margin-left: 0;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li>ul {
    position: absolute;
    top: 100%;
    width: max-content;
    /*     background-color: #0e2135; */
    max-width: 276px;
    z-index: 99;
    transform: translateY(15px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s all ease-in-out;
    margin-top: 4px;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li>ul>li>a {
    font-size: 15px;
    font-weight: 500;
    /*     color: #fff; */
    padding: 13px 20px;
    line-height: 20px;
    display: flex;
    align-items: center;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li>ul li {
    position: relative;
    line-height: normal;
    transition: 0.3s all ease-in-out;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li:hover>ul {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li>a:after {
    content: "";
    width: 0;
    left: auto;
    position: absolute;
    top: 100%;
    height: 2px;
    right: 0;
    /*     background-color: #57B4EB; */
    transition: 0.3s all ease-in-out;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li>a:before {
    left: 0;
    right: auto;
    content: "";
    position: absolute;
    top: 100%;
    height: 2px;
    /*     background-color: #57B4EB; */
    transition: 0.3s all ease-in-out;
    width: 0;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li:hover>a:before {
    width: 100%;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li:hover>a:after {
    width: 100%;
  }
  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li .sub-arrow:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 20px;
    bottom: -10px;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li>ul li:hover {
    /*     background-color: #57b4eb; */
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li:hover .sub-arrow svg{
    transform: rotate(180deg);
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li>ul li ul {
    display: flex;
    line-height: normal;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 100%;
    width: max-content;
    max-width:180px;
    top: 0;
    transform: translateX(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s all ease-in-out;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li>ul li ul>li>a {
    align-items: center;
    display: flex;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    padding: 13px 20px;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li>ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li:nth-last-child(-n + 2)>ul li ul {
    right: 100%;
    left: auto;
    transform: translateX(-10px);
  }

  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li:nth-last-child(-n + 2)>ul li:hover>ul {
    transform: translateX(0px);
  }

  header.oc_main_header .oc_wrapper .bottom_header .bottom_inner .header_hamburger,
  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li .sub-arrow_mob{
    display: none;
  }


}

@media(max-width:1150px) and (min-width:1024px){
  header.oc_main_header .bottom_inner .bottom_menu .hs-menu-wrapper>ul>li>a {
    margin: 0px 10px;
    font-size: 16px;
  }
}

@media(max-width:1023px){
  header.oc_main_header .oc_wrapper .top_header .top_inner {
    flex-direction: column;
    padding: 10px 0;
  }

  header.oc_main_header .oc_wrapper .bottom_header .bottom_inner .bottom_menu {
    display: none;
    width:100%;
  }

  header.oc_main_header .oc_wrapper .bottom_header .bottom_inner .header_logo {
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  header.oc_main_header .oc_wrapper .bottom_header .bottom_inner {
    flex-direction: column;
    gap:20px;
  }

  header.oc_main_header .oc_wrapper .bottom_header .bottom_inner .header_btn {
    width: 100%;
  }

  header.oc_main_header .bottom_inner .header_logo img {
    max-width: 70%;
  }

  header.oc_main_header .bottom_inner .header_logo a {
    justify-content: center;
  }

  header.oc_main_header .oc_wrapper .bottom_header .bottom_inner .header_hamburger {
    background-color: #01a3ec;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25em;
    font-size: 22px;
    border-radius: 3px;
    cursor: pointer;
  }

  header.oc_main_header .oc_wrapper .bottom_header .bottom_inner .header_hamburger .cross_hamburger {
    display: none;
  }

  header.oc_main_header .oc_wrapper .bottom_header .bottom_inner .header_hamburger .hamburger_in {
    width: 1em;
    height: 1em;
    fill: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    overflow: auto;
    height: 45vh;
    flex-wrap: nowrap;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
  }
  header.oc_main_header .oc_wrapper .bottom_header .bottom_inner .header_hamburger.open .hamburger_in {
    display: none;
  }

  header.oc_main_header .oc_wrapper .bottom_header .bottom_inner .header_hamburger.open .cross_hamburger {
    display: block;
  }

  header.oc_main_header .oc_wrapper .bottom_header .bottom_inner .header_hamburger .cross_hamburger {
    width: 1em;
    height: 1em;
    fill: #fff;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li {
    line-height: normal;
    position: relative;
    transition: 0.3s all ease-in-out;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li>a {
    /*     color: #fff; */
    font-size: 15px;
    font-weight: 500;
    padding: 13px 20px;
    display: block;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li ul {
    display: none;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li>a .sub-arrow {
    display: none;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li .sub-arrow_mob {
    position: absolute;
    top: 0;
    right: 0;
    width: 49px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li .sub-arrow_mob svg {
    height: 25px;
    width: 25px;
    transition: 0.3s all ease-in-out;
    fill: #fff;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li.hs-item-has-children>a{
    padding-right: 55px;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li:hover>a {
    /*     background-color: #57b4eb; */
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li ul li a {
    display: block;
    padding: 7px 20px;
    padding-right:55px;
    padding-left:30px;
    /*     color: #fff; */
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s all ease-in-out;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li ul li{
    transition: 0.3s all ease-in-out;
    position: relative;

  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li ul li:hover>a {
    /*     background-color: #57b4eb; */
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li ul>li .sub-arrow_mob{
    height:37px;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul::-webkit-scrollbar {
    width: 5px;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul::-webkit-scrollbar-thumb {
    background: var(--anchor_color); 
    border-radius: 10px;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li .sub-arrow_mob.child-open svg {
    transform: rotate(180deg);
  }
}

@media(max-width:500px){
  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li>a{
    padding-left:10px;
  }

  header.oc_main_header .oc_wrapper .bottom_menu .hs-menu-wrapper>ul>li ul li a{
    padding-left:15px;
  }
}
footer.oc_footer_main {
  position: relative;
  z-index: 9;
/*   background-color: #0E2135; */
/*   color: #fff; */
  font-family: var(--secondary_font);
}

footer.oc_footer_main .top_footer {
  padding-top: 50px;
  padding-bottom: 35px;
  display: flex;
  gap: 35px 40px;
}

footer.oc_footer_main .top_footer .social_logo {
  width: 23%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer.oc_footer_main .top_footer .footer_menu {
  width: 22%;
}

footer.oc_footer_main .top_footer .maine_address {
  width: 32%;
}

footer.oc_footer_main .top_footer .new_address {
  width: 32%;
}

footer.oc_footer_main .top_footer>div {
  padding: 10px;
}

footer.oc_footer_main .top_footer .social_logo .footer_logo {
  display: flex;
}

footer.oc_footer_main .top_footer .social_logo .footer_logo * {
  display: block;
}

footer.oc_footer_main .top_footer .social_logo .footer_logo img {
  max-width: 90%;
  margin: 0 auto;
}

footer.oc_footer_main .top_footer .footer_menu .hs-menu-wrapper>ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

footer.oc_footer_main .top_footer .footer_menu .hs-menu-wrapper>ul>li {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer.oc_footer_main .top_footer .footer_menu .hs-menu-wrapper>ul>li>a {
  font-size: 24px;
  font-weight: 700;
/*   color: #fff335; */
  line-height: 1.35em;
}

footer.oc_footer_main .top_footer .footer_menu .hs-menu-wrapper>ul>li>ul li>a {
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 8px;
  padding-bottom: 8px;
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: 500;
/*   color: #fff; */
  line-height: 20px;
}

footer.oc_footer_main .top_footer .footer_menu .hs-menu-wrapper>ul>li>ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

footer.oc_footer_main .bottom_footer {
  padding: 10px 0;
}

footer.oc_footer_main .bottom_footer p {
  font-size: 16px;
  font-weight: 400;
/*   color: #fff; */
  margin-bottom: 22px;
  line-height: 1;
  text-align: right;
}

footer.oc_footer_main .bottom_footer p a {
/*   color: #fff; */
  margin-left: 16px;
}

@media(max-width:1023px){
  footer.oc_footer_main .top_footer {
    flex-direction: column;
    padding: 50px 0;
  }

  footer.oc_footer_main .top_footer>div {
    width: 100% !important; 
    padding: 0;
  }

  footer.oc_footer_main .top_footer .social_logo {
    justify-content: center;
    align-items: center;
  }

  footer.oc_footer_main .bottom_footer p {
    text-align: center;
    margin: 0;
  }

  footer.oc_footer_main .bottom_footer p a {
    display: block;
    margin: 0;
    padding-bottom: 22px;
  }

  footer.oc_footer_main .bottom_footer p a:first-child {
    margin-top: 22px;
  }

  footer.oc_footer_main .bottom_footer {
    padding: 0;
  }
  
  footer.oc_footer_main .top_footer .footer_menu .hs-menu-wrapper>ul>li>a {
    text-align: center;
    transition: 0.3s all;
  }

  footer.oc_footer_main .top_footer .footer_menu .hs-menu-wrapper>ul>li>ul {
    margin-top: 10px;
  }

  footer.oc_footer_main .top_footer .footer_menu .hs-menu-wrapper>ul>li>ul li>a {
    padding: 10px 20px;
  }

  footer.oc_footer_main .top_footer .footer_menu .hs-menu-wrapper>ul>li>ul li:hover>a {
/*     background-color: #ffffff; */
/*     color: #0e2135; */
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}