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

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}
.dnd-section > .row-fluid,
.content-wrapper {
  margin: 0 auto;
  width:100%;
  max-width:1220;
  margin: 0 auto;
}
.content-wrapper{
  padding: 0 20px;
}
@media(min-width:1600px){
.container-fluid.body-container.body-container--qa-test.seamless_lp_v4 .content-wrapper {
    max-width: 1500px;
}
}
@media(min-width:1400px){
.seamless_lp_v2 .content-wrapper, .SFF_lp .content-wrapper {
    max-width: 1360px;
}
}
@media(min-width:1700px){
.SFF_lp .content-wrapper {
    max-width: 1640px;
}
}

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

@font-face { 
  font-family:TT Firs Neue; 
  src: url("https://6929286.fs1.hubspotusercontent-na1.net/hubfs/6929286/raw_assets/public/Terrapay_January2023/css/fonts/TTFirsNeue-Regular.ttf");   
    font-style: normal; 
    font-weight: 400; 
    font-display: block;
    }

@font-face { 
  font-family:TT Firs Neue; 
  src: url("https://6929286.fs1.hubspotusercontent-na1.net/hubfs/6929286/raw_assets/public/Terrapay_January2023/css/fonts/TTFirsNeue-Light.ttf");
    font-style: normal; 
    font-weight: 300; 
    font-display: block;
    }

@font-face { 
  font-family:TT Firs Neue; 
  src: url("https://6929286.fs1.hubspotusercontent-na1.net/hubfs/6929286/raw_assets/public/Terrapay_January2023/css/fonts/TTFirsNeue-Medium.ttf"); 
    font-style: normal; 
    font-weight: 500; 
    font-display: block;
    }

@font-face { 
  font-family:TT Firs Neue; 
  src: url("https://6929286.fs1.hubspotusercontent-na1.net/hubfs/6929286/raw_assets/public/Terrapay_January2023/css/fonts/TTFirsNeue-DemiBold.ttf"); 
    font-style: normal; 
    font-weight: 600; 
    font-display: block;
    }

@font-face { 
  font-family: "Font Awesome 6 Brands"; 
  src: url(https://6929286.fs1.hubspotusercontent-na1.net/hubfs/6929286/raw_assets/public/Terrapay_January2023/css/fonts/FontAwesome6Brands-Regular.woff2) format("woff2"), 
    url("https://6929286.fs1.hubspotusercontent-na1.net/hubfs/6929286/raw_assets/public/Terrapay_January2023/css/fonts/FontAwesome6Brands-Regular.ttf") format("truetype"); 
      font-style: normal; 
      font-weight: 400;  
      font-display: block; 
      }

@font-face { 
  font-family: "Font Awesome 6 Free"; 
  src: url("https://6929286.fs1.hubspotusercontent-na1.net/hubfs/6929286/raw_assets/public/Terrapay_January2023/css/fonts/FontAwesome6Free-Solid.woff2") format("woff2"), 
    url("https://6929286.fs1.hubspotusercontent-na1.net/hubfs/6929286/raw_assets/public/Terrapay_January2023/css/fonts/FontAwesome6Free-Solid.ttf") format("truetype"); 
      font-style: normal; 
      font-weight: 900; 
      font-display: block;
      }


@font-face {
  font-family: TTfirs_x_bold; 
  src: url("https://6929286.fs1.hubspotusercontent-na1.net/hubfs/6929286/fonts/TTFirsNeue-DemiBold.ttf");
}

@font-face { 
  font-family: TTfirs;
  src: url("https://6929286.fs1.hubspotusercontent-na1.net/hubfs/6929286/fonts/TTFirsNeue-Regular.woff2");
}

body {
  line-height: 1.31;
  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-top: 20px;
}

p + * {
    margin-bottom: 20px;
}

p {
    margin: 0;
}
.seamless_lp p {
  color: #233671;
  line-height: 1.3;
}
/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

h1{
  line-height: 1.0075;
}
h2{
  line-height: 1.16;
}
h3{
  line-height: 1.43;
}
h4{
  line-height: 1.53;
}
h5{
  line-height: 1.31;
}
h6 {
  line-height: 1.425;
}

/* 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 {
  width:auto;
  max-width:100%;
  border:none;
  vertical-align: middle;
}
@media(min-width:1500px){
.SFF_lp  h2 {
    font-size: 54px;
    font-weight: 500;
    margin-bottom: 40px;
}
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  border-style: solid;
  text-decoration: none;
}

button:disabled,
.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: 36px;
}

/* Labels */

form label {
  display: block;
  font-family: 'TT Firs Neue';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 143%;
  margin-bottom: 5px;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
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;
  width: 100%;
  font-family: 'TT Firs Neue';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 143%;
  background: #FFFFFF;
  border-style: solid;
  border-width: 1px;
  padding: 19px 24px 19px;
  outline: 0;

}

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

/* 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: 0.7rem !important;
}

/* Validation */

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

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

.hs-error-msg {
  color:#EB5E57;
  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;
  font-family: 'TT Firs Neue';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 143%;
  letter-spacing: 0.185em;
  text-decoration: none;
  border-style: solid;
  text-transform: uppercase;
}

.submitted-message {
  text-align: center;
  font-size: 20px;
}

.hs-error-msgs label.hs-error-msg {
  text-align: left;
  color: #eb5e57;
}

ul.no-list.hs-error-msgs.inputs-list > li > label {
  color: #eb5e57 !important;
}

.popup_form form select {
  width: 100% !important;
}

.popup_form form .input {
  margin-right: 0 !important;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

input[id*="LEGAL_CONSENT"] {
  margin: 5px 0 !important;
}
/* 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
*/

@import url('//netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.css');


header.header {
  padding: 28px 36px 21px;
  background-color: #fff;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

header.header .logo {
  width: 100%;
  max-width: 159px;
  height: 30px;
  margin-right: auto;
  transition: .3s ease;
}

header.header .logo img {
  width: 100% !important;
  max-width: 100%;
  vertical-align: middle;
  border: none;
}

header.header .navbar-toggler {
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow .15s ease-in-out;
  font-size: 20px;
  background: #EB5E57;
  cursor: pointer;
}

header.header .navbar-toggler > i {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display:inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

header.header .navbar-toggler>.fa-bars:before {
  content: "\f0c9";
}

header.header .navbar-toggler>.fa-solid:before {
  content: "\f00d";
}

header.header .navbar-toggler .fa-solid {
  display: none;
}

.humburger header.header .navbar-toggler>.fa-bars {
  display: none;
}

.humburger header.header .navbar-toggler .fa-solid {
  display: block;
  font-size: 25px;
}

header.header .navbar-toggler>i:before {
  vertical-align: middle;
  color: #fff;
}

header.header .menu_wrpper .hs-menu-wrapper {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

header.header .menu_wrpper .hs-menu-wrapper>ul {
  margin-left: auto;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  list-style: none;
}

header.header .menu_wrpper .hs-menu-wrapper>ul>li {
  position: relative;
}

header.header .menu_wrpper .hs-menu-wrapper ul  li {
  margin: 8px 8px 8px 24px;
}

header.header .menu_wrpper .hs-menu-wrapper ul li a {
  font-family: 'TT Firs Neue';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  white-space: nowrap;
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
  display: block;
  color: #233671;
}

header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>a:after {
  display: inline-block;
  margin-left: 4.080px;
  vertical-align: 3.08px;
  content: "";
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-bottom: 0;
  border-left: 4px solid transparent;
}

header.header .menu_wrpper .hs-menu-wrapper > ul > li:last-child > a {
  margin-left: 34px;
  background: #EB5E57;
  color: #fff;
  border-radius: 9px;
  padding: 9px 21px 9px 25px;
  border: 1px solid #eb5e57;
}

header.header .menu_wrpper .hs-menu-wrapper>ul>li:last-child>a:hover {
  border: 1px solid #eb5e57;
  color: #eb5e57;
  background: 0;
}


header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>ul {
  position: absolute;
  left: 0;
  opacity: 1;
  padding: 10px;
  background: #fff;
  display: none;
  z-index: 9;
}

header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>ul>li {
  position: relative; 
  margin: 8px;
}

.form_section .form_wrp .hs-form-field select {
  background-image: url(https://6929286.fs1.hubspotusercontent-na1.net/hubfs/6929286/raw_assets/public/Terrapay_January2023/images/Frame%20k.png);
}



header.header .menu_wrpper .hs-menu-wrapper ul > li:last-child {
  margin: 0px;
}

header.header .menu_wrpper .hs-menu-wrapper ul li a:hover {
  color: #eb5e57;
}

header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>ul {
  top: 100% !important;
  border-top: 4px solid #e25e56;
  border-radius: 0;
  padding: 0.5rem 0;
  margin: 0;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  max-width: 232px;
  position: absolute;
  z-index: 999;
}

header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>ul>li>a {
  padding: 0.5rem 1rem;
  font-size: 14px;
}

header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>ul>li {
  margin: 0px;
}

header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>ul>li>a:before {
  display: none;
}

header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>ul>li>a:hover {
  background-color: #e9ecef;
}

.Product_sec > ul,
.Media_sec > ul {
  list-style: none!important;
}

.Media_sec>ul .ftr-title,
.Product_sec > ul .ftr-title {
  padding: 0 12px;
}

.Media_sec>ul ul > li , 
.Product_sec>ul ul > li  {
  display:block;
  width: 100%;
}
.logo_sec ul>li {
  display: block;
  width: 100%;
}
.logo_sec ul {
  padding-left: 0 !important;
}

/* Lp header css */
header.header.header_v2 .menu_wrpper .hs-menu-wrapper>ul>li:last-child {
  margin: 8px 8px 12px 24px;
  margin-right: 154px;
}

header.header.header_v2 .menu_wrpper .hs-menu-wrapper>ul>li:last-child>a {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  color: inherit;
  margin: 0;
}
.container-fluid.body-container.seamless_CS_LP,
.container-fluid.body-container.seamless_lp_v4 {
  background-image: url('https://6929286.fs1.hubspotusercontent-na1.net/hubfs/6929286/Landing%20page%20CASE%20STUDY-1.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.sibos-lp-page .container-fluid.body-container.body-container--qa-test.seamless_lp_v4 {
  background-image: none;
}

@media (min-width: 992px){
  header.header{
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  header.header .menu_wrpper .hs-menu-wrapper {
    display: flex;
    flex-basis: auto;
  }
  header.header .menu_wrpper .hs-menu-wrapper > ul {
    flex-direction: row;
    margin-bottom: 0;
  }
  header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children:hover>ul {
    display: block !important;
  }
  header.header .navbar-toggler {
    display: none;
  }
  header.header .menu_wrpper {
    display: block !important;
  }
  header.header .menu_wrpper .hs-menu-wrapper  ul  li:not(:last-child)  a:hover:before {
    width: 100%;
  }
  header.header .menu_wrpper .hs-menu-wrapper ul li:not(:last-child) a:before {
    background-color: #eb5e57;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    margin: 0 auto;
    position: absolute; 
    top: 17px;
    transition: all .3s ease-in,width .3s ease-in;
    -ms-transition: all .3s ease-in,width .3s ease-in;
    width: 0;
  }
}

@media (max-width: 1199px){
  .footer2 .ftr_row {
    padding: 0 20px!important;
  }
}

@media (max-width: 991.98px){
  header.header .menu_wrpper {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
    display:none;
    z-index:999;
  }
  header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>ul>li {
    margin: 0px;
  }
  header.header .menu_wrpper .hs-menu-wrapper>ul {
    padding: 0px 27px 36px 27px;
    margin: 0px;
  }

  header.header .menu_wrpper .hs-menu-wrapper ul li a {
    margin-left: 0px;
    font-size: 14px;
    padding:10px;
    display: inline-block;
  }
  header.header .menu_wrpper .hs-menu-wrapper ul li  {
    margin: 0px;
  }
  header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>ul {
    position: static;
    display: none;
  }
  .child_trigger {
    position: absolute;
    width: 37px;
    height: 37px;
    top: 0;
    right: 0;
    text-align: center;
    cursor: pointer;
  }

  .child_trigger:before {
    content: "+";
    color: #233671;
    font-size: 25px;
    top: 3px;
    position: relative;
  }
  .child_trigger.child-open:before {
    content: "-";
    top: 2px;
    color: #eb5e57;
  }
  .child_trigger:hover:before {
    color: #eb5e57;
  }
  header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>a:after {
    display: none;
  }
  header.header .menu_wrpper .hs-menu-wrapper>ul>li:last-child>a {
    margin: 10px 0px 10px 10px;
  }
  header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>ul {
    max-width: 100%;
  }  

  header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>ul>li:hover {
    background-color: #e9ecef;
  }

  header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>ul>li>a:hover {
    color: transparent;
  }

  header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>ul>li>a:hover {
    background-color: transparent;
  }

  header.header .menu_wrpper .hs-menu-wrapper>ul>li.hs-item-has-children>ul>li:hover > a {
    color: #eb5e57;
  }

  header.header.header_v2 .menu_wrpper .hs-menu-wrapper>ul>li:last-child{
    margin:0;
  }
  header.header.header_v2 .menu_wrpper .hs-menu-wrapper>ul>li:last-child>a {
    padding: 10px;
  }
}

@media (max-width: 767px){
  .footer-links {
    padding: 0 15px;
  }
  .ftr_row ul {
    padding-left: 0;
  }
  .Media_sec>ul .ftr-title, .Product_sec>ul .ftr-title {
    padding: 0;
  }
}

@media (max-width: 576px){
  .footer2 .ftr_row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer2 .wht {
    width: 100% !important;
  }

  a#ftr_btn {
    margin: 0 auto !important;
  }

}
@import url('//netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.css'); 

.footer_v2 {
  background-color: #213871!important;
  z-index: 300;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(https://6929286.fs1.hubspotusercontent-na1.net/hubfs/6929286/raw_assets/public/Terrapay_January2023/images/footer-banner-bg.jpg);
  margin-top: 0;
  letter-spacing: .5px;
}

.footer_v2 .container {
  width: 100%;
  padding-right: var(--bs-gutter-x,.75rem);
  padding-left: var(--bs-gutter-x,.75rem);
  margin-right: auto;
  margin-left: auto;
}

.footer_v2 .footer-links {
  position: relative;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  margin-top:20px;
  margin-right: calc(1.5rem * -.5);
  margin-left: calc(8.5rem * -.5);
}

.footer_v2 .row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(1.5rem * .5);
  padding-left: calc(1.5rem * .5);
  margin-top: 0;
}


.footer_v2 .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(1.5rem * -.5);
  margin-left: calc(1.5rem * -.5);
}

.footer_v2 .footer-logo img{
  max-width: 247px;
  height: 45px;
  margin-top: 0;
  margin-bottom: 70px;
}

.footer_menu .hs-menu-wrapper>ul>li>a {
  margin-bottom: 30px;
  margin-bottom: 35px!important;
  font-size: 30px;

  color: #eb5e57!important;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
  font-family: TTfirs_x_bold;
  font-weight:500;
}
.footer_menu .hs-menu-wrapper>ul>li {
  max-width: 100%;
  padding-right: calc(1.5rem * .5);
  padding-left: calc(1.5rem * .5);
  margin-top: 0;
}
.footer_menu .hs-menu-wrapper>ul>li>ul>li{
  margin-bottom: 30px;
  line-height:1.2;
}

.footer_menu .hs-menu-wrapper>ul>li>ul>li>a{
  line-height: 1.2;
  font-family: TTfirs;

  font-size: 18px;
  font-weight: 400;
  margin-bottom: 9px!important;
  color: #fff;
  text-decoration: none;
}


.footer_v2 .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 60px;
  position: relative;
  z-index: 50;
}

.footer_v2 .footer-bottom p {
  font-size: 18px;
  margin-bottom: 0!important;
  line-height: 31px;
  color: #fff;
}

.footer_v2 .footer-bottom a {
  color: #eb5e57!important;
  text-decoration: underline!important;
}

.footer_v2 .social.till-tab {
  display: flex;
}

.footer_v2 .fa-brands {
  color: #fff;
  font-size: 25px;
  margin-left: 50px;
  transition: .3s ease;
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display,inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-twitter:before {
  content: "\f099";
}
.fa-twitter:before {
  content: "\f099";
}


.footer_v2 .line-whitish-blue {
  display: block;
  content: '';
  background-color: #618fff;
  width: 100%;
  height: 1px;
  margin: 20px 0;
}

.footer_v2 .txt-bottom {
  font-size: 18px;
  line-height: 1.4!important;
  width: 50%;
}
.footer_v2  .footer_menu.col-xl-3.col-5 {
  padding: 0;
}


.footer_v2 .txt-bottom P {
  color: #fff!important;
  font-size: 16px;
  line-height: 1.3;
  Margin-bottom: 1rem
}

.footer_v2 .txt-bottom P:last-child {
  line-height: 31px;
  color: #213871;
  margin-top: 0;
  margin-bottom: 1rem;
}
.footer_v2 .txt-bottom P:last-child a {
  text-decoration: underline;
  font-weight: 500!important;
  color: #eb5e57!important;
  font-size: 18px;
}

.footer_menu .hs-menu-wrapper>ul>li {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.footer_menu .hs-menu-wrapper>ul>li:nth-child(even) {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.fa-twitter:before {
  content: "\f099";
}
.fa-youtube:before {
  content: "\f167";
}



@media (min-width: 576px){
  .footer_v2 .container {
    max-width: 540px;
  }
}

@media (min-width: 768px){
  .footer_v2 .container{
    max-width: 720px;
  }
}


@media (min-width: 992px){
  .footer_v2 .container{
    max-width: 960px;
  }
}
@media (min-width: 1200px){
  .footer_v2 .container{
    max-width: 1140px;
  }
  .footer_menu .hs-menu-wrapper>ul>li,
  .footer_menu .hs-menu-wrapper>ul>li:nth-child(even) {
    flex: 0 0 auto;
    width: 25%;
  }
  .footer_menu .hs-menu-wrapper ul{
    display:flex;
  }
}
@media (min-width: 1400px){
  .footer_v2 .container{
    max-width: 1320px;
  }
}


@media (max-width: 1700px){   
  .footer_menu .hs-menu-wrapper>ul>li>ul>li>a {
    font-size: 16px;
  }

  .footer_menu .hs-menu-wrapper>ul>li>a {
    margin-bottom: 25px!important;
    font-size: 25px;
  }

  .footer_v2 .footer-bottom p {
    font-size: 16px;
  }

  .footer_v2 .fa-brands {
    font-size: 20px;
    margin-left: 40px;
  }
  .footer_v2 .txt-bottom {
    font-size: 16px;
  }
  .footer_v2 .footer-logo img{
    max-width: 200px;
    height: 45px;
    margin-top: 0;
    margin-bottom: 70px;
  }
  .footer_v2 .txt-bottom P:last-child a {
    font-size: 16px;
  }
}


@media (max-width: 1600px){
  .footer_v2 {
    background-position-x: right!important;
  }
}
@media (max-width: 1199.98px){
  .footer_v2 {
    padding: 50px 0;
  }
  .footer_v2 .footer-logo img{
    max-width: 100px;
  }
  .footer_menu .hs-menu-wrapper>ul>li>ul>li>a {
    font-size: 13px!important;
    margin-bottom: 13px!important;

  }
  .footer_v2 .fa-brands {
    font-size: 30px;
  }
  .footer_menu .hs-menu-wrapper>ul>li>ul>li {
    margin-bottom: 25px;
  }

  .footer_menu .hs-menu-wrapper ul {

    margin-bottom: 3px;
  }

}


@media (max-width: 991.98px){
  .footer_v2 .footer-bottom p{
    font-size: 12px!important;
  }
  .footer_v2 .txt-bottom {
    width: 60%;
  }
}


@media (max-width: 767px){
  .footer_v2  .hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
    flex-direction: column;
    display: block;
  }
  .footer_v2 .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: inherit;
  }
  .footer_social {
    display: none!important;
  }
  .footer_v2 .txt-bottom {
    width: 95%;
    font-size: 12px!important;
  }
  .footer_v2 .txt-bottom P:last-child a {
    font-size: 12px;
  }
  .footer_v2 .footer-bottom p {
    line-height: 1.2!important;
    font-size: 14px!important;
    width: 100%;
    margin-bottom: 20px!important;
  }
  .footer_v2 .footer-bottom p::before {
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #fff;
    margin-bottom: 20px;
  }
  .footer_v2 .footer-bottom {
    margin-top:0;
  }
  .footer_v2 .footer-links .row {
    padding: 0;
  }
}


@media (max-width: 575.98px){
  .footer_v2 .footer-bottom {
    flex-wrap: wrap!important;
  }

  .footer_v2 .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

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

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* 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  (min-width: 576px){
  .site-footer > .content-wrapper, .main-header .site-header > .content-wrapper {
    max-width: 540px;
  }
}
@media (min-width: 768px){
  .site-footer > .content-wrapper, .main-header .site-header > .content-wrapper {
    max-width: 720px !important;
  }
}
@media (min-width: 992px){
  .site-footer > .content-wrapper, .main-header .site-header > .content-wrapper {
    max-width: 960px !important;
  }
}
@media (min-width: 1200px){
  .site-footer > .content-wrapper, .main-header .site-header > .content-wrapper {
    max-width: 1140px !important;
  }
}
@media (min-width: 1400px){
  .site-footer > .content-wrapper, .main-header .site-header > .content-wrapper {
    max-width: 1288px !important;
  }
}
@media (min-width: 1800px){
  .site-footer > .content-wrapper, .main-header .site-header > .content-wrapper {
    max-width: 1688px !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;
  }
}