/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

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


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

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

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

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

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

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

/* Paragraphs */

p {
   margin: 0 0 1.4rem;
}

/* Anchors */

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

/* Headings */

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

/* line height */
h1, .h1 {
   line-height:1.08064516129;
}
h2, .h2 {
   line-height:1.20833333333; 
}
h3, .h3 {
   line-height:1.25; 
}
h4, .h4 {
   line-height:1.3125;
}
h5, .h5 {
   line-height:1.41666666667;
}
h6, .h6 {
   line-height:1.4;
}

p.heading {
  font-weight: 600;
}

/* 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 {
   max-width: 100%;
   height: auto;
   vertical-align: middle;
}

.content-wrapper,
.page-center,
.dnd-section>.row-fluid {
   padding: 0 20px;
   margin: 0 auto;
}
.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: 21px;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

@media (max-width: 767px) {
  .button-wrapper {
    flex-wrap: wrap;
  }
}
/* checkbox css */

.hs-form-booleancheckbox,
.hs-form-radio,
.checkbox-row {
  position: relative;
}
.hs-form-booleancheckbox input:after,
.checkbox-row input:after {
  content: '';
  display: table;
  width: 17px;
  height: 17px;
  position: absolute;
  border-radius: 4px;
  border: 1.5px solid #1D1D21;
  top: 5px;
  margin-right: 10px;
}
.hs-form-booleancheckbox input,
.checkbox-row input {
  margin-left: 2px;
  appearance: none;  
}
.hs-form-booleancheckbox input:checked:after,
.checkbox-row input:checked:after {
  background-image: url('//44103013.fs1.hubspotusercontent-na1.net/hubfs/44103013/raw_assets/public/@marketplace/Hermitcrabs/hummingbird_free/images/check.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    }

.hs-form-booleancheckbox input + span,
.checkbox-row input + span {
  padding-left: 20px;
}
/* end */

/* Radio css */

.hs-form-radio label input:after {
  content: '';
  display: table;
  width: 17px;
  height: 17px;
  position: absolute;
  border-radius: 4px;
  border: 1.5px solid #1D1D21;
  top: 5px;
  margin-right: 10px;
  border-radius: 50px;
}
.hs-form-radio input {
  margin-left: 2px;
  appearance: none; 
}
.hs-form-radio input + span {
  padding-left: 20px;
}
.hs-form-radio input:checked:after {
  background-image: url('//44103013.fs1.hubspotusercontent-na1.net/hubfs/44103013/raw_assets/public/@marketplace/Hermitcrabs/hummingbird_free/images/Ellipse%2049.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    }

/* end */


/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  font-weight: 500;
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 1rem;
  padding: 1rem;
  width: 100%;
  outline: none;  
}

form.hs-form {
  box-shadow: 0px 8px 32px 0px rgba(206, 204, 238, 0.70);
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

.hs-form-required {
  color: #1D1D21;
}

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Search button input field and suggestions */
.body-container-wrapper .hs-search-field__button {
  padding: 15px;
}

.body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
  margin-left: 6px;
  margin-bottom: 0;
}

.body-container-wrapper .hs-search-field__button svg {
  height: 15px;
  fill: #fff;
}

.body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
  padding: 10px;
}

.body-container-wrapper .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

header.header {
  position: relative;
}
header .header-main {
  display: flex;
  justify-content: space-between;
  padding: 25px 0;
  align-items: baseline;
}
.header-main .header-logo {
  max-width: 180px;
}
.header-main .right-sec {
  display: flex;
  align-items: center;
}
.custom-menu-primary .hs-menu-wrapper > ul > li {
  display: inline-block;
  margin-right: 44px;
  position: relative;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a {
  font-weight: 500;
}
.custom-menu-primary .hs-item-has-children li {
  padding: 5px;
  position: relative;
}
.custom-menu-primary .hs-menu-wrapper > ul > li ul li a {
  font-weight: 500;
}

@media (min-width: 768px) {
  .header-main .right-sec .menu-toggle {
    display: none;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li ul {
    display: none;
    min-width: 170px;
    position: absolute;
    border-radius: 6px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li > ul {
    top: 100%;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li ul ul {
    left: 100%;
    top: 0;
  }
  .custom-menu-primary .hs-menu-wrapper > ul li:hover > ul {
    display: block;
  }
  header.header_no_navigation .header-main {
    padding: 28px 0;
  }
}

@media (max-width: 1050px) {
  .custom-menu-primary .hs-menu-wrapper > ul > li {
    margin-right: 35px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .custom-menu-primary .hs-menu-wrapper > ul > li {
    margin-right: 10px;
  }
  .header-main .right-sec .header-btn a {
    padding: 12px 6px;
  }
}

@media (max-width: 767px) {
  .header-main .right-sec .header-nav {
    display: none;
  }
  .header-main .right-sec .header-btn {
    display: none;
  }
  .header-main .right-sec {
    justify-content: end;
  }
  .header-main .right-sec .menu-toggle {
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    box-sizing: content-box;
    cursor: pointer;
    height: 16px;
    position: relative;
    right: 15px;
    top: 0;
    transform-origin: center;
    -webkit-transition: transform 0.6s;
    -moz-transition: transform 0.6s;
    -ms-transition: transform 0.6s;
    -o-transition: transform 0.6s;
    transition: transform 0.6s;
    width: 25px;
  }
  .menu-toggle span {
    background-color: #051b29;
    display: inline-block;
    height: 2px;
    left: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    width: 100%;
  }
  .menu-toggle span:nth-child(2),
  body.open-menu .menu-toggle span {
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-toggle span:last-of-type {
    top: calc(100% - 2px);
  }
  body.open-menu .menu-toggle span:last-of-type {
    opacity: 0;
  }
  body.open-menu .menu-toggle span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  body.open-menu .menu-toggle span:first-of-type {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  body.open-menu .menu-toggle {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .header-nav {
    background: #fff;
    display: none;
    position: absolute;
    right: 0;
    text-align: center;
    top: 100%;
    width: 100%;
    z-index: 99;
  }
  .custom-menu-primary .hs-menu-wrapper > ul {
    padding: 20px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li {
    display: block;
    margin: 10px 0;
  }
  .child-trigger {
    cursor: pointer;
    height: 44px;
    position: absolute;
    right: 0;
    text-align: center;
    top: -5px;
    width: 44px;
  }
  .child-trigger:after,
  .child-trigger:before {
    background-color: #1d1d21;
    content: '';
    height: 2px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
  }
  .child-trigger:after {
    height: 14px;
    width: 2px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul {
    margin-top: 5px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul {
    display: none;
  }
  .child-open > .child-trigger:after {
    visibility: hidden;
  }
  header.header.header_no_navigation .header-main {    
    padding-top: 33px;
  }
  header .header-main {
    align-items: center;
  }
}
.footer-main {
  position: relative;
}

.footer-main .top-sec {
  display: flex;
  justify-content: space-between;
}

.footer-main .bottom-sec .bottom-main {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  align-items: center;
}

.footer-main .copyright-wrap p {
  margin: 0;
  font-size: 12px;
}

.footer-main .social-share ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}

.footer-main .social-share ul li {
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 10px 10px;
  transition: 0.2s;
}

.footer-main .social-share ul li:not(:last-child) {
  margin-right: 15px;
}

.footer-main .bottom-sec hr {
  margin: 0;
}

.footer-main.foote_v1 .top-sec .left-section {
  width: 20%;
}

.footer-main.foote_v1 .top-sec .right-section {
  width: 80%;
  margin-left: 80px;
}

.footer-main.foote_v1 .right-section .hs-menu-wrapper > ul {
  column-count: 3;
}

.footer-main .top-sec {
  padding: 110px 0;
}

.footer-main .right-section .hs-menu-wrapper > ul > li {
  margin-bottom: 10px;
}

.footer-main.foote_v1 .right-section .hs-menu-wrapper > ul > li > a {
  font-weight: 600;
  transition: 0.2s;
}

.footer-main .right-section .hs-menu-wrapper > ul > li > a {
  padding: 8px 0;
}

.footer-main .top-sec .left-section .logo img {
  max-width: 180px;
}

.footer-main .social-share ul li img {
  width: 20px;
  height: 20px;
}

.footer-main.foote_v1 .right-section .hs-menu-wrapper > ul li a,
.footer-main.foote_v2 .copyright-wrap p {
  font-family: var(--secondary_font);
}

.footer-main .right-section .hs-menu-wrapper > ul li a,
.footer-main.foote_v2 .copyright-wrap p {
  line-height: normal;
}

.footer-main.foote_v1 .copyright-wrap p {
  font-family: var(--secondary_font);
  font-weight: 500;
  line-height: normal;
}

.footer-main.foote_v2 .hs-menu-wrapper > ul > li ul li a {
  font-size: 14px;
}

@media (max-width: 991px) {
  .footer-main.foote_v1 .right-section .hs-menu-wrapper > ul {
    column-count: 2;
  }
  .footer-main.foote_v1
  .right-section
  .hs-menu-wrapper
  > ul
  > li:nth-child(4n) {
    margin-bottom: 30px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .footer-main.foote_v1
  .right-section
  .hs-menu-wrapper
  > ul
  > li:nth-child(4n) {
    margin-bottom: 30px;
  }
  .footer-main .bottom-sec .bottom-main {
    flex-direction: column;
  }
  .footer-main.foote_v1 .bottom-sec .bottom-main .copyright-wrap {
    margin-bottom: 15px;
    text-align: center;
  }
  .footer-main .top-sec {
    flex-direction: column;
    text-align: center;
  }
  .footer-main.foote_v1 .top-sec .left-section {
    width: 100%;
    margin-bottom: 40px;
  }
  .footer-main.foote_v1 .top-sec .right-section {
    width: 100%;
    margin: 0;
  }
  .footer-main.foote_v1 .right-section .hs-menu-wrapper > ul {
    column-count: 1;
  }
  .footer-main .top-sec {
    padding: 80px 0;
  }
}
/* Menu and simple menu */

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

.hs-menu-wrapper.flyouts .hs-item-has-children {
	position: relative;
}

/* 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;
  }
}
.dnd-section[class*="-force-full-width-section"]>.row-fluid {
  max-width: 100%;
  padding-left: 0;
  padding-right:0;
  width:100%;
}

.popup-main {
  width: 100%;
  height: 100vh;;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  right:0;
  bottom:0;
  background: rgba(0,0,0,0.75);
  z-index: 999;
  max-height: 100vh;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scroll-width: none;
  padding:100px 0;
}
.popup-main::-webkit-scrollbar {
  display:none;
}

.popup-main .popup-inner .img_wrpr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.popup-main .popup-inner {
  align-items: center;
  display: flex;
  justify-content: center;
  left: 50%;
  max-width: 800px;
  padding: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: 100%;
  overflow-y: scroll;
  height: calc(100vh - 50px);
}

.popup-form.popup-inner::-webkit-scrollbar,
.popup-main .popup-inner::-webkit-scrollbar{
  width: 0;
}

.popup-main .popup-inner .hs_cos_wrapper_type_form,
.popup-main .popup-inner .img_wrpr{
  height: 100%;
}

.popup-close {
  background: rgba(0,0,0,.8);
  border-radius: 1000px;
  color: #fff;
  display: inline-block;
  font-family: Arial,Sans-Serif;
  font-size: 20px;
  height: 30px;
  line-height: 100%;
  padding-top: 4px;
  position: absolute;
  right: 25px;
  text-align: center;
  top: 25px;
  -webkit-transform: translate(50%,-50%);
  transform: translate(50%,-50%);
  transition: all .25s ease;
  width: 30px;
  z-index:11;
}

.popup-close:hover {
  color: #fff;
  transform:translate(50%,-50%) scale(1.1);
}

.popup-video iframe {
  width: 100%;
  height: 80vh;
  max-height:400px;
}

body.open_opup {
  overflow-y: hidden;
}

#home-sub-module {
  position: relative;
  z-index: 10;
}

body.open_opup .page-center {
  position: static;
}

.overflow-hidden {
  overflow:hidden;
}

@media (max-width:767px){

  .popup-main .popup-inner {
    width: 100%;
  }

  .popup-video iframe {
    height: 47vh;
  }
}

@media (max-width:576px){
  .popup-video iframe {
    height: auto;
    width: auto;
    max-width: 100%;
  }
}