/* 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;
}
.cst-popup-grp {
  background: rgba(0,0,0,.7);
  bottom: 0;
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 500;
}
.cst-popup-grp .page-center {
  height: 100%;
  width: 90%;
}
.cst-popup-grp .popu-container {
  background: #fff;
  border-radius: 20px;
  height: 90vh;
  left: 0;
  padding: 25px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cst-popup-grp .page-center {
  transform: translateY(-100%);
  transition: transform .5s ease;
  transition-delay: 500s;
}
.cst-popup-grp.show .page-center {
  transform: translateY(0);
}
.cst-popup-grp .close-btn {
  border: 0;
  border-top-right-radius: 20px;
  color: #fff;
  display: block;
  height: 55px;
  line-height: 35px;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 55px;
  z-index: 3;
  background-color: var(--tertiary);
}
.cst-popup-grp .close {
  display: inline-block;
  height: 50px;
  overflow: hidden;
  position: relative;
  width: 25px;
}
.cst-popup-grp .close:after, 
.cst-popup-grp .close:before {
  background: #fff;
  content: "";
  height: 2px;
  left: 0;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 100%;
}
.cst-popup-grp .close:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cst-popup-grp .close.pointy:Before, 
.cst-popup-grp .close.pointy:after {
  width: 100%;
}
.cst-popup-grp .close.black:after, 
.cst-popup-grp .close.black:before {
  height: 4px;
  margin-top: 0;
}
.cst-popup-grp .close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cst-popup-grp .form-wrapper {
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}
.cst-popup-grp .popu-container .content-wrapper, 
.cst-popup-grp .popu-container .form-wrapper {
  padding: 20px 25px 20px 0;
}
.cst-popup-grp .popu-container .content-wrapper{
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}
.cst-popup-grp .popu-container img{
  width: 100%;
}
.cst-popup-grp .video-wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  overflow-y: auto;
}
.cst-popup-grp iframe{
  width: 100%;
  height: 100%;
}
.cst-popup-grp video{
  width: 100%; 
  height: 100%;
}
@media (min-width: 768px){
  .cst-popup-grp .popu-container .form-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/* 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));
  }
  
}
.dnd-section > .row-fluid,
.content-wrapper {
  margin: 0 auto;
  padding: 0 15px;
}
.dnd-section .dnd-column {
  padding: 0;
}
.dnd-section[class*="force-full-width"] > .row-fluid {
  padding: 0;
}
.page-center {
  margin: 0 auto;
  padding: 0 15px;
}
.custom-row{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.custom-col-6,
.custom-col-4,
.custom-col-3,
.custom-col-2,
.custom-col-1,
.custom-col-7,
.custom-col-5,
.custom-col-8,
.custom-col-9,
.custom-col-10,
.custom-col-11,
.custom-col-12{
  position: relative;
  min-height: 1px;
  width: 100%;
  padding: 0 15px;
}
@media(min-width:768px){
  .custom-col-4 {
    width:33.333%
  }
  .custom-col-1 {
    width: 8.333%
  }
  .custom-col-6 {
    width: 50%
  }
  .custom-col-3 {
    width: 25%
  }
  .custom-col-9 {
    width: 75%
  }
  .custom-col-8 {
    width: 66.66666667%
  }
  .custom-col-5 {
    width: 41.66666667%
  }
  .custom-col-7 {
    width: 58.33333333%
  }
  .custom-col-2 {
    width: 16.66666667%
  }
}
.col-lg-4,
.col-lg-6,
.col-lg-3,
.col-lg-2,
.col-lg-1,
.col-lg-7,
.col-lg-5,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12{
  position: relative;
  width: 100%;
  min-height: 1px;
  padding: 0 15px;
}
@media(min-width:992px){
  .col-lg-4{
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-5 {
    width: 41.66666667%
  }
  .col-lg-7 {
    width: 58.33333333%
  }
  .col-lg-2 {
    width: 16.66666667%
  }
}
@media(max-width:767px){
  .col-md-6:not(:last-child) , .custom-col-6:not(:last-child) {
    margin-bottom: 32px;
  }
  .col-lg-6:not(:last-child) {
    margin-bottom: 32px;
  }
}
/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/
body {
  line-height: 1.5;
  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 15px;
}
p:last-child{
  margin-bottom:0;
}
/* Anchors */
a {
  cursor: pointer;
  transition: all .2s ease-in-out;
  text-decoration: none;
}
/* Headings */
h2{
  letter-spacing: -.36px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px;
  line-height:1.25;
}
/* Lists */
ul,
ol {
  margin: 0 0 15px;
}
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%;
  word-break: normal;
  vertical-align: middle;
}
button,
.button,
.hs-button , .button-wrapper .btn-item a {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  line-height:1.5;
}
button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}
/* No button */
.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */
.hs-form-field {
  margin-bottom:24px;
}
/* Labels */
form label {
  display: block;
  font-size:14px;
  margin-bottom:8px;
  font-weight: 500;
}
/* 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:16px;
  padding:13px 16px;
  width: 100%;
  line-height:1.5;
  outline: none;
}
form textarea {
  resize: vertical;
}
form fieldset {
  max-width: 100% !important;
  border: 0;
}
/* 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: #EF6B51;
}
.hs-input.invalid.error {
  border-color: #EF6B51;
}
.hs-error-msg ,  .hs_error_rollup ul li label {
  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;
}
button,input,optgroup,select,textarea{
  line-height:1.5;
}
#hs-search-module .hs-input {
  margin-bottom: 20px;
}
/* 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: 1px solid;
    border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}
/* Table Cells */
th,
td {
  border: 1px solid;
  padding: 18px;
  vertical-align: top;
}
/* 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 Styling */
.cutsom-header-row {
  display: flex;
  align-items: center;
  margin: 0 -15px;
  justify-content: space-between;
}
.cutsom-header-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-header .menu > ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
  align-items: center;
}
.custom-header .menu > ul > li:not(:last-child) {
  margin-right: 20px;
}
.custom-header .menu > ul > li > a,
.custom-header .menu > ul > li > span{
  color: #111928;
  font-weight: 500;
}
.custom-header .menu > ul > li > a:hover, 
.custom-header .menu > ul > li > span:hover,
.custom-header .menu>ul>li:hover>a{
  color: #1C64F2;
}
.custom-header .menu>ul>li>span {
  cursor: pointer;
}
.cutsom-header-login-menu {
  display: flex;
  justify-content: flex-end;
}
.cutsom-header-login-menu .hs-menu-wrapper > ul > li:not(:last-child) {
  margin-right: 15px;
}
.cutsom-header-login-menu .hs-menu-wrapper > ul > li:last-child > a {
  background-color: #1a56db;
  border: 1px solid #1a56db;
  border-radius: 8px;
  color: #fff;
  font-family: Inter,sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  padding: 10px 20px;
  text-decoration: none;
  text-transform: none;
  display: inline-block;
}
.cutsom-header-login-menu .hs-menu-wrapper > ul > li > a {
  color: #111928;
  font-size: 14px;
  font-weight: 500;
}
.cutsom-header-login-menu .hs-menu-wrapper > ul {
  align-items: center;
}
.cutsom-header-login-menu .hs-menu-wrapper > ul > li:last-child > a:hover,
.cutsom-header-login-menu .hs-menu-wrapper > ul > li:last-child > a:focus {
  background-color: hsla(0,0%,100%,0);
  border-color: #1a56db;
  color: #1a56db;
}

/* child-menu-css */
@media(min-width:768px){
  .custom-header .menu>ul ul {
    display: none;
  }
  .custom-header .menu>ul ul {
    width: 100%;
    position: absolute;
    right: 0;
    left: 0;
    top: 100%;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    width: 224px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 0;
  }
  .custom-header .menu>ul>li {
    position: relative;
  }
  .custom-header .menu>ul>li:hover>.menu__submenu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .custom-header .menu>ul ul > li {
    display: block;
    padding: 8px 16px;
    position: relative;
  }
  .header-nav button.menu__child-toggle {
    display: none;
  }
  .custom-header .menu>ul ul > li > span,.custom-header .menu>ul ul > li > a {
    color: gray;
    font-size: 14px;
    line-height: 1.2;
    display: block;
    cursor: pointer;
  }
  .custom-header .menu>ul .menu__submenu--level-2 {
    top: 40px;
  }
  .custom-header .menu>ul ul > li:hover>ul.menu__submenu {
    display: block;
    visibility: visible;
    opacity: 1;
    right: auto;
    left: 100%;
    z-index: 1;
    width: 168px;
    margin-left: 10px;
    top: 0;
  }
  .custom-header .menu>ul ul > li > span:hover,
  .custom-header .menu>ul ul > li > a:hover,
  .custom-header .menu>ul ul > li:hover>a{
    color: #1C64F2;
  }
  .custom-header .menu>ul>li.menu__item--has-submenu:before {
    content: "";
    width: 100%;
    height: 20px;
    position: absolute;
    top: 21px;
    right: 0;
    left: 0;
  }
  .custom-header .menu>ul .menu__submenu--level-2 li.menu__item--has-submenu:after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    height: 36px;
    width: 10px;
  }
  .custom-header .menu>ul>li>a>img.des_arrow {
    padding-right: 0;
    transform: rotate(90deg);
    display: inline;
    position: relative;
    left: 6px;
  }
  .custom-header .menu>ul>li:hover>a>img.des_arrow {
    transform: rotate(270deg);
    transition: all .3s ease-in-out;
  }
  .custom-header .menu>ul ul>li>a img.des_arrow {
    position: absolute;
    top: 20%;
    right: 0;
  }
  .custom-header .menu>ul ul>li>a {
    position: relative;
  }
}

@media(max-width:767px){
  .menu-toggle {
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    box-sizing: content-box;
    cursor: pointer;
    height: 16px;
    left: auto;
    position: absolute;
    top: 26px;
    transform-origin: center;
    -webkit-transition: transform .6s;
    -moz-transition: transform .6s;
    -ms-transition: transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    width: 25px;
    right: 15px;
  }
  .menu-toggle span {
    background-color: #051b29;
    display: inline-block;
    height: 2px;
    left: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .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);
  }
  .header .header-nav {
    background: #fff;
    height: calc(100% - 65px);
    left: 0;
    overflow-y: auto;
    padding: 55px 15px 15px;
    pointer-events: none;
    position: fixed;
    top: 65px;
    transform: translateX(-100%);
    transition: transform .6s;
    width: 100%;
  }
  .open-menu .header .header-nav {
    pointer-events: auto;
    transform: none;
  }
  body.open-menu .menu-toggle span:first-of-type, body.open-menu .menu-toggle span:last-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 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:last-of-type {
    opacity: 0;
  }
  .custom-header .menu>ul>li:not(:last-child) {
    margin: 0;
    display: block;
    margin-bottom: 15px;
  }
  .custom-header .menu>ul {
    display: block;
  }
  .cutsom-header-login-menu{
    display:none;
  }
  .header-nav .menu--mobile .cutsom-header-login-menu {
    display: block;
    margin-top: 50px;
  }
  .cutsom-header-login-menu .hs-menu-wrapper>ul {
    align-items: self-start;
  }
  .cutsom-header-login-menu .hs-menu-wrapper>ul>li:not(:last-child) {
    margin: 0;
    margin-bottom: 15px;
  }
  .custom-header .menu>ul ul {
    display: none;
  }
  .menu__child-toggle {
    width: 100%;
    position: absolute;
    top: 3px;
    height: 20px;
    right: 0;
    left: 0;
    z-index: 1;
  }
  .custom-header .menu>ul>li,.custom-header .menu>ul ul li {
    position: relative;
  }
  .custom-header .menu>ul ul li {
    padding: 10px;
  }
  .custom-header .menu>ul>li>a>img.des_arrow {
    padding-left: 10px;
  }
  .custom-header .menu>ul ul>li>a, .custom-header .menu>ul ul>li>span {
    font-size: 14px;
    line-height: 1.2;
    display: block;
    cursor: pointer;
  }
  .custom-header .menu>ul ul {
    padding-left: 10px;
    margin-top: 10px;
  }
  .custom-header .menu>ul ul>li>a img.des_arrow {
    padding-left: 10px;
  }
  body.open-menu {
    overflow-y: hidden;
  }
}

/* lp-header */
.lp-header-outer .dnd-section {
  padding: 0;
}
.lp-header-outer .dnd-section > div {
  max-width: 100%;
  padding: 0;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.custom-footer .social-links__icon svg {
  height: 18px;
  position: static;
  transform: none;
}
.custom-footer .social-links .social-links__icon {
  margin: 0;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
}
.custom-footer .social-links a {
  display: flex;
}
.custom-footer .social-links .social-links__link:not(:last-child) {
  margin-right: 20px;
}
.custom-footer .menu > ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.custom-footer .menu > ul > li {
  width: 20%;
  padding: 0;
  padding: 0 15px;
}
.custom-footer .menu > ul > li > ul {
  position: static;
  display: block;
  background-color: transparent;
  box-shadow: none;
  width: 100%;
  transform: none;
}
.custom-footer .menu > ul > li > ul > li {
  border: 0;
}
.custom-footer .menu > ul > li > ul > li:before{
  display: none !important;
}
.custom-footer .menu > ul > li > ul > li > a,
.custom-footer .menu > ul > li > ul > li > span {
  background: transparent;
  padding: 0;
  line-height: 1.5;
  font-size: 16px;
  color: #6B7280;
}
.custom-footer .menu > ul > li > ul > li > a:before,
.custom-footer .menu > ul > li > ul > li > span:before {
  display: none;
}
.custom-footer .menu > ul > li > ul > li:not(:last-child) {
  margin-bottom: 16px;
}
.custom-footer .menu > ul > li > a {
  font-size: 14px;
  font-weight: 600;
  color: #111928;
  margin-bottom: 16px;
  display: block;
  line-height: 1.5;
}
.custom-footer .menu > ul > li button {
  display: none;
}
.custom-footer .menu > ul > li > ul > li > a:hover,
.custom-footer .menu > ul > li > ul > li > span:hover {
  background-color: transparent;
}
@media(max-width:767px){
  .custom-footer .menu>ul>li {
    margin: 0;
  }
  .custom-footer .menu>ul>li {
    border: 0;
    width: 50%;
    margin-bottom: 20px;
  }
  .custom-footer .menu>ul>li>a {
    padding: 0;
  }
  .custom-footer .menu>ul>li>ul>li {
    background-color: transparent;
  }
}
@media(max-width:479px){
  .custom-footer .menu>ul>li {
    width: 100%;
    margin-bottom: 0;
  }
  .custom-footer .menu>ul>li:not(:last-child) {
    margin-bottom: 30px;
  }
}
/* footer-css */
.lp-footer-outer .dnd-section {
  padding: 0;
}
.lp-footer-outer .dnd-section > div {
  max-width: 100%;
  padding: 0;
}
/* 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%;
}
/* rg-css */
.hc-hero-01.terms-banner .heading {
  margin-bottom: 0;
}
.hc-hero-01.terms-banner h2 {
  line-height: 150%; /* 54px */
}
.hc-hero-01.terms-banner .button-wrapper {
  margin-top: 24px;
}
@media(max-width:479px){
  .hc-hero-01.terms-banner .button-wrapper a {
    width: 100%;
  }
  .hc-hero-01.terms-banner .button-wrapper {
    display: block;
  }
}
.terms-page > .row-fluid-wrapper {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding-bottom: 96px;
}
@media(max-width:767px){
  .terms-page > .row-fluid-wrapper {
    padding-bottom:40px;
  }
}
.terms-page h5 {
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.24px;
  margin-bottom: 24px;
}
.terms-page blockquote {
  border: none;
  display: flex;
  padding: 24px;
  align-items: flex-start;
  margin: 0;
  border-radius: 8px;
  background: var(--gray-50, #F9FAFB);
  margin-bottom: 16px;
}
.terms-page h6 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%; /* 30px */
}
.terms-page ul {
  list-style: lower-alpha;
}
.terms-page ul li {
  margin-bottom: 10px;
}
.terms-page ul li strong {
  color: var(--secondary);
}
.hc-hero-01.terms-banner .button-wrapper svg {
  margin-left: 0;
}
/* 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;
  }
}