/* 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: 992px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

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

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

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

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

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

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

:root {
  --neutral: #FFFFFF;
  --neutral-100: #EEEEF2;
  --neutral-800: #363B49;
  --secondary: #00B27A;
  --blue-50: #F2F5FC;
  --blue-500: #466AD8;
  --blue-900: #112151;
  --green-100: #E5FAF3;
  --green-300: #63E3BB;
  --green-500: #00B27A;
  --red-300: #F8879D;
  --red-500: #F11843;
  --yellow-300: #FFD06B;
  --yellow-500: #F5A700;
}


html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--blue-900);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  overflow-wrap: break-word;
}

body.menu-active, body.remove-scroll {
  overflow: hidden;
}

.body-wrapper {
  position: relative;
  overflow: hidden;
}

.text-lg {
  font-weight: 600;
}
@media(min-width: 992px) {
  .text-lg {
    font-size: 18px;
  }
}

.show-desktop {
  display: none;
}
.hide-desktop {
  display: block;
}
@media(min-width: 992px) {
  .show-desktop {
    display: block;
  }
  .hide-desktop {
    display: none;
  }
}

/* Paragraphs */
p {
  margin: 0 0 1rem;
}
p:last-child {
  margin: 0;
}

strong, b {
  font-weight: 700;
}

/* Anchors */
a {
  color: var(--text-color);
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

/* Headings */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  color: var(--blue-900);
  font-weight: 700;
  margin: 0 0 20px;
  display: block;
}
h1, .h1 {
  font-size: 40px;
  line-height: 48px;
}
h2, .h2 {
  font-size: 36px;
  line-height: 46px;
}
h3, .h3 {
  font-size: 32px;
  line-height: 40px;
}
h4, .h4 {
  font-size: 24px;
  line-height: 30px;
}
h5, .h5 {
  font-size: 20px;
  line-height: 24px;
}
h6, .h6 {
  font-size: 18px;
  line-height: 22px;
}

@media(min-width: 768px) {
  h1, .h1 {
    font-size: 48px;
    line-height: 56px;
  }
  h2, .h2 {
    font-size: 36px;
    line-height: 44px;
  }
  h3, .h3 {
    font-size: 36px;
    line-height: 44px;
  }
  h4, .h4 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media(min-width: 992px) {
  h1, .h1 {
    font-size: 64px;
    line-height: 72px;
  }
  h2, .h2 {
    font-size: 44px;
    line-height: 52px;
  }
  h3, .h3 {
    font-size: 40px;
    line-height: 48px;
  }
  h4, .h4 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media(min-width: 1200px) {
  h1, .h1 {
    font-size: 60px;
    line-height: 70px;
  }
  h2, .h2 {
    font-size: 50px;
    line-height: 58px;
  }
  h3, .h3 {
    font-size: 42px;
    line-height: 48px;
  }
  h4, .h4 {
    font-size: 36px;
    line-height: 44px;
  }
}

/* Lists */

ul,
ol {
  margin: 14px 0;
  padding: 0 0 0 26px;
}

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

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

/* Code blocks */
pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

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

/* Horizontal rules */
hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */
img {
  max-width: 100%;
  height: auto;
}

/* section header */
.section-header {
  text-align: center;
  margin: 0 auto;
  max-width: 1350px;
}
.section-header h1 {
  letter-spacing: -2px;
}
.section-header p {
  font-size: 18px;
  font-weight: 600;
}
@media(min-width: 768px) {
  .section-header p {
    font-size: 22px;
  }
}
@media(min-width: 992px) {
  .section-header p {
    font-size: 26px;
  }
}

/* section head style */
.section-head {
  overflow: hidden;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 768px) {
  .section-head {
    margin-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  .section-head {
    margin-bottom: 55px;
  }
}
@media (min-width: 1440px) {
  .section-head {
    margin: 0 0 65px;
  }
}
.section-head h2 {
  letter-spacing: -1px;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.section-head h2 .green {
  color: #466ad8;
}

/* slick arrows style */
.slick-nav {
  display: flex;
  gap: 10px;
}
@media (min-width: 1024px) {
  .slick-nav {
    gap: 20px;
  }
}
.slick-arrow {
  width: 36px;
  height: 36px;
  border: 2px solid #466ad8;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #466ad8;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .slick-arrow {
    width: 52px;
    height: 52px;
    border-width: 4px;
  }
}
@media (min-width: 1024px) {
  .slick-arrow svg {
    width: 20px;
    height: 20px;
  }
}
.slick-arrow.slick-prev {
  transform: rotate(180deg);
}
.slick-arrow:hover {
  color: #466ad8;
  border-color: #466ad8;
}
.slick-arrow.slick-disabled {
  color: #d3d3d3;
  border-color: #d3d3d3;
  pointer-events: none;
}

/* container */
.container-full {
  max-width: 100%;
  padding: 0 15px;
}
.container-small {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
.container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 15px;
}
.dnd-section > .row-fluid {
  max-width: 1170px;
  margin: 0 auto;
}
.dnd-section > .row-fluid .container {
  padding: 0;
}
[class*=full-width-section] > .row-fluid {
  padding: 0;
}
[class*=full-width-section] > .row-fluid .container {
  padding: 0 15px;
}
[class*=full-width-section] > .row-fluid .dnd-column {
  padding: 0;
}

@media(max-width: 991px) {
  .dnd-section > .row-fluid {
    padding: 0 15px;
  }
  [class*=full-width-section] > .row-fluid {
    padding: 0;
  }
}
.cta_button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.4s ease-in-out;
  white-space: normal;
}

.cta_button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* button */
.cta_button, .hs-button {
  font-family: inherit;
  background-color: var(--blue-500);
  border: 2px solid var(--blue-500);
  box-shadow: none;
  border-radius: 40px;
  color: var(--neutral);
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 0;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  position: relative;
}
@media(min-width: 768px) {
  .cta_button, .hs-button {
    font-size: 18px;
    line-height: 22px;
  } 
  .cta_button.small, .hs-button.small {
    font-size: 16px;
    padding: 5px 20px;
  }
}

.cta_button:before, .hs-button:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  transform: translateY(100%);
  transition: 0.3s;
}
.cta_button:hover:before, .hs-button:hover:before {
  transform: none;
}

.cta_button.secondary, .hs-button.secondary {
  background-color: var(--blue-900);
  border-color: var(--blue-900);
}

.cta_button.white, .hs-button.white {
  background-color: var(--blue-50);
  border-color: var(--blue-50);
  color: var(--blue-500);
}

.cta_button.white:before, .hs-button.white:before, .cta_button.light:before, .hs-button.light:before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

.cta_button.green, .hs-button.green {
  background-color: #00B27a;
}

.cta_button.light, .hs-button.light {
  color: #112151;
  background: #f2f5fc;
  border-color: #f2f5fc;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}

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

/* Help text */

form legend {
  font-size: 16px;
}

/* 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 {
  background-color: var(--neutral);
  border: 1px solid var(--neutral);
  border-radius: 20px;
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: var(--blue-500);
  padding: 12px 26px;
  width: 100%;
  outline: none;
  box-shadow: none;
}

form textarea {
  resize: none !important;
  min-height: 180px;
}

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.hs-error-msgs > li {
  display: block;
  margin: 0 0 0.7rem;
}

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: var(--red-500);
}

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

.hs-error-msg {
  color: var(--red-500);
  font-size: 14px;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.4s ease-in-out;
  white-space: normal;
  background-color: var(--blue-900);
  border-color: var(--blue-900);
  color: var(--neutral);
  font-size: 16px;
  line-height: 20px;
  padding: 10px 42px 10px 22px;
  background-repeat: no-repeat;
  background-position-x: 88%;
  background-position-y: 9px;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.3564 0.34375C8.34773 0.34375 6.38412 0.939404 4.71394 2.05539C3.04375 3.17137 1.742 4.75756 0.973298 6.61337C0.204596 8.46918 0.00346828 10.5113 0.395349 12.4814C0.78723 14.4515 1.75452 16.2612 3.1749 17.6815C4.59527 19.1019 6.40494 20.0692 8.37506 20.4611C10.3452 20.853 12.3873 20.6518 14.2431 19.8831C16.0989 19.1144 17.6851 17.8127 18.8011 16.1425C19.917 14.4723 20.5127 12.5087 20.5127 10.5C20.5099 7.80727 19.4389 5.22564 17.5349 3.32159C15.6308 1.41754 13.0492 0.346594 10.3564 0.34375ZM10.3564 19.0937C8.65676 19.0937 6.99525 18.5897 5.58202 17.6454C4.16878 16.7011 3.0673 15.359 2.41686 13.7887C1.76642 12.2184 1.59623 10.4905 1.92783 8.82344C2.25942 7.15642 3.07789 5.62516 4.27975 4.4233C5.48161 3.22144 7.01287 2.40297 8.67989 2.07138C10.3469 1.73978 12.0748 1.90997 13.6451 2.56041C15.2154 3.21085 16.5576 4.31233 17.5019 5.72557C18.4462 7.1388 18.9502 8.80031 18.9502 10.5C18.9476 12.7784 18.0414 14.9628 16.4303 16.5738C14.8192 18.1849 12.6349 19.0912 10.3564 19.0937ZM14.8154 9.94726C14.8881 10.0198 14.9457 10.106 14.985 10.2008C15.0243 10.2957 15.0446 10.3973 15.0446 10.5C15.0446 10.6027 15.0243 10.7043 14.985 10.7992C14.9457 10.894 14.8881 10.9802 14.8154 11.0527L11.6904 14.1777C11.5438 14.3243 11.345 14.4067 11.1377 14.4067C10.9304 14.4067 10.7316 14.3243 10.585 14.1777C10.4384 14.0311 10.356 13.8323 10.356 13.625C10.356 13.4177 10.4384 13.2189 10.585 13.0723L12.377 11.2812L6.4502 11.2812C6.243 11.2812 6.04428 11.1989 5.89777 11.0524C5.75126 10.9059 5.66895 10.7072 5.66895 10.5C5.66895 10.2928 5.75126 10.0941 5.89777 9.94757C6.04428 9.80106 6.243 9.71875 6.4502 9.71875L12.377 9.71875L10.585 7.92773C10.4384 7.78114 10.356 7.58231 10.356 7.375C10.356 7.16768 10.4384 6.96886 10.585 6.82226C10.7316 6.67567 10.9304 6.59331 11.1377 6.59331C11.345 6.59331 11.5438 6.67567 11.6904 6.82226L14.8154 9.94726Z' fill='%23F2F5FC'/%3E%3C/svg%3E%0A");
}
form input[type=submit]:hover,
form .hs-button:hover {
  background-color: var(--blue-900);
  border-color: var(--blue-900);
  color: var(--neutral);
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

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

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

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

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

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
/* Slick slider styles */
.slick-slider {
  position: relative;
  user-select: none;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

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

.header {
  background-color: var(--blue-50);
  padding: 25px 0;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
}
.hs-landing-page .header {
  position: sticky;
  top: 0;
}
.header .header__holder {
  background-color: var(--neutral);
  border-radius: 100px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 10px 24px;
}
.header .logo {
  max-width: 164px;
  line-height: 0;
}

.header .nav-bar {
  position: fixed;
  top: 90px;
  left: 0;
  height: 0;
  right: 0;
  overflow-y: auto;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}
.header .nav-bar #main-nav {
  padding: 40px 0;
  background-color: var(--blue-50);
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.menu-active .header .nav-bar {
  height: 100%;
}
.menu-active .header .nav-bar #main-nav {
  transform: translateY(0);
}

.header .menu ul li {
  text-align: center;
}
.header .menu ul li a {
  color: var(--blue-900);
  font-size: 17px;
  padding: 12px 10px;
  display: inline-block;
  text-align: center;
  position: relative;
}
.header .menu ul li a:hover:after {
  width: 100%;
}
.header .menu ul li a:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--blue-900);
  transition: all 0.4s ease-in-out;
  margin-top: 5px;
}
.header .menu .button-holder {
  padding: 10px 30px;
  text-align: center;
}
.header .menu .cta_button.desktop {
  display: none;
}

.header ul.socia-networks {
  display: flex !important;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin: 17px -5px 0;
  order: 4;
}
.header ul.socia-networks li {
  padding: 0 5px;
  line-height: 0;
}
.header ul.socia-networks li a {
  padding: 0;
}

.language-switcher {
  background-color: transparent;
  box-shadow: none;
  outline: none;
  border: none;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}
.language-switcher img {
  margin-right: 8px;
}
.language-switcher-wrapper {
  position: relative;
  line-height: 0;
  margin-right: 45px;
}
.language-switcher-dropdown {
  background-color: var(--neutral);
  box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
  position: absolute;
  top: 100%;
  left: 50%;
  width: 105px;
  display: none;
  transform: translateX(-50%);
  margin-top: 10px;
  border-radius: 8px;
  z-index: 2;
}
.language-switcher-dropdown.open {
  display: block;
}
.language-switcher-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.language-switcher-dropdown ul li {
  padding: 15px 10px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.language-switcher-dropdown ul li.active {
  display: none;
}
.language-switcher-dropdown ul li a {
  text-decoration: none;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
}
.language-switcher-dropdown ul li a:after {
  display: none;
}
.language-switcher-dropdown ul li img {
  margin-right: 8px;
}


/* mobile menu toogle */
.navbar-toggle {
  width: 32px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  background: transparent;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 15;
}
.navbar-toggle:after,
.navbar-toggle:before,
.navbar-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  background-color: var(--blue-500);
  height: 3px;
  transition: all 0.3s ease;
  width: 32px;
  border-radius: 3px;
}
.navbar-toggle span {
  top: 50%;
  transform: translateY(-50%);
}
.navbar-toggle:after,
.navbar-toggle:before {
  content: '';
}
.navbar-toggle:after {
  bottom: 23px;
}
.navbar-toggle:before {
  top: 23px;
}
.menu-active .navbar-toggle {
  background: transparent;
}
.menu-active .navbar-toggle:before {
  width: 23px;
  left: auto;
}
.menu-active .navbar-toggle:after {
  width: 16px;
  left: auto;
}

@media(max-width: 991px) {
  .header .menu ul {
    display: block;
  }
  .header .nav-bar #main-nav {
    display: flex;
    flex-flow: column wrap; 
  }
  .header .menu .button-holder {
    order: 2;
  }
  .language-switcher-wrapper {
    margin: 40px 0;
    text-align: center;
    order: 3;
  }
}

@media(min-width: 992px) {
  .header .logo {
    max-width: 200px;
  }
  .navbar-toggle {
    display: none;
  }
  .header .nav-bar {
    position: static;
    overflow-y: unset;
    transition: none;
    height: auto;
    z-index: 1;
  }
  .header .nav-bar #main-nav {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    padding: 0;
    background: transparent;
    transform: none;
    transition: none;
    height: auto;
  }
  .header .menu ul li {
    padding: 15px 15px 15px 0;
  }
  .header .menu ul li a {
    color: var(--blue-500);
    padding: 0 10px;
  }
  .header .menu ul li a:after {
    background-color: var(--blue-500);
  }
  .header .menu .button-holder {
    padding: 0;
  }
  .header .menu .cta_button.desktop {
    display: block;
  }
  .header .menu .cta_button.mobile {
    display: none;
  }
  .header ul.socia-networks {
    display: none !important;
  }
  .language-switcher-wrapper {
    margin-right: 20px;
  } 
}
@media(min-width: 1200px) {
  .header .logo {
    max-width: 229px;
  }
  .language-switcher-wrapper {
    margin-right: 37px;
  }
}


/* header landing page */
.header.header-lp .container-full {
  max-width: 1566px;
  margin: 0 auto;
}
.header.header-lp .header__holder {
  background-color: transparent;
  padding: 0;
}

.header.header-no-navigation {
  background-color: transparent;
}
.header.header-no-navigation .header__holder {
  justify-content: center;
}
.header.header-no-navigation .logo {
  max-width: 308px;
}

/* header inner page */
.header.header_inner {
  background-color: transparent;
}
.header.header_inner .header__holder {
  background: rgba(255, 255, 255, 0.4);
}

@media(min-width: 992px) {
  .header.header_inner .menu li a {
    color: #dee4f8;
  }
  .header.header_inner .menu li a:after {
    background-color: #dee4f8;
  }
  .header.header_inner .menu li a:hover {
    color: var(--neutral);
  }
  .header.header_inner .menu li a:hover::after {
    background-color: var(--neutral);
  }
}
/* Fix header overlap on landing pages */
.header.header-lp {
  position: relative;
}

.header.header-lp + * {
  margin-top: 120px;
}
.hero-banner {
  background-color: var(--blue-50);
  padding: 120px 0 50px;
}
@media(min-width: 992px) {
  .hero-banner {
    background-color: var(--blue-50);
    padding-top: 180px;
  }
}

.hero-banner .section-header {
  text-align: center;
  margin: 0 auto;
  max-width: 920px;
}
.hero-banner .section-header h1 {
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.hero-banner .section-header p {
  font-size: 18px;
  font-weight: 700;
}
@media(min-width: 768px) {
  .hero-banner .section-header p {
    font-size: 22px;
  }
}
@media(min-width: 992px) {
  .hero-banner .section-header p {
    font-size: 26px;
  }
}

.hero-banner .silder-wrapper {
  box-shadow: 0px 4px 19.1px 0px rgba(0,0,0,0.1);
  border-radius: 22px;
  margin: 40px auto 0;
  max-width: 1648px;
  overflow: hidden;
}

.hero-banner .hero-slider .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0 -4px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-banner .hero-slider .slick-dots li {
  padding: 0 4px;
  line-height: 0;
}
.hero-banner .hero-slider .slick-dots li.slick-active button {
  background-color: #63E3BB;
}
.hero-banner .hero-slider .slick-dots button {
  border: 0;
  font-size: 0;
  line-height: 0;
  padding: 0;
  background-color: var(--green-100);
  border-radius: 100%;
  height: 8px;
  width: 8px;
}


.hero-banner .hero-slider .slide-holder {
  position: relative;
  z-index: 1;
}
.hero-banner .hero-slider .slide-holder:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 12%;
  background-color: #F2F5FC;
}
.hero-banner .hero-slider .row {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  margin: 0 -15px;
}
.hero-banner .hero-slider .column {
  padding: 0 15px;
  width: 100%;
}
.hero-banner .hero-slider .content {
  text-align: center;
  padding: 40px 20px 0;
}

.hero-banner .hero-slider h2 .logo {
  display: block;
}
.hero-banner .hero-slider h2 .logo img {
  margin: 0 auto;
}
.hero-banner .hero-slider .social-apps, .hero-banner .hero-slider .button-wrap {
  margin-top: 30px;
}
.hero-banner .hero-slider .social-apps {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 20px;
}
.hero-banner .hero-slider .google-app, .hero-banner .hero-slider .apple-app {
  max-width: 161px;
}
.hero-banner .hero-slider .image-holder {
  line-height: 0;
  padding: 0 20px;
  max-width: 612px;
  margin: 30px auto 0;
}

@media(min-width: 768px) {
  .hero-banner .hero-slider h2 .logo {
    display: inline-block;
  }
  .hero-banner .hero-slider .content {
    padding-top: 60px;
    margin: 0 auto;
    max-width: 880px;
  }
}
@media(min-width: 1200px) {
  .hero-banner .hero-slider .column:nth-child(1) {
    width: 53%;
  }
  .hero-banner .hero-slider .column:nth-child(2) {
    width: 47%;
  }
  .hero-banner .hero-slider .content {
    max-width: 630px;
    text-align: left;
    padding: 60px 40px 20%;
  }
  .hero-banner .hero-slider .content.show-apps {
    padding-bottom: 12%;
  }
  .hero-banner .hero-slider .social-apps {
    justify-content: flex-start;
  }
  .hero-banner .hero-slider h2 .logo {
    display: inline-block;
  }
  .hero-banner .hero-slider .image-holder {
    padding: 0;
  }
  .hero-banner .hero-slider .slick-dots button {
    background-color: rgba(0,0,0,0.12);
  }
}
/* hero banner 02 style */
.hero-banner-02 {
  overflow: hidden;
  background: #466ad8;
  display: flex;
  align-items: flex-end;
  padding: 125px 0 45px;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
}
@media (min-width: 768px) {
  .hero-banner-02 {
    font-size: 18px;
    padding: 175px 0 28px;
  }
}
@media (min-width: 1024px) {
  .hero-banner-02 {
    font-size: 21px;
    font-weight: 600;
  }
}
@media (min-width: 1200px) {
  .hero-banner-02 {
    font-size: 24px;
  }
}

.hero-banner-02 .container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hero-banner-02 .image-holder {
  width: 100%;
  max-width: 500px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .hero-banner-02 .image-holder {
    width: 45%;
    max-width: inherit;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .hero-banner-02 .image-holder {
    width: 37.6%;
  }
}

.hero-banner-02 .image-wrap {
  margin-left: -15px;
}
@media (min-width: 1200px) {
  .hero-banner-02 .image-wrap {
    margin-left: -20px;
  }
}
@media (min-width: 1440px) {
  .hero-banner-02 .image-wrap {
    margin-left: calc((100vw - 1336px) / -2);
  }
}
/* @media (min-width: 1640px) {
  .hero-banner-02 .image-wrap {
    margin-left: calc((100vw - 1336px) / -2);
  }
} */

.hero-banner-02 .textbox {
  width: 100%;
  display: flex;
}
@media (min-width: 768px) {
  .hero-banner-02 .textbox {
    width: 49.4%;
    padding: 0 0 50px;
  }
}
@media (min-width: 1024px) {
  .hero-banner-02 .textbox {
    padding: 30px 0 110px;
  }
}

.hero-banner-02 .text-holder {
  align-self: center;
}
@media (min-width: 1200px) {
  .hero-banner-02 .text-holder {
    padding-right: 5%;
  }
}

.hero-banner-02 h1 {
  line-height: 1.1;
  margin: 0 0 17px;
}
@media (min-width: 768px) {
  .hero-banner-02 h1 {
    margin: 0 0 25px;
  }
}
@media (min-width: 1024px) {
  .hero-banner-02 h1 {
    margin: 0 0 35px;
  }
}
@media (min-width: 1200px) {
  .hero-banner-02 h1 {
    margin: 0 0 50px;
    letter-spacing: -2px;
  }
}
@media (min-width: 1440px) {
  .hero-banner-02 h1, .hero-banner-02 .h1 {
    font-size: 72px;
  }
}
@media (min-width: 1640px) {
  .hero-banner-02 h1, .hero-banner-02 .h1 {
    font-size: 84px;
  }
}

.hero-banner-02 h1 span {
  color: var(--neutral);
}
.hero-banner-02 p {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .hero-banner-02 p {
    margin: 0 0 30px;
  }
}
.services {
  padding: 50px 0;
}
.services .section-header {
  margin-bottom: 30px;
  text-align: center;
}
.services .section-header h2 {
  color: var(--blue-500);
  margin-bottom: 15px;
}
.services .section-header .logo {
  display: block;
  max-width: 182px;
  margin: 0 auto;
}
.services .section-header .logo img {
  width: 100%;
}

.services .holder {
  background-color: var(--blue-500);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.services .holder .read-more {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  height: 96px;
  width: 96px;
  border-radius: 100%;
  background-color: var(--blue-900);
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--neutral);
  flex-flow: column wrap;
  font-weight: 700;
  line-height: 1.2; 
  gap: 5px;
}
.services .holder .read-more span {
  display: block;
}
.services .holder .read-more .icon {
  line-height: 0;
}

.services .account-boxes {
  color: var(--neutral);
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  padding: 30px 25px;
}
.services .account-boxes .heading-wrap .logo {
  margin: 0 auto;
}
.services .account-boxes .heading-wrap {
  text-align: center;
}
.services .account-boxes .title h3 {
  color: var(--neutral);
}
.services .account-boxes .features-list {
  margin-top: 35px;
}
.services .account-boxes .features-list li {
  padding: 0 10px 30px 30px;
  position: relative;
}
.services .account-boxes .features-list li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 24C13.5759 24 15.1363 23.6896 16.5922 23.0866C18.0481 22.4835 19.371 21.5996 20.4853 20.4853C21.5996 19.371 22.4835 18.0481 23.0866 16.5922C23.6896 15.1363 24 13.5759 24 12C24 10.4241 23.6896 8.86371 23.0866 7.4078C22.4835 5.95189 21.5996 4.62902 20.4853 3.51472C19.371 2.40042 18.0481 1.5165 16.5922 0.913445C15.1363 0.310389 13.5759 -2.34822e-08 12 0C8.8174 4.74244e-08 5.76516 1.26428 3.51472 3.51472C1.26428 5.76515 0 8.8174 0 12C0 15.1826 1.26428 18.2348 3.51472 20.4853C5.76516 22.7357 8.8174 24 12 24ZM11.6907 16.8533L18.3573 8.85333L16.3093 7.14667L10.576 14.0253L7.60933 11.0573L5.724 12.9427L9.724 16.9427L10.756 17.9747L11.6907 16.8533Z' fill='%2363E3BB'/%3E%3C/svg%3E%0A");
}
.services .account-boxes .features-list .title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 800;
  display: block;
  margin-bottom: 5px;
}
.services .account-boxes .cta_button {
  display: block;
}

.services .remittance-account {
  background-color: var(--green-500);
  border-radius: 20px;
}
.services .remittance-account .cta_button {
  color: var(--green-500);
}
/* .services .remittance-account .cta_button:hover {
  color: var(--neutral);
} */
.services .remittance-account .heading-wrap .logo {
  max-width: 120px;
}
.services .wallet-account .heading-wrap .logo {
  max-width: 120px;
}


@media(min-width: 768px) {
  .services .section-header .logo {
    display: inline-block;
    min-width: 252px;
  }
}
@media(min-width: 992px) {
  .services {
    padding: 70px 0;
  }
  .services .section-header .logo {
    min-width: 320px;
  }
  .services .holder {
    border-radius: 46px;
    display: flex;
    flex-flow: row nowrap;
  }
  .services .account-boxes {
    padding: 50px 35px;
    width: 50%;
  }
  .services .account-boxes .heading-wrap {
    display: flex;
    flex-flow: row nowrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    text-align: left;
  }
  .services .account-boxes .heading-wrap .title {
    padding-right: 30px;
    width: 77%;
  }
  .services .account-boxes .heading-wrap .logo {
    width: 33%;
  }
  .services .account-boxes .text {
    max-width: 270px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 90px;
  }
  .services .remittance-account .heading .logo {
    margin: 10px 0 0 -80px;
  }
  .services .wallet-account .heading .logo {
    margin: 10px 0 0 10px;
  }
  .services .account-boxes .features-list .title {
    font-size: 20px;
    line-height: 24px;
  }
  .services .holder .read-more {
    display: flex;
  }
}
@media(min-width: 1200px) {
  .services {
    padding: 80px 0;
  }
  .services .remittance-account {
    padding: 40px 35px 40px;
  }
  .services .wallet-account {
    padding: 40px 35px 40px;
  }
  .services .wallet-account .text {
    margin-top: -7px;
  }
}
@media(min-width: 1336px) {
  .services .remittance-account {
    padding-left: 43px;
  }
  .services .wallet-account {
    padding-left: 48px;
  }
}
.content-with-image {
  padding: 50px 0;
}
.content-with-image .holder {
  background-color: var(--blue-50);
  border-radius: 20px;
}
.content-with-image .content {
  padding: 30px 20px 40px;
}
.content-with-image .content h2 {
  margin-bottom: 20px;
}
.content-with-image .content h2 span {
  display: block;
}
.content-with-image .content h2 span:nth-child(2) {
  color: var(--blue-500);
}
.content-with-image .content h2 span:nth-child(3) {
  color: var(--green-500);
}
.content-with-image .image-holder {
  background-color: var(--blue-500);
  border-radius: 0 46px 46px 0;
}
.content-with-image .image-holder img {
  margin: -50px 0 0 0;
}


@media (min-width: 768px) {
  .content-with-image .content {
    padding: 40px;
  }
}
@media(min-width: 992px) {
  .content-with-image .holder {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }
  .content-with-image .content {
    padding: 40px;
    width: 52%;
  }
  .content-with-image .image-holder {
    width: 48%;
  }
  .content-with-image .image-holder img {
    margin: -80px 0 0;
  }
}
@media (min-width: 1280px) {
  .content-with-image .content {
    padding: 40px 45px;
  }
}
.media {
  padding: 50px 0;
}
.media .video-holder {
  border-radius: 20px;
  overflow: hidden;
}

.media .oembed_container, .media .embed_container {
  display: inline-block;
  height: 100%;
  position: relative;
  width: 100%;
}
.media .oembed_container .iframe_wrapper > * {
  height: 100%;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.media .iframe_wrapper {
  height: 0;
  padding-bottom: 56.25%;
  padding-top: 25px;
  position: relative;
}
.media .embed_container iframe {
  left: 0;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media(min-width: 992px) {
  .media {
    padding: 70px 0;
  }
}
.about {
  padding: 50px 0;
}
.about .image-holder {
  margin: 0 auto 30px;
  max-width: 950px;
}
.about .text {
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin: 0 auto;
  max-width: 680px;
}

@media(min-width: 992px) {
  .about {
    padding: 70px 0;
  }
  .about .image-holder {
    margin-bottom: 52px;
  }
}
@media(min-width: 1200px) {
  .about {
    padding-top: 80px;
  }
  .about .image-holder {
    margin-bottom: 52px;
  }
}
.info {
  padding: 20px 0;
}
.info .holder {
  max-width: 1204px;
  padding: 30px 0;
  margin-right: 30px;
  position: relative;
  z-index: 1;
}
.info .holder:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -9999px;
  background-color: var(--blue-500);
  border-radius: 0 300px 300px 0;
  z-index: -1;
}
.info .container {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  max-width: 954px;
  margin: 0 0 0 auto;
}
.info .icon {
  display: inline-block;
  margin-right: 15px;
  line-height: 0;
}
.info .icon svg {
  height: 51px;
  width: 51px;
}
.info .text {
  color: var(--neutral);
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  padding-right: 60px;
  max-width: 680px;
}

@media(min-width: 768px) {
  .info {
    padding: 40px 0;
  }
}
@media(min-width: 992px) {
  .info .text {
    font-size: 20px;
    line-height: 28px;
    padding: 0;
  }
  .info .icon {
    margin-right: 25px;
  }
  .info .icon svg {
    height: 76px;
    width: 76px;
  }
}
.partners {
  padding: 50px 0;
}
.partners .touch-device .partners-box {
	width: 600px;
}
.partners .partners-box {
	overflow: hidden;
	margin: 0 0 40px;
	width: 100%;
}
.partners .partners-box .partners-wrap {
	width: 99999px;
	display: flex;
  align-items: center;
  margin: 0 -30px;
}
.partners .partners-box .image {
	padding: 0 30px;
}

@media(min-width: 768px) {
  .partners {
    padding-bottom: 80px;
  }
}
@media(min-width: 1200px) {
  .partners {
    padding-bottom: 100px;
  }
}
.explore .content-holder {
  background: linear-gradient(135deg, #253872 0%,#466ad8 100%);
  padding: 50px 0 0;
}

.explore .content-holder .row {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  margin: 0 -20px;
}
.explore .content-holder .column {
  padding: 0 20px;
  width: 100%;
}
.explore .content {
  padding: 0 0 50px;
  text-align: center;
}
.explore .content h2 {
  color: var(--neutral); 
  margin-bottom: 30px;
}
.explore .text-holder {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.explore .text-holder .icon {
  display: inline-block;
  margin-right: 15px;
  line-height: 0;
}
.explore .text-holder .icon svg {
  height: 41px;
  width: 41px;
}
.explore .text-holder {
  max-width: 350px;
  margin: 0 auto;
}
.explore .text-holder .text {
  color: var(--neutral);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
}
.explore .image-holder {
  line-height: 0;
  max-width: 550px;
  margin: 0 auto;
}

.explore .touch-device .text-box {
	width: 600px;
}
.explore .text-box {
  background-color: var(--blue-500);
	overflow: hidden;
	padding: 20px 0;
	width: 100%;
}
.explore .text-box .text-wrap {
	width: 99999px;
	display: flex;
  align-items: center;
  margin: 0 -30px;
}
.explore .text-box .text {
  color: var(--neutral);
  font-size: 22px;
  line-height: 28px;
  font-weight: 900;
	padding: 0 30px;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .explore .content h2 {
    margin-bottom: 50px;
  }
  .explore .content-holder .column {
    width: 50%;
  }
  .explore .content-holder {
    padding: 60px 0 0;
  }
  .explore .content {
    padding: 0 0 70px;
    text-align: left;
  }
  .explore .text-holder {
    margin: 0;
    max-width: 400px;
  }
  .explore .text-holder .text {
    font-size: 22px;
    line-height: 28px;
  }
  .explore .text-holder .icon {
    margin-right: 20px;
  }
  .explore .text-holder .icon svg {
    height: 56px;
    width: 56px;
  }
  .explore .text-box .text {
    font-size: 26px;
    line-height: 34px;
  }
}
@media (min-width: 1200px) {
  .explore .content {
    padding: 0 0 100px;
  }
  .explore .text-holder .text {
    font-size: 24px;
    line-height: 30px;
  }
  .explore .text-box .text {
    font-size: 30px;
    line-height: 38px;
  }
}
.faq {
  padding: 50px 0;
}
.faq h2 {
  margin-bottom: 30px;
}
.faq .accordion {
  background-color: var(--blue-50);
  border-radius: 20px;
  position: relative;
  margin: 0 0 20px;
}
.faq .accordion:last-child {
  border-bottom: 0;
}
.faq .accordion .accordion__title {
  cursor: pointer;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  padding: 20px 70px 20px 20px;
  position: relative;
  margin: 0;
}
.faq .accordion .accordion__title.active .icon {
  transform: translateY(-50%) rotate(180deg);
}
.faq .accordion .accordion__title .icon {
  height: 35px;
  position: absolute;
  width: 35px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.faq .accordion .accordion__title .icon svg {
  width: 100%;
  height: 100%;
}
.faq .accordion .accordion__content {
  display: none;
  padding: 15px;
}


@media(min-width: 768px) {
  .faq .accordion .accordion__title {
    font-size: 20px;
    line-height: 26px;
    padding: 20px 70px 20px 25px;
  }
  .faq .accordion .accordion__content {
    padding: 20px;
  }
}
@media(min-width: 992px) {
  .faq {
    padding: 80px 0;
  }
  .faq .accordion .accordion__title {
    font-size: 22px;
    line-height: 28px;
    padding: 25px 70px 25px 25px;
  }
  .faq .accordion .accordion__content {
    padding: 25px;
  }
}
.get-started {
  padding-bottom: 50px;
}
.get-started .holder {
  text-align: center;
  padding: 60px 20px 0;
  position: relative;
}
.get-started .holder:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--blue-50);
  border-radius: 20px;
  height: 90%;
  z-index: -1;
}
.get-started h2 {
  margin-bottom: 10px;
}
.get-started .logo {
  max-width: 400px;
  margin: 0 auto; 
}
.get-started .logo img {
  width: 100%;
}
.get-started .social-apps {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.get-started .google-app, .get-started .apple-app {
  max-width: 161px;
}
.get-started .image-holder {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.get-started .image-holder:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: -20px;
  background-color: var(--blue-500);
  border-radius: 300px 0 20px 0;
  height: 30%;
  z-index: -1;
}
.get-started .text-holder {
  color: var(--neutral);
  max-width: 1672px;
  padding: 25px 40px 25px 0;
  margin: 30px 0 0;
  position: relative;
  z-index: 1;
}
.get-started .text-holder:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: -9999px;
  background-color: var(--green-500);
  border-radius: 0 100px 100px 0;
  z-index: -1;
}
.get-started .text-holder .text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

@media(min-width: 992px) {
  .get-started {
    padding-bottom: 80px;
  }
  .get-started .holder {
    margin-right: 35px;
  }
  .get-started .text-holder {
    margin-top: 0;
  }
  .get-started .text-holder .text {
    font-size: 22px;
    line-height: 30px;
  }
}
@media(min-width: 1200px) {
  .get-started {
    padding-bottom: 100px;
  }
  .get-started .text-holder .text {
    font-size: 26px;
    line-height: 34px;
  }
}
.content-banner {
  background-color: var(--blue-900);
  color: var(--neutral);
  padding: 60px 0;
}
.content-banner h1 {
  color: var(--neutral);
}
.content-banner .text {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
.content-banner .text .icon {
  display: inline-block;
  line-height: 0;
  margin-right: 15px;
}

@media (min-width: 1200px) {
  .content-banner .text {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 992px) {
  .content-banner .text {
    font-size: 20px;
    line-height: 28px;
  }
}
.content-list {
  padding: 80px 0;
}
.content-list .list li {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  padding-bottom: 20px;
}
.content-list .list li:last-child {
  padding-bottom: 0;
}
.content-list .list li a:hover {
  text-decoration: underline;
}


@media(min-width: 768px) {
  .content-list {
    padding: 100px 0;
  }
}
@media(min-width: 992px) {
  .content-list {
    padding: 120px 0;
  }
  .content-list .list li {
    font-size: 20px;
    line-height: 26px;
    padding-bottom: 30px;
  }
}
@media(min-width: 1200px) {
  .content-list {
    padding: 140px 0;
  }
  .content-list .list li {
    font-size: 22px;
    line-height: 28px;
  }
}
.contact {
  background-color: var(--blue-50);
  padding: 60px 0;
}
.contact h2 {
  color: var(--blue-500);
  max-width: 590px;
  margin: 0 auto 20px;
}
.contact .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.contact .column {
  padding: 0 15px;
  width: 100%;
} 
.contact .contact-details .number, .contact .contact-details .whatsapp-number, .contact .contact-details .timing-details {
  padding: 0 0 30px 40px;
  position: relative;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: var(--blue-500);
}
.contact .contact-details {
  max-width: 590px;
  margin: 50px auto 0;
}
.contact .contact-details .number .icon, .contact .contact-details .whatsapp-number .icon, .contact .contact-details .timing-details .icon {
  position: absolute;
  top: 0;
  left: 0;
  display: inline;
  line-height: 0;
}
.contact .contact-details .number a, .contact .contact-details .whatsapp-number a {
  display: inline-block;
}
.contact .contact-details .number a:hover, .contact .contact-details .whatsapp-number a:hover {
  text-decoration: underline;
}
.contact .form-holder {
  max-width: 590px;
  margin: 0 auto;
}

.contact form .hs-submit {
  text-align: right;
}

@media(min-width: 992px) {
  .contact .column:nth-child(1) {
    width: 57%;
  }
  .contact .column:nth-child(2) {
    width: 43%;
  }
  .contact h2 {
    margin: 0 0 20px;
  }
  .contact .form-holder, .contact .contact-details {
    margin: 0;
  }
}
/* categories module style */
.categories-block {
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .categories-block {
    padding: 70px 0;
  }
}
@media (min-width: 1024px) {
  .categories-block {
    padding: 80px 0;
  }
}
@media (min-width: 1200px) {
  .categories-block {
    padding: 100px 0;
  }
}

.categories-block .container {
  max-width: 1480px;
}

@media (min-width: 1440px) {
  .categories-block .section-head h2, .categories-block .section-head .h2 {
    font-size: 57px;
    line-height: 1.114;
  }
}
@media (min-width: 1640px) {
  .categories-block .section-head h2, .categories-block .section-head .h2 {
    font-size: 64px;
  }
}

.categories-slider {
  margin: 0 -10px;
}
@media (min-width: 1440px) {
  .categories-slider {
    margin: 0 -35px;
  }
}
.categories-slider .slick-list {
  overflow: visible;
}
@media (min-width: 1024px) {
  .categories-slider .slick-list {
    padding-right: 100px;
  }
}
@media (min-width: 1440px) {
  .categories-slider .slick-list {
    padding-right: 380px;
  }
}
.categories-slider .slick-track {
  display: flex;
}
.categories-slider .slick-slide {
  height: auto;
  padding: 0 10px;
}
@media (min-width: 1440px) {
  .categories-slider .slick-slide {
    padding: 0 35px;
  }
}

.category-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #466ad8;
  border-radius: 20px;
  padding: 25px 20px;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .category-box {
    font-size: 18px;
    font-weight: 600;
    padding: 30px 25px;
    border-radius: 35px;
  }
}
@media (min-width: 1200px) {
  .category-box {
    font-size: 20px;
    padding: 40px 30px;
    border-radius: 45px;
  }
}
@media (min-width: 1440px) {
  .category-box {
    padding: 50px 60px;
  }
}
.category-box .icon {
  width: 120px;
  height: 120px;
  background: #f2f5fc;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -8px -8px -47px auto;
}
@media (min-width: 1024px) {
  .category-box .icon {
    width: 150px;
    height: 150px;
  }
}
.category-box .icon img {
  transform: scale(0.75);
}
.category-box .title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 25px;
  display: block;
  padding-right: 130px;
}
@media (min-width: 1024px) {
  .category-box .title {
    margin: 0 0 37px;
    padding-right: 160px;
  }
}
.category-box p {
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .category-box p {
    margin: 0 0 30px;
  }
}
.category-box.dark-blue {
  background: #112151;
}
.category-box.dark-blue .cta_button {
  color: #112151;
}
.category-box.green {
  background: #00B27a;
}
.category-box.green .cta_button {
  color: #00B27a;
}
/* experience module style */
.experience-block {
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .experience-block {
    padding: 70px 0;
  }
}
@media (min-width: 1024px) {
  .experience-block {
    padding: 80px 0;
  }
}
@media (min-width: 1200px) {
  .experience-block {
    padding: 100px 0;
  }
}

.experience-block .container {
  max-width: 1480px;
}

@media (min-width: 1440px) {
  .experience-block .section-head h2, .experience-block .section-head .h2 {
    font-size: 57px;
    line-height: 1.114;
  }
}
@media (min-width: 1640px) {
  .experience-block .section-head h2, .experience-block .section-head .h2 {
    font-size: 64px;
  }
} 

.experience-block .section-head h2 img {
  width: 200px;
}
@media (min-width: 768px) {
  .experience-block .section-head h2 img {
    width: 240px;
  }
}
@media (min-width: 1024px) {
  .experience-block .section-head h2 img {
    width: 265px;
  }
}
@media (min-width: 1200px) {
  .experience-block .section-head h2 img {
    width: 310px;
  }
}
@media (min-width: 1440px) {
  .experience-block .section-head h2 img {
    width: 392px;
  }
}

.experience-block .experience-slider {
  margin: 0 -10px;
}
@media (min-width: 1440px) {
  .experience-block .experience-slider {
    margin: 0 -25px;
  }
}

.experience-block .experience-slider .slick-list {
  overflow: visible;
}
@media (min-width: 1024px) {
  .videos-block .experience-slider .slick-list {
    padding-right: 100px;
  }
}
@media (min-width: 1440px) {
  .experience-block .experience-slider .slick-list {
    padding-right: 180px;
  }
}

.experience-block .experience-slider .slick-track {
  display: flex;
}
.experience-block .experience-slider .slick-slide {
  height: auto;
  padding: 0 10px;
}
@media (min-width: 1440px) {
  .experience-block .experience-slider .slick-slide {
    padding: 0 25px;
  }
}

.experience-post {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #466ad8;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
.experience-post .image-holder {
  position: relative;
  overflow: hidden;
}
.experience-post .image-holder:before {
  content: "";
  display: block;
  padding-top: 54.1%;
}
.experience-post .image-holder img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experience-post .cat-tag {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 13px;
  padding: 8px 15px;
  border-radius: 25px;
  background: #466ad8;
  color: #fff;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .experience-post .cat-tag {
    left: 25px;
    top: 25px;
    font-size: 14px;
    padding: 10px 20px;
  }
}
.experience-post .textbox {
  overflow: hidden;
  padding: 20px;
}
@media (min-width: 1440px) {
  .experience-post .textbox {
    padding: 20px 30px;
  }
}
.experience-post h4 {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 15px;
}
@media (min-width: 1200px) {
  .experience-post h4 {
    font-size: 20px;
  }
}
.experience-post h4 a {
  color: currentColor;
  transition: 0.3s;
}
.experience-post h4 a:hover {
  color: #466ad8;
}
.experience-post p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.experience-post .post-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 0 20px 20px;
}
@media (min-width: 1440px) {
  .experience-post .post-foot {
    padding: 0 30px 30px;
  }
}
.experience-post .post-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.experience-post .avatar {
  width: 59px;
  height: 59px;
  border-radius: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.experience-post .avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.experience-post .author-info {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  font-size: 14px;
}
@media (min-width: 1440px) {
  .experience-post .author-info {
    font-size: 16px;
  }
}
.experience-post .author-info .name {
  display: block;
  font-weight: 700;
  color: #112151;
  margin: 0 0 2px;
}
.experience-post .author-info .date {
  display: block;
  color: #466ad8;
  opacity: 0.4;
  font-weight: 600;
}
.experience-post .button {
  font-size: 14px;
  flex-shrink: 0;
}
.experience-post.green .cat-tag {
  background: #00B27a;
}
.experience-post.dark-blue .cat-tag {
  background: #112151;
}
/* discover block style */
.discover-block {
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .discover-block {
    padding: 70px 0;
  }
}
@media (min-width: 1024px) {
  .discover-block {
    padding: 80px 0;
  }
}
@media (min-width: 1200px) {
  .discover-block {
    padding: 100px 0;
  }
}

.discover-block .container {
  max-width: 1550px;
}
.discover-holder {
  background: #00B27a;
  border-radius: 25px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  margin-top: 25px;
}
@media (min-width: 1024px) {
  .discover-holder {
    flex-direction: row;
    border-radius: 40px;
    margin-top: 0;
  }
}
.discover-holder .textbox {
  width: 100%;
  color: #f2f5fc;
  background: #112151;
  border-radius: 25px;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .discover-holder .textbox {
    padding: 50px 30px;
  }
}
@media (min-width: 1024px) {
  .discover-holder .textbox {
    width: 48.55%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
  }
}
@media (min-width: 1024px) {
  .discover-holder .text-holder {
    max-width: 495px;
  }
}
.discover-holder .logo-box {
  margin: 0 0 30px;
}
.discover-holder .logo-box img {
  max-width: 310px;
}
@media (min-width: 768px) {
  .discover-holder .logo-box img {
    max-width: 400px;
  }
}
@media (min-width: 1024px) {
  .discover-holder .logo-box img {
    max-width: 100%;
  }
}
.discover-holder h2 {
  color: #fff;
  font-weight: 600;
  margin: 0 0 10px;
}
@media (min-width: 1440px) {
  .discover-holder h2, .discover-holder .h2 {
    font-size: 57px;
    line-height: 1.114;
  }
}
@media (min-width: 1640px) {
  .discover-holder h2, .discover-holder .h2 {
    font-size: 64px;
  }
}
.discover-holder .img-holder {
  width: 100%;
}
@media (min-width: 1024px) {
  .discover-holder .img-holder {
    width: 45%;
  }
}
.discover-holder .img-wrap {
  margin-top: -44px;
  line-height: 0;
}
.tags-block {
  overflow: hidden;
  position: relative;
  padding: 35px 0;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .tags-block {
    margin-bottom: 75px;
  }
}
@media (min-width: 1024px) {
  .tags-block {
    margin-bottom: 110px;
  }
}
@media (min-width: 1200px) {
  .tags-block {
    margin-bottom: 135px;
  }
}
@media (min-width: 1440px) {
  .tags-block {
    margin-bottom: 170px;
  }
}

.tags-block:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  background: #f2f5fc;
  border-radius: 0;
}
@media (min-width: 768px) {
  .tags-block:before {
    right: 20px;
    border-radius: 0 80px 80px 0;
  }
}
@media (min-width: 1440px) {
  .tags-block:before {
    right: 35px;
  }
}

.tags-block .container {
  max-width: 1480px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (min-width: 1200px) {
  .tags-block .container {
    gap: 30px;
    flex-wrap: wrap;
  }
}
@media (min-width: 1440px) {
  .tags-block .container {
    gap: 50px;
  }
}
@media (min-width: 1640px) {
  .tags-block .container {
    gap: 90px;
  }
}
.tags-block .section-head {
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  .tags-block .section-head {
    margin-bottom: 0;
  }
}

@media (min-width: 1440px) {
  .tags-block .section-head h2, .tags-block .section-head .h2 {
    font-size: 57px;
    line-height: 1.114;
  }
}
@media (min-width: 1640px) {
  .tags-block .section-head h2, .tags-block .section-head .h2 {
    font-size: 64px;
  }
}

 
.tags-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
}
@media (min-width: 768px) {
  .tags-list {
    font-size: 14px;
    font-weight: 700;
    padding-right: 40px;
  }
}
@media (min-width: 1024px) {
  .tags-list {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .tags-list {
    width: auto;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .tags-list {
    gap: 20px;
    font-size: 20px;
    padding-right: 50px;
  }
}
@media (min-width: 1640px) {
  .tags-list {
    gap: 35px;
    padding-right: 0;
  }
}
.tags-list li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  border-radius: 30px;
}
@media (min-width: 1024px) {
  .tags-list li a {
    padding: 13px 25px;
  }
}
@media (min-width: 1440px) {
  .tags-list li a {
    padding: 17px 35px;
  }
}
@media (min-width: 1640px) {
  .tags-list li a {
    padding: 17px 45px;
  }
}
.tags-list li a {
  background: #466ad8;
}
.tags-list li a.all-blog {
  background: #63e3bb;
}

.tags-list li:nth-child(2) {
  order: 4;
}
.tags-list li:nth-child(3) {
  order: 3;
}
.tags-list li:nth-child(4) {
  order: 2;
}
.tags-list li:nth-child(4) a {
  background: #112151;
}
.tags-list li:nth-child(3) a {
  background: #00B27a;
}


.learning-block {
  background: #f2f5fc;
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .learning-block {
    padding: 70px 0;
  }
}
@media (min-width: 1024px) {
  .learning-block {
    padding: 80px 0 130px;
  }
}
@media (min-width: 1200px) {
  .learning-block {
    padding: 100px 0;
  }
}
.learning-block .learning-holder .post-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.main-posts {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 25px;
}
@media (min-width: 768px) {
  .main-posts {
    margin: 0 0 40px;
  }
}
@media (min-width: 1024px) {
  .main-posts {
    width: 66.666%;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .main-posts {
    gap: 30px;
  }
}
@media (min-width: 1440px) {
  .main-posts {
    gap: 60px;
  }
}

.featured-post {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .featured-post {
    width: calc(50% - 7px);
  }
}
@media (min-width: 1200px) {
  .featured-post {
    width: calc(50% - 15px);
  }
}
@media (min-width: 1440px) {
  .featured-post {
    width: calc(50% - 30px);
  }
}
.featured-post .image-holder {
  position: relative;
  overflow: hidden;
}
.featured-post .image-holder:before {
  content: "";
  display: block;
  padding-top: 63%;
}
.featured-post .image-holder img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-post .cat-tag {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 13px;
  padding: 8px 15px;
  border-radius: 25px;
  background: #466ad8;
  color: #fff;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .featured-post .cat-tag {
    left: 25px;
    top: 25px;
    font-size: 14px;
    padding: 10px 20px;
  }
}
.featured-post .textbox {
  overflow: hidden;
  padding: 20px;
}
@media (min-width: 1440px) {
  .featured-post .textbox {
    padding: 20px 30px;
  }
}
.featured-post h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 15px;
}
@media (min-width: 1200px) {
  .featured-post h4 {
    font-size: 20px;
  }
}
.featured-post h4 a {
  color: currentColor;
  transition: 0.3s;
}
.featured-post h4 a:hover {
  color: #466ad8;
}
.featured-post p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: inline;
  margin: 0;
}
.featured-post p, .featured-post span {
  font-size: 16px !important;
}
.featured-post .post-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 0 20px 20px;
}
@media (min-width: 1440px) {
  .featured-post .post-foot {
    padding: 0 30px 30px;
  }
}
.featured-post .post-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.featured-post .avatar {
  width: 59px;
  height: 59px;
  border-radius: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.featured-post .avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.featured-post .author-info {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  font-size: 14px;
}
@media (min-width: 1440px) {
  .featured-post .author-info {
    font-size: 16px;
  }
}
.featured-post .author-info .name {
  display: block;
  font-weight: 700;
  color: #112151;
  margin: 0 0 2px;
}
.featured-post .author-info .date {
  display: block;
  color: #466ad8;
  opacity: 0.4;
  font-weight: 600;
}
.featured-post .button {
  font-size: 14px;
  flex-shrink: 0;
}
.featured-post.finance .cat-tag {
  background: #466ad8;
}
.featured-post.analysis .cat-tag {
  background: #00B27a;
}
.featured-post.remittance .cat-tag {
  background: #112151;
}

.post-column {
  width: 100%;
}
@media (min-width: 1024px) {
  .post-column {
    width: 33.333%;
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .post-column {
    padding-left: 30px;
  }
}
@media (min-width: 1440px) {
  .post-column {
    padding-left: 60px;
  }
}

.related-slider {
  padding-bottom: 60px;
  margin: 0 -15px;
}
@media (min-width: 1024px) {
  .related-slider {
    margin: -16px 0;
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .related-slider {
    margin: -22px 0;
  }
}
@media (min-width: 1440px) {
  .related-slider {
    margin: -30px 0;
  }
}
.related-slider .slick-arrow {
  position: absolute;
  bottom: 0;
}
@media (min-width: 1024px) {
  .related-slider .slick-arrow {
    bottom: auto;
  }
}
.related-slider .slick-arrow.slick-prev {
  left: calc(50% - 45px);
}
@media (min-width: 1024px) {
  .related-slider .slick-arrow.slick-prev {
    top: -70px;
    left: auto;
    right: 0;
    transform: rotate(-90deg);
  }
}
.related-slider .slick-arrow.slick-next {
  right: calc(50% - 45px);
}
@media (min-width: 1024px) {
  .related-slider .slick-arrow.slick-next {
    bottom: -70px;
    right: 0;
    transform: rotate(90deg);
  }
}

.related-post {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-bottom: 2px solid #dee1e6;
}
@media (min-width: 1024px) {
  .related-post {
    padding: 16px 0;
  }
}
@media (min-width: 1200px) {
  .related-post {
    padding: 22px 0;
  }
}
@media (min-width: 1440px) {
  .related-post {
    padding: 30px 0;
  }
}
.related-post .image-holder {
  width: 120px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .related-post .image-holder {
    width: 110px;
  }
}
@media (min-width: 1440px) {
  .related-post .image-holder {
    width: 120px;
  }
}
.related-post .image-holder a {
  height: inherit;
}
.related-post .image-holder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.related-post .textbox {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}
.related-post h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
@media (min-width: 1200px) {
  .related-post h4 {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .related-post h4 {
    font-size: 20px;
  }
}
.related-post h4 a {
  color: currentColor;
  transition: 0.3s;
  display: block;
}
.related-post h4 a:hover {
  color: #466ad8;
}
.related-post .post-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 15px;
  color: #64607d;
}
@media (min-width: 1200px) {
  .related-post .post-meta {
    font-size: 14px;
  }
}
.footer {
  background-color: var(--blue-900);
  color: var(--neutral);
  padding: 50px 0;
  text-align: center;
}
.footer .logo, .footer .links-wrap, .footer .text {
  margin-bottom: 30px;
}
.footer .footer-links {
  margin: 0 -15px 30px;
}
.footer .footer-links li {
  padding: 0 15px 10px;
}
.footer .footer-links li a {
  color: var(--neutral);
}

.footer .social-links {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 0 -8px 30px;
}
.footer .social-links li {
  padding: 0 8px;
  line-height: 0;
}
.footer .text {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}
.footer .content {
  font-size: 14px;
  line-height: 20px;
  border-top: 2px solid var(--neutral);
  text-align: left;
  padding-top: 30px;
}



@media(min-width: 768px) {
  .footer {
    padding: 70px 0;
  }
  .footer .footer-links {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
  }
  .footer .footer-links li {
    padding-bottom: 0;
  }
}
@media(min-width: 992px) {
  .footer {
    padding: 80px 0;
  }
  .footer .logo, .footer .links-wrap, .footer .text {
    margin-bottom: 50px;
  }
  .footer .text {
    font-size: 22px;
    line-height: 28px;
  }
  .footer .content {
    padding-top: 50px;
  }
}
@media(min-width: 1200px) {
  .footer {
    padding: 100px 0;
  }
  .footer .links-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
  }
  .footer .social-links {
    margin-left: 30px;
  }
  .footer .text {
    font-size: 24px;
    line-height: 30px;
  }
}
/* 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;
  }
}