/* 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));
    }
  
}
.custom-width {
    margin: 0 auto;
    padding: 0 1rem;
}
.bg_image,
.gradient{
    width:100%;
    height:100%;
    top:0;
    left:0;
    right:0;
    pointer-events:none;
}
.dnd-section[class*=force-full-width-section] {
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}
.dnd-section[class*="full-width-section"]>.row-fluid, .dnd-section[class*=force-full-width-section] {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.position-relative{
    position: relative;
}
section .full-width,
.custom-width, .content-wrapper {
    position: relative;
    z-index: 1;
}
.overflow-hidden{
    overflow: hidden;
}
.dnd-section > .row-fluid,
.content-wrapper {
    margin: 0 auto;
    padding: 0 1rem;
}
.dnd-section[class*="full-width-section"]>.row-fluid,
.dnd-section[class*=force-full-width-section] {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.dnd-section[class*=full-width-section]>.row-fluid>.dnd-column {
    padding-left: 0;
    padding-right: 0;
}
.dnd-section .dnd-column {
    padding: 0 1rem;
}
.intro-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.intro-heading .heading:last-child,
.intro-description *:last-child {
    margin-bottom: 0;
}
.intro-description * {
    color: inherit;
}
.intro-section .cta-group {
    margin-top: 0;
}


@media (min-width: 768px) {
    .visible-phone{
	   display: none !important;
    }
}
@media (max-width: 767px) {
    .hidden-phone {
	   display: none !important;
    }
    .dnd-section > .row-fluid,
    .content-wrapper,
    .custom-width {
	   padding: 0 1rem;
    }
    .hidden-phone{
	   display: none; 
    }
}

/* Elements
Base HTML 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.5;
    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.5rem;
}

/* Anchors */

a {
    cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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.5rem;
    padding-left: 0.7rem;
}

/* Horizontal rules */

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

/* Image alt text */

img {
    max-width: 100%;
    vertical-align: middle;
    height: auto;
}
.space-0 {
    padding-bottom: 0px;
}

.space-2 {
    padding-bottom: 2px;
}

.space-4 {
    padding-bottom: 4px;
}

.space-8 {
    padding-bottom: 8px;
}

.space-12 {
    padding-bottom: 12px;
}

.space-16 {
    padding-bottom: 16px;
}

.space-24 {
    padding-bottom: 24px;
}

.space-32 {
    padding-bottom: 32px;
}

.space-40 {
    padding-bottom: 40px;
}

.space-48 {
    padding-bottom: 48px;
}

.space-56 {
    padding-bottom: 56px;
}

.space-64 {
    padding-bottom: 64px;
}

.space-80 {
    padding-bottom: 80px;
}

.space-100 {
    padding-bottom: 100px;
}

.space-120 {
    padding-bottom: 120px;
}
.screen-reader-text,.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header__skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 4px;
    border-color: 1px solid var(--primary-color);
}
.submitted-message {
    text-align: center;
}
.header__skip:focus {
    left: 20px;
    top: 20px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
button,
.button,
.hs-button {
    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;
}
.cta-group {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}
.cta__link {
    position: relative;
    text-align: center;
    white-space: normal;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cta__link svg {
    width: 16px;
    height: 16px;
}
/* Fields */

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

/* Labels */

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

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

/* Help text */

form legend {
    font-size: 0.875rem;
}

/* 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 {
    box-shadow: none;
    outline: none;
    border: 1px solid #D8D8D8;
    display: inline-block;
    font-size: 16px;
    padding: 0.7rem;
    width: 100%;
    font-size: 14px;
    border-radius: 100px;
}

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

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: var(--primary-color);
}

.hs-input.invalid.error {
    border-color: var(--primary-color);
}

.hs-error-msg,
ul.hs-error-msgs.inputs-list label.hs-main-font-element{
    color: var(--primary-color);
    margin-top: 0.35rem;
}
div#hs-search-module .hs-input {
    margin-bottom: 1.5rem;
}
/* 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;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height:  157.143%;
}
.hs-search-module input#hs-search-2010 {
    margin-bottom: 24px;
}
/* Captcha */

.grecaptcha-badge {
    margin: 0 auto;
}


/* 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;
}
table, td, th{
    padding: 10px;
}

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


footer.footer{background-color:var(--Gray-100);color:var(--gray-30);}
.footer .bottom-footer{
    padding: 32px 0 50px;
}
.f-col-menu ul li a {display: inline-flex;align-items: center;}
.footer .bottom-footer .content-wrapper{display:flex;align-items:center;justify-content:space-between;gap:30px;}
.footer .bottom-footer p, .footer .bottom-footer ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 6px;
    padding: 0;
    margin: 0;
}
.footer .ftr-divider{height:1px;width:100%;background-color:var(--gray-90);max-width:1240px !important;display:block;z-index:2;position:relative;}
.footer .bottom-footer{color:var(--gray-50);font-family:Poppins;font-size:14px;font-style:normal;font-weight:500;line-height:1.57;}
.footer .bottom-left p a,.footer .bottom-left ul li a{color:var(--gray-50);font-size:14px;font-style:normal;font-weight:500;line-height:1.57;}
.footer .bottom-left p a:hover,.footer .bottom-left ul li a:hover{color:var(--white);}
.footer .bottom-footer p span, .footer .bottom-footer ul li {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer .bottom-footer p a, .footer .bottom-footer ul li a {
    white-space: nowrap;
}
.footer .top-footer .content-inner{display:grid;grid-template-columns:2fr 1fr 1fr;gap:60px;align-items:start;padding:40px 0 64px;}
.footer .f-col1{width:100%;}
.footer .f-logo-wrap{display:flex;align-items:end;gap:24px;}
.footer .f-logo-wrap p{color:var(--white);font-style:normal;font-weight:400;line-height:1.72;margin-bottom:5px;font-size:10px;}
.footer .f-col2{width:100%;width:100%;display:flex;align-items:center;justify-content:center;}
.footer .f-col-menu .hs-menu-wrapper ul{list-style:none;margin:0;padding:0;display:block;}
.footer .f-col-menu ul li{margin-bottom:16px;}
.footer .f-col-menu ul li a{color:var(--gray-50);font-size:14px;font-style:normal;font-weight:600;line-height:1.57;text-transform:uppercase;}
.footer .f-col3{width:100%;display:flex;align-items:center;justify-content:center;}
.footer .f-col3 ul{display:flex;gap:12px;flex-wrap:wrap;padding:0;margin:0;list-style:none;}
.footer .f-col3 ul li a{width:42px;height:42px;border:1px solid rgba(255, 255, 255, 0.2);border-radius:8px;display:flex;align-items:center;justify-content:center;}
.footer .f-col-menu ul li:last-child{margin-bottom:0;}
.footer .f-col-menu ul li a:hover{color:var(--white);}
.footer .footer-social-wrap .title{color:var(--white);font-size:14px;font-weight:500;line-height:1.57;margin-bottom:8px;}
.footer .footer-social-wrap .social-link{display:flex;gap:12px;}
.footer .footer-social-wrap .social-link .social-link-item{border-radius:8px;border:0.833px solid var(--gray-70);background:var(--Gray-100);display:flex;width:40px;height:40px;padding:8.333px;flex-direction:column;justify-content:center;align-items:center;gap:10px;aspect-ratio:1 / 1;}
.footer .footer-social-wrap .social-link .social-link-item a{display:flex;align-items:center;justify-content:center;}
.footer .footer-social-wrap .social-link .social-link-item:hover{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.footer .f-logo-wrap img{display:block;border-radius:var(--border-radius-8);}
.footer .f-logo-wrap{margin-bottom:16px;}
.footer .logo-bottom-content{font-size:14px;font-style:normal;font-weight:400;line-height:1.57;}
.footer .logo-bottom-content p:last-child{margin-bottom:0;}
.footer-svg,.footer-svg svg{width:100%;max-width:100%;display:block;}
.footer-svg svg{height:auto;}
.footer-svg{margin-bottom:-2px;}
.footer .footer-social-wrap .social-link .social-link-item .icon{display:flex;align-items:center;justify-content:center;}
.footer .ftr-logo{border:0.822px solid var(--gray-90);background:var(--white);display:flex;width:127px;height:76px;padding:16px;flex-direction:column;justify-content:center;align-items:center;gap:8px;aspect-ratio:127 / 76;border-radius:var(--border-radius-8);}


.footer .bottom-left a, .footer .bottom-left ul li a {
    position: relative;
}

.footer .bottom-left a[target="_blank"]:after,
.footer .f-col-menu ul li a[target="_blank"]:after{
    content: '';
    display: block;
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="none" viewBox="0 0 14 14"><path stroke="%23989898" stroke-linecap="round" stroke-linejoin="round" d="M10.5 7.583v3.5a1.167 1.167 0 0 1-1.167 1.167H2.917a1.167 1.167 0 0 1-1.167-1.167V4.667A1.167 1.167 0 0 1 2.917 3.5h3.5M8.75 1.75h3.5v3.5M5.834 8.167 12.25 1.75"/></svg>');
    background-repeat: no-repeat; 
    content: "";
    height: 16px;
    margin: 0 6px;
    position: absolute;
    top: 4px;
    width: 14px;
    position: static;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 6px;
    vertical-align: middle;
    display: inline-block;
}
footer .bottom-left a[target="_blank"]:hover::after,
footer .f-col-menu ul li a[target="_blank"]:hover::after{
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="none" viewBox="0 0 14 14"><path stroke="%23ffffff" stroke-linecap="round" stroke-linejoin="round" d="M10.5 7.583v3.5a1.167 1.167 0 0 1-1.167 1.167H2.917a1.167 1.167 0 0 1-1.167-1.167V4.667A1.167 1.167 0 0 1 2.917 3.5h3.5M8.75 1.75h3.5v3.5M5.834 8.167 12.25 1.75"/></svg>');
}


.ftr-logo-wrap-outer {
    display: flex;
    align-items: end;
    gap: 24px;
    margin-bottom: 0px;
}

.ftr-logo-wrap-outer .logo-title {
    color: var(--white);
    font-style: normal;
    font-weight: 400;
    line-height: 1.72;
    margin-bottom: 5px;
    font-size: 14px;
}

.footer .bottom-left ul li:last-child span.sep {
    display: none;
}

.footer .bottom-left a[target="_blank"]:after {
    margin-left: 3px;
    margin-top: -2px;
}


/* SVG inner line wave animation */
.footer-svg{width:100%;overflow:hidden;line-height:0;}
.ftr-inr-svg svg{width:100%;height:auto;display:block;}

/* sirf white stroke wali lines animate hongi */
.ftr-inr-svg svg path[stroke="white"]{stroke-dasharray:12;stroke-dashoffset:0;animation:lineWave 4s linear infinite;}


/* thoda alag speed ke liye */
.ftr-inr-svg svg path[stroke="white"]:nth-child(odd) {animation-duration: 5s;}

.ftr-inr-svg svg path[stroke="white"]:nth-child(even) {animation-duration: 3.5s;}



@media (max-width: 991px) {
    .ftr-inr-svg.desktop{
	   display:none;
    }
}
.ftr-inr-svg.tab,
.ftr-inr-svg.mobile{
    display:none;
}
@media(max-width:991px) and (min-width:768px){
    .ftr-inr-svg.tab{
	   display:block;
	   margin-bottom: -10px;
    }
}
@media (max-width: 767px) {
    .ftr-inr-svg.mobile{
	   display:block;
	   margin-bottom: -10px;
    } 
}


@keyframes lineWave {
    from {
	   stroke-dashoffset: 0;
    }
    to {
	   stroke-dashoffset: -120;
    }
}
@media (max-width: 991px) {
    .footer .top-footer .content-inner{grid-template-columns:1fr 1fr;gap:40px;}
    .footer .f-col2{justify-content:flex-start;}
    .footer .f-col1{grid-column:span 2;}

    .footer .top-footer .content-inner{padding:60px 0;}

}
@media (max-width: 767px) {
    .footer .f-col-menu .hs-menu-wrapper ul{list-style:none;margin:0;padding:0;display:block;column-count:2;width:100%;}
    .footer .top-footer .content-inner{grid-template-columns:1fr;gap:30px;}
    .footer .f-col1{grid-column:span 1;}
    .footer .f-col3{justify-content:flex-start;}
    .footer .top-footer .content-inner{padding:30px 0;}
    .footer .top-footer .content-inner{display:flex;flex-direction:column;}
    .footer .f-col1{order:2;}
    .f-col-menu{width:100%;}
    .footer .bottom-footer .content-wrapper{flex-direction:column;gap:25px;text-align:left;align-items: flex-start;}
    .footer .bottom-footer {
	   padding-bottom: 60px;
    }
    .footer .top-footer .content-inner {
	   padding-top: 50px;
    }
}

@media(max-width:650px){
    .footer .bottom-footer ul {
	   display: flex;
	   flex-direction: column;
	   gap: 8px;
	   align-items: flex-start;
    }

    .footer .bottom-footer ul span.sep {
	   display: none;
    }
}

@media (max-width: 479px) {
    .footer .footer-social-wrap .social-link {
	   flex-wrap: wrap;
    }
}
/* 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;
  }
}