/* 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.)
*/

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: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #083370;
  font-weight: 300;
  overflow-wrap: break-word;
}

/* Paragraphs */
p {
  margin: 0 0 1.4rem;
}

/* Anchors */
a {
  cursor: pointer;
}

/* Headings */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  color: #083370;
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 20px;
}
h1, .h1 {
  font-size: 40px;
}
h2, .h2 {
  font-size: 36px;
}
h3, .h3 {
  font-size: 30px;
}
h4, .h4 {
  font-size: 26px;
}
h5, .h5 {
  font-size: 22px;
}
h6, .h6 {
  font-size: 18px;
}

@media(min-width: 992px) {
  h1, .h1 {
    font-size: 44px;
  }
}
@media(min-width: 1200px) {
  h1, .h1 {
    font-size: 48px;
  }
  h2, .h2 {
    font-size: 40px;
  }
}
@media(min-width: 1400px) {
  h1, .h1 {
    font-size: 54px;
  }
}

/* Lists */
ul,
ol {
  margin: 0 0 1.4rem;
}

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

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

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

code {
  vertical-align: bottom;
}

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

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

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

.container {
  max-width: 1170px;
  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], [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;
  }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* button */
.hs-button, .cta_button {
  background-color: #80bc2c;
  border: 2px solid #80bc2c;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: inherit;
  display: inline-block;
  padding: 12px 25px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.hs-button:hover, .hs-button:focus,
.cta_button:hover, .cta_button:focus {
  background-color: #0452be;
  border-color: #0452be;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.2rem;
  position: relative;
}
.hs-form-field.hs-fieldtype-booleancheckbox {
  margin-bottom: 1rem;
}

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  color: #6a6a6a;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #6a6a6a;
  box-shadow: none;
  outline: none;
  border-radius: 8px;
  font-size: 16px;
  line-height: 20px;
  padding: 12px 24px;
  width: 100% !important;
}

form textarea {
  border-radius: 30px;
  resize: none !important;
  min-height: 194px;
  padding: 20px 22px;
}

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none !important;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSdibGFjaycgaGVpZ2h0PScyNCcgdmlld0JveD0nMCAwIDI0IDI0JyB3aWR0aD0nMjQnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggZD0nTTcgMTBsNSA1IDUtNXonLz48cGF0aCBkPSdNMCAwaDI0djI0SDB6JyBmaWxsPSdub25lJy8+PC9zdmc+);
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 12px;
  padding: 12px 30px 12px 24px;
  text-indent: 0;
}

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

form fieldset.form-columns-2 .hs-form-field:last-child .input {
  margin-right: 0 !important;
}
form fieldset.form-columns-2 .hs-form-field {
  width: 100% !important;
}
@media(min-width: 768px) {
  form fieldset.form-columns-2 .hs-form-field {
    width: 50% !important;
  }
  form fieldset.form-columns-2 .hs-form-field .input {
    margin-right: 15px !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 .inputs-list.hs-error-msgs li {
  margin: 0;
  padding: 0;
}

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: 16px;
  margin: 0 0 1rem;
}

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: #6a6a6a;
}

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

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

/* Submit button */

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

/* checkbox */
form .hs-fieldtype-booleancheckbox .inputs-list li {
  padding: 0;
  margin: 0;
}
form .inputs-list .hs-form-checkbox label, form .inputs-list .hs-form-booleancheckbox label {
  position: relative;
  cursor: pointer;
  padding: 8px 0 0 30px;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
form input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
form input[type="checkbox"] + span::before {
  border: 2px solid #6a6a6a;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 20px; 
}
form input[type="checkbox"] + span::after {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 14px auto;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 8px;
  transform: scale(0);
  transition: all .2s ease-out;
  width: 20px;
}
form input[type="checkbox"]:checked + span::before {
  background-color: #6a6a6a;
}
form input[type="checkbox"]:checked + span::after {
  transform: scale(1);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.217' height='13.264'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='m.707 6.19 5.661 5.66L17.51.707'/%3E%3C/svg%3E");
}

.hs_error_rollup {
  display: none;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
/* 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
*/

/* 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%;
}
/* Header DND sections */
.header .dnd-section {
  padding: 0;
}

/* Header No Navigation */
.header.header--no-navigation {
  background-color: #083370;
  padding: 27px 0;
  text-align: center;
}

.header .logo, .header .logo span, .header .logo a {
  display: inline-block;
  line-height: 1;
}
.demo-module {
  background-color: transparent;
  background-image: linear-gradient(180deg, #001736 0%, #043F91 100%);
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.demo-module .bg-overlay {
  background-color: #01193B;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.11;
  transition: background 0.3s, opacity 0.3s;
  z-index: -1;
}
.demo-module .column {
  margin-bottom: 30px;
}

.demo-module .content, .demo-module .content h1, .demo-module .content h2, .demo-module .content h3, .demo-module .content h4, .demo-module .content h5, .demo-module .content h6 {
  color: #fff;
}
.demo-module .content ul {
  padding-left: 20px;
}
.demo-module .content ul li {
  padding-bottom: 10px;
}
.demo-module .demo-form {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.1);
  padding: 40px 20px;
}
.demo-module .demo-form .text {
  margin-bottom: 30px;
}
.demo-module .demo-form form .hs-submit {
  margin-top: 20px;
  text-align: center;
}
.demo-module .demo-form form .hs-button {
  width: 100%;
}
.demo-module .demo-form form .submitted-message {
  text-align: center;
}

@media(min-width: 768px) {
  .demo-module .demo-form {
    padding: 60px 30px;
  }
}
@media(min-width: 992px) {
  .demo-module .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .demo-module .column {
    padding: 0 15px;
    width: 50%;
    margin: 0;
  }
}
@media(min-width: 1200px) {
  .demo-module .content {
    padding-right: 30px;
  }
}
.core-features {
  padding: 60px 0;
}
.core-features .section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}
.core-features .section-header h2 {
  position: relative;
  padding-bottom: 15px;
}
.core-features .section-header h2::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 3px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='75' height='3' viewBox='0 0 75 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5H74' stroke='%23E79430' stroke-width='1.5' stroke-linecap='round' stroke-dasharray='4 4'/%3E%3C/svg%3E%0A");
}
.core-features .section-header .button-wrap {
  text-align: center;
  margin-top: 30px;
}
.core-features .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
  padding-top: 40px;
}
.core-features .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.core-features .features {
  background-color: #fff;
  border: 1px solid rgba(106,106,106,0.5);
  border-radius: 16px;
  height: 100%;
  text-align: center;
  padding: 30px 20px;
  transition: all 0.4s ease-in-out;
  display: block;
  text-decoration: none;
}
.core-features .features:hover {
  background-color: rgba(106,106,106,0.1);
}
.core-features .features .image {
  margin-bottom: 13px;
}
.core-features .features .title {
  display: block;
  margin-bottom: 15px;
}
.core-features .features .link-wrap {
  color: #083370;
  font-weight: 600; 
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.core-features .features .link-wrap .icon {
  display: inline-block;
  position: relative;
  top: 2px;
  left: 4px;
}
.core-features .features .link-wrap svg path {
  transition: all 0.4s ease-in-out;
}

@media(min-width: 768px) {
  .core-features {
    padding: 70px 0;
  }
  .core-features .row {
    padding-top: 45px;
  }
  .core-features .column {
    width: 50%;
  }
  .core-features .features {
    padding: 30px;
  }
}
@media(min-width: 992px) {
  .core-features {
    padding: 80px 0;
  }
  .core-features .row {
    padding-top: 65px;
  }
  .core-features .column {
    width: 33.33%;
  }
}
@media(min-width: 1200px) {
  .core-features {
    padding: 100px 0;
  }
}
.partners {
  text-align: center;
  padding: 60px 0;
}
.partners h2 {
  margin-bottom: 30px;
}
.partners .partners-slider {
  padding: 0 60px;
}
.partners .partners-slider .slick-list {
  margin: 0 -20px;
}
.partners .partners-slider .slick-slide {
  padding: 0 20px;
}
.partners .partners-slider .slick-arrow {
  color: #8066eb;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  cursor: pointer;
}
.partners .partners-slider .slick-arrow.arrow-next {
  left: auto;
  right: 10px;
}

@media(min-width: 768px) {
  .partners .partners-slider {
    padding: 0 80px;
  }
}
@media(min-width: 992px) {
  .partners .partners-slider {
    padding: 0 100px;
  }
}
.footer {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.footer .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.footer .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 20%;
}
.footer .logo {
  display: block;
  margin-bottom: 20px;
  max-width: 173px;
}
.footer .content {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #F6FAFF;
  max-width: 168px;
}
.footer h6 {
  font-size: 18px;
  font-weight: 600;
  color: #80BC2C;
  margin-bottom: 30px;
}
.footer ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
}
.footer ul li a {
  color: #F2F5FF;
  text-decoration: none;
}
.footer .copyright {
  margin-top: 40px;
  line-height: 1.4em;
  color: #F6FAFF;
}
.footer .social-links {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -8px;
}
.footer .social-links li {
  padding: 0 8px;
}
.footer .social-links li a {
  background-color: #80BC2C;
  border-radius: 100%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .social-links li a:hover {
  opacity: .9;
}
.footer .social-links span {
  line-height: 0;
}
.footer .social-links svg {
  width: 22px;
}
.footer .social-links svg path {
  fill: #fff;
}

@media(max-width: 1025px) {
  .footer .column {
    width: 25%;
  }
  .footer .column:nth-child(1) {
    width: 50%;
  }
  .footer .content {
    max-width: 400px;
  }
  .footer h6 {
    margin-bottom: 15px;
  }
}
@media(max-width: 768px) {
  .footer .column {
    width: 50%;
  }
  .footer .column:nth-child(1) {
    width: 100%;
  }
  .footer .content {
    max-width: 100%;
  }
}

@media(min-width: 1025px) {
  .footer .column {
    width: 20%;
  }
}



.footer.footer-lp {
  background-color: #0452be;
  text-align: center;
  padding: 25px 0;
  color: #fff;
}

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