/* Theme base styles */

/* 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 */
.row-fluid > div {
  border-radius: 16px;
}

.row-fluid:has(> div:nth-child(2)) > div:first-child {
  border-radius: 16px 16px 0 0;
}

.row-fluid:has(> div:nth-child(2)) > div:last-child {
  border-radius: 0 0 16px 16px;
}

@media (min-width: 768px) {
  .row-fluid:has(> div:nth-child(2)) > div:first-child {
    border-radius: 16px 0 0 16px;
  }

  .row-fluid:has(> div:nth-child(2)) > div:last-child {
    border-radius: 0 16px 16px 0;
  }

  .row-fluid {
    flex-wrap: nowrap;
    justify-content: center;
  }

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

div.layers-full-width-section,
div.layers-full-width-section > .row-fluid > .dnd-column {
  padding: 0;
}

div.layers-full-width-section > .row-fluid {
  max-width: unset;
}

@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: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

.layers-container {
  padding: 0 24px;
}

.layers-wrapper {
  max-width: 1464px;
  margin: 0 auto;
}

div:not(.hs_cos_wrapper_widget) .layers-container-full > .layers-wrapper {
  max-width: initial;
}

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

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Headings */

.layers-default-module.heading-module.h1 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h1 > .text-module-wrapper > .text-content > p,
.layers-default-module.heading-module.h2 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h2 > .text-module-wrapper > .text-content > p,
.layers-default-module.heading-module.h3 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h3 > .text-module-wrapper > .text-content > p,
.layers-default-module.heading-module.h4 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h4 > .text-module-wrapper > .text-content > p,
.layers-default-module.heading-module.h5 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h5 > .text-module-wrapper > .text-content > p,
h1, .h1:not(.layers-default-module),
h2, .h2:not(.layers-default-module),
h3, .h3:not(.layers-default-module),
h4, .h4:not(.layers-default-module),
h5, .h5:not(.layers-default-module) {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #000000;
  margin-top: 0 !important;
}

.layers-default-module.heading-module.preformatted > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.preformatted > .text-module-wrapper > .text-content > p,
.preformatted {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 740;
  line-height: 17px;
  color: #000000;
}

.layers-default-module.heading-module.paragraph > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.paragraph > .text-module-wrapper > .text-content > p,
p,
ul li,
ol li,
table {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24.35px;
  color: #000000;
}

.layers-default-module.heading-module.h1 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h1 > .text-module-wrapper > .text-content > p,
h1, .h1:not(.layers-default-module) {
  font-size: 64px;
  line-height: 73.28px;
}

.layers-default-module.heading-module.h2 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h2 > .text-module-wrapper > .text-content > p,
h2, .h2:not(.layers-default-module) {
  font-size: 56px;
  line-height: 64.12px;
}

.layers-default-module.heading-module.h3 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h3 > .text-module-wrapper > .text-content > p,
h3, .h3:not(.layers-default-module) {
  font-size: 48px;
  line-height: 54.96px;
}

.layers-default-module.heading-module.h4 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h4 > .text-module-wrapper > .text-content > p,
h4, .h4:not(.layers-default-module) {
  font-size: 30px;
  line-height: 37.2px;
}

.layers-default-module.heading-module.h5 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h5 > .text-module-wrapper > .text-content > p,
h5, .h5:not(.layers-default-module) {
  font-size: 20px;
  line-height: 22.9px;
}

.layers-default-module.heading-module.h6 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h6 > .text-module-wrapper > .text-content > p,
h6, .h6:not(.layers-default-module) {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 29.76px;
  color: #000000;
}

@media (max-width: 767px){
  .layers-default-module.heading-module.h1 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
  .layers-default-module.text-module.h1 > .text-module-wrapper > .text-content > p,
  h1, .h1:not(.layers-default-module) {
    font-size: 38px;
    line-height: 44.08px;
  }

  .layers-default-module.heading-module.h2 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
  .layers-default-module.text-module.h2 > .text-module-wrapper > .text-content > p,
  h2, .h2:not(.layers-default-module) {
    font-size: 32px;
    line-height: 36.64px;
  }

  .layers-default-module.heading-module.h3 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
  .layers-default-module.text-module.h3 > .text-module-wrapper > .text-content > p,
  h3, .h3:not(.layers-default-module) {
    font-size: 28px;
    line-height: 32.06px;
  }

  .layers-default-module.heading-module.h4 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
  .layers-default-module.text-module.h4 > .text-module-wrapper > .text-content > p,
  h4, .h4:not(.layers-default-module) {
    font-size: 24px;
    line-height: 29.76px;
  }

  .layers-default-module.heading-module.h5 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
  .layers-default-module.text-module.h5 > .text-module-wrapper > .text-content > p,
  h5, .h5:not(.layers-default-module) {
    font-size: 18px;
    line-height: 20.61px;
  }
  
  .layers-default-module.heading-module.h6 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
  .layers-default-module.text-module.h6 > .text-module-wrapper > .text-content > p,
  h6, .h6:not(.layers-default-module) {
    font-size: 20px;
    line-height: 24px;
  }
}

/* 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 {
  font-size: 0.583rem;
  word-break: normal;
}
/* Anchors & Buttons */

.hs-button, .hs-button.primary_large, button, .button {
    border-radius: 96px;
    background: #E26B00;
    padding: 16px 48px 16px 48px;
    display: inline-block;
    text-align: center;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 24.35px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.hs-button svg, .hs-button svg path {
    transition: all 0.3s ease-in-out;
} 

.hs-button:hover, .hs-button.primary_large:hover, button:hover, .button:hover,
.hs-button:focus, .hs-button.primary_large:focus, button:focus, .button:focus {
    background: #C15C01;
}

.hs-button:disabled, .hs-button[disabled=disabled],
.hs-button.primary_large:disabled, .hs-button.primary_large[disabled=disabled] {
  opacity: 0.24;
}

.hs-button.primary_small,
.hs-button.secondary_small,
.hs-button.outline_black,
.hs-button.outline_white,
.hs-button.link_black,
.hs-button.link_white {
  padding: 12px 32px;
  font-size: 14px;
  line-height: 19.84px;
}

.hs-button.secondary_small,
.hs-button.secondary_large {
    background: #FFFFFF;
    color: #000000;
}

.hs-button.secondary_small:hover,
.hs-button.secondary_small:focus,
.hs-button.secondary_large:hover,
.hs-button.secondary_large:focus {
    background: #F0F0F0;
}

.hs-button.outline_black,
.hs-button.outline_white {
  border: 1px solid #000000;
  background: transparent;
  color: #000000;
}

.hs-button.outline_black:hover,
.hs-button.outline_white:hover,
.hs-button.outline_black:focus,
.hs-button.outline_white:focus {
  background: #FFECDB;
}

.hs-button.outline_white {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.hs-button.outline_white:hover,
.hs-button.outline_white:focus {
  color: #B05101;
}

.hs-button.link_black,
.hs-button.link_white {
  border-radius: initial;
  background: transparent;
  padding: 0;
  color: #000000;
  line-height: 26.96px;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.hs-button.link_white {
  color: #FFFFFF;
}

.hs-button.link_black:hover,
.hs-button.link_black:focus,
.hs-button.link_white:hover,
.hs-button.link_white:focus {
  color: #E26B00;
}

.hs-button.link_black:hover svg path,
.hs-button.link_black:focus svg path,
.hs-button.link_white:hover svg path,
.hs-button.link_white:focus svg path {
  fill: #E26B00;
}

.rich_text-module-wrapper .rich_text-content .hs_cos_wrapper_type_rich_text a {
  color: #1C1B1F;
  transition: all 0.3s ease-in-out;
}

.rich_text-module-wrapper .rich_text-content .hs_cos_wrapper_type_rich_text a:hover {
  color: #E26B00;
}
/* Labels */
form label,
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,
.form label,
.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 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 24.35px;
  letter-spacing: 0px;
}

form label,
.form label {
  font-weight: 500;
  text-align: left;
  margin-bottom: 12px;
  color: #3D3D3D;
  display: block;
}

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

/* Help text */

form legend,
.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,
.form input[type=text],
.form input[type=search],
.form input[type=email],
.form input[type=password],
.form input[type=tel],
.form input[type=number],
.form input[type=file],
.form select,
.form textarea {
  display: inline-block;
  width: 100%;
  border-radius: 3px;
  padding: 12px;
  border: 1.5px solid #B5B5B5;
  outline: 3px solid transparent;
  background: #FFFFFF;
  font-weight: 400;
  color: #646464;
}

form input[type=text]:focus,
form input[type=search]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form select:focus,
form textarea:focus,
.form input[type=text]:focus,
.form input[type=search]:focus,
.form input[type=email]:focus,
.form input[type=password]:focus,
.form input[type=tel]:focus,
.form input[type=number]:focus,
.form input[type=file]:focus,
.form select:focus,
.form textarea:focus {
  border: 1.5px solid #5C99C7;
  outline: 3px solid #ACCBE2;
}

form textarea,
.form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

form .inputs-list,
.form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li,
.form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span,
.form .inputs-list input,
.form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio],
.form input[type=checkbox],
.form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput,
.form .hs-dateinput {
  position: relative;
}

.hs-dateinput:before,
.form .hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th,
.form .fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button,
.form .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,
.form .fn-date-picker td .pika-button:hover,
.form .fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file],
.form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p,
.form .hs-richtext,
.form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img,
.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,
.legal-consent-container .form .hs-form-booleancheckbox-display > span,
.legal-consent-container .form .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required,
.form .hs-form-required {
  color: #C75454;
}

.hs-input.invalid.error,
.form .hs-input.invalid.error {
  border: 1.5px solid #F06D6D;
  outline: 3px solid #F7B5B5;
}

.no-list.hs-error-msgs.inputs-list li,
.form .no-list.hs-error-msgs.inputs-list li {
  margin: 0;  
}

.field.hs-form-field:has(.hs-error-msg) label,
.field.form .hs-form-field:has(.hs-error-msg) label {
  color: #C75454;
}

.field.hs-form-field .hs-error-msgs.inputs-list .hs-error-msg,
.field.form .hs-form-field .hs-error-msgs.inputs-list .hs-error-msg {
  color: #C75454;
  margin-top: 12px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
}

.field.hs-form-field .hs-error-msgs.inputs-list .hs-error-msg::before,
.field.form .hs-form-field .hs-error-msgs.inputs-list .hs-error-msg::before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(//25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/oub-theme/theme-upgrade/images/input-error.svg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 12px;
}

/* Submit button */

form input[type=submit],
form .hs-button,
.form input[type=submit],
.form .hs-button {
  cursor: pointer;
  font-size: 14px;
  line-height: 19.84px;
  padding: 12px 51px;
  border: none !important;
}

/* Captcha */

.grecaptcha-badge,
.form .grecaptcha-badge {
  margin: 0 auto;
}

/* Layout */
form,
.form {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

form fieldset:last-of-type,
.form fieldset:last-of-type {
  margin-bottom: 5px; 
}

form > .hs_error_rollup,
.form > .hs_error_rollup {
  margin-top: -5px;
}

form > .hs_error_rollup ul li label,
.form > .hs_error_rollup ul li label {
  margin: 0;
}

form .form-columns-1,
form .form-columns-2,
.form .form-columns-1,
.form .form-columns-2 {
  display: grid;
  column-gap: 24px;
  grid-template-columns: 1fr;
}

form .form-columns-2,
.form .form-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

form fieldset.form-columns-1 div.field.hs-form-field,
form fieldset.form-columns-2 div.field.hs-form-field,
form fieldset.form-columns-1 div.field.hs-form-field .input .hs-input,
form fieldset.form-columns-2 div.field.hs-form-field .input .hs-input,
.form fieldset.form-columns-1 div.field.hs-form-field,
.form fieldset.form-columns-2 div.field.hs-form-field,
.form fieldset.form-columns-1 div.field.hs-form-field .input .hs-input,
.form fieldset.form-columns-2 div.field.hs-form-field .input .hs-input {
  width: 100%;
  float: none;
  margin: 0;
}

form fieldset.form-columns-1 div.field.hs-form-field .input,
form fieldset.form-columns-2 div.field.hs-form-field .input,
.form fieldset.form-columns-1 div.field.hs-form-field .input,
.form fieldset.form-columns-2 div.field.hs-form-field .input {
  margin-right: 0;
}



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

.notify-login,
.referrals-login,
.business-login {
  display: none;
}

.header-container-wrapper {
  z-index: 100010;
  position: relative;
  transition: all 0.5s;
  background: #F5F5F5;
}

body:has(.hero-banner) .header-container-wrapper:not(.sticky) {
  background: transparent;
}

.header-container-wrapper.sticky {
  position: sticky;
  top: 0;
  left: 0;
  animation: stickyNav 0.5s;
  background-color: #F5F5F5;
}

@keyframes stickyNav {
  0%   {top: -100%; background-color: transparent;}
  100% {top: 0; background-color: #F5F5F5;}
}

.header-content-wrapper {
  padding: 17px 36px;
  max-width: 1512px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header-content-wrapper .header-column {
  flex: 1;
}

.header-content-wrapper .header-column.header-middle {
  flex: 2;
  justify-content: center;
  display: flex;
  flex-direction: row;
}

.header-left.header-column img {
  width: 100%;
  max-width: 256px;
}

.header-container-wrapper.sticky .header-content-wrapper .header-left .black {
  display: block;
}

.header-content-wrapper .header-left .white {
  display: none;
}

.header-container-wrapper.sticky .header-content-wrapper .header-left .white {
  display: none;
}

.header-content-wrapper .header-right #login-button a {
  text-decoration: none;
  color: #000;
}

.header-content-wrapper .header-right #login-button  {
  border-color: #000;
  color: #000;
}

.header-content-wrapper .header-middle {
  margin-left: auto;
  margin-right: auto;
}

.header-content-wrapper .header-middle .hs-menu-wrapper ul {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  max-width: 493.5px;
  justify-content: space-between;
  flex-direction: row;
}

.header-content-wrapper .header-middle .hs-menu-wrapper ul li:not(:last-child) {
  margin-right: 40px;
}

.header-content-wrapper .header-middle .hs-menu-wrapper ul li.active {
  position: relative;
}

.header-content-wrapper .header-middle .hs-menu-wrapper ul li.active::after {
  position: absolute;
  width: 100%;
  height: 7px;
  background-color: #E26B00;
  left: 0;
  bottom: -24px;
  display: block;
  content: "";
}

.header-content-wrapper .header-middle .hs-menu-wrapper ul li:last-child a {
  background: #E26B00;
  border-radius: 50px;
  padding: 12px 32px;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}

.header-content-wrapper .header-middle .hs-menu-wrapper ul li a {
  text-decoration: none;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.03em;
  color: #000000;
  transition: color 0.3s;
}

.header-content-wrapper .header-middle .hs-menu-wrapper ul li a:hover {
  color: #E26B00;
}

.header-content-wrapper .header-middle .hs-menu-wrapper ul li:last-child a:hover {
  background: #C15C01;
  color: #FFFFFF;
}

.header-content-wrapper .header-right {
  text-align: right;
}

.header-content-wrapper .header-right #login-button,
.header-content-wrapper .header-right .menu-toggle-container {
  display: inline-block; 
}

.header-content-wrapper .header-right #login-button,
.header-content-wrapper .header-right #menu-button {
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  color: #000000;
  font-size: 13px;
  letter-spacing: 3%;
}

.header-content-wrapper .header-right #login-button {
  padding: 8px 16px;
  border: 1px solid #000000;
  border-radius: 32px;
  margin-right: 41px;
}

.header-content-wrapper .header-right #menu-button:hover {
  cursor: pointer;
}

.header-content-wrapper .header-right #login-button:hover {
  background: #FFECDB;
  cursor: pointer;
}

.header-content-wrapper .header-right #login-button svg,
.header-content-wrapper .header-right #menu-button svg {
  transition: all 0.3s ease-in-out;
  vertical-align: middle;
}

.header-content-wrapper .header-right #login-button svg {
  margin-right: 8px;
}

.header-content-wrapper .header-right #menu-button svg {
  margin-left: 4px;
}

.header-content-wrapper .header-right #menu-button:hover {
  color: #E26B00;
}

.header-content-wrapper .header-right #menu-button:hover svg {
  filter: invert(42%) sepia(49%) saturate(1517%) hue-rotate(1deg) brightness(99%) contrast(106%);
}

.flyout-menu {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  flex-direction: row;
  justify-content: flex-end;
  transition: transform 1s ease;
  z-index: 10000;
  display: flex;
  height: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

.flyout-menu[aria-expanded="false"] {
  transform: translateX(100%);
}

.flyout-menu[aria-expanded="true"] {
  transform: translateX(-100%);
}

.flyout-menu .flyout-overlay {
  position: absolute;
  content: "";
  display: block;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  transition: transform 1s ease;
  animation-name: fadeInBackground;
  animation-duration: 0.5s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  z-index: 20;
}

.flyout-menu[aria-expanded="false"] .flyout-overlay {
  transform: translateX(100%);
  animation-name: fadeOutBackground;
  animation-duration: 0.1s;
  animation-fill-mode: forwards;
}

.flyout-menu[aria-expanded="true"] .flyout-overlay {
  transform: translateX(-100%);
}

@keyframes fadeInBackground {
  from {
    background: none;
  }
  to {
    background: rgba(0, 0, 0, 0.16);
  }
}

@keyframes fadeOutBackground {
  from {
    background: rgba(0, 0, 0, 0.16);
  }
  to {
    background: none;
  }
}

.flyout-menu .main-menu-container .close-menu,
.flyout-menu .extended-menu-container .close-menu.extended {
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 0.03em;
  color: #000000;
  background: none;
  border: none;
  display: block;
  position: absolute;
  right: 25px;
  top: 6.5%;
  display: none;
  padding: 0;
  transition: all 0.3s ease-in-out;
}

.flyout-menu .main-menu-container .close-menu:hover,
.flyout-menu .extended-menu-container .close-menu.extended:hover {
  cursor: pointer;
  color: #E26B00;
}

.flyout-menu .main-menu-container .close-menu svg path,
.flyout-menu .extended-menu-container .close-menu.extended svg path {
  transition: all 0.3s ease-in-out;
}

.flyout-menu .main-menu-container .close-menu:hover svg path,
.flyout-menu .extended-menu-container .close-menu.extended:hover svg path {
  stroke: #E26B00;
}

.flyout-menu[aria-expanded="true"] .main-menu-container .close-menu {
  display: block; 
}

.flyout-menu .extended-menu-container[aria-expanded="true"] .close-menu.extended {
  display: block; 
}

.flyout-menu .extended-menu-container .close-menu.extended {
  color: #FFFFFF;
}

.flyout-menu .main-menu-container .close-menu svg,
.flyout-menu .extended-menu-container .close-menu.extended svg {
  margin-left: 4px;
  vertical-align: middle;
}

.flyout-menu .extended-menu-container {
  max-width: calc(100% - 33.33333%); 
  width: 100%;
  transition: margin-right 1s ease;
  z-index: 30;
  background-color: #181818;
  margin-right: -66.6667%;
}

.flyout-menu .extended-menu-container[aria-expanded="false"] {
  margin-right: -66.6667%;
}

.flyout-menu .extended-menu-container[aria-expanded="true"] {
  margin-right: 0;
}

.flyout-menu .extended-menu-container > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  padding: 48px 130px;
}

.flyout-menu .extended-menu-container > div > div {
  width: 100%;
}

.flyout-menu .main-menu-container,
.flyout-menu .extended-menu-container {
 z-index: 30; 
}

.flyout-menu .main-menu-container {
  max-width: 33.33333%;
  background-color: #FFFFFF;
  padding: 64px 25px 49px;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  text-align: left;
}

.flyout-menu .main-menu-container .main-menu-wrapper {
  max-width: 335px;
  width: 100%;
  margin: 0 auto;
}

.flyout-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flyout-menu ul a {
  font-family: 'Poppins';
  font-weight: 600;
  text-decoration: none; 
  display: inline-block;
}

.flyout-menu ul > li {
  margin-bottom: 24px; 
}

.flyout-menu ul > li:last-child {
  margin-bottom: 48px;
}

.flyout-menu ul li a {
  color: #000000;
  position: relative;
}

.flyout-menu ul > li > a {
  font-size: 48px;
  line-height: 48px;
}

.flyout-menu ul > li.hs-item-has-children > a {
  margin-bottom: 16px; 
}

.flyout-menu ul > li.hs-item-has-children ul li {
  margin-bottom: 16px;
}

.flyout-menu ul > li.hs-item-has-children ul li:last-child {
  margin-bottom: 24px;
}

.flyout-menu ul > li.hs-item-has-children > ul {
  margin-left: 25px; 
}

.flyout-menu ul > li.hs-item-has-children > ul a {
  font-size: 20px;
  line-height: 20px;
}

.flyout-menu ul li a::before {
  display: inline-block;
  width: 25px;
  height: 24px;
  margin-right: 4px;
  background-image: url(//25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/oub-theme/global/images/chevron-menu-icon.svg);
  background-size: cover;
  content: "";
  transition: margin-right 0.3s ease;
}

.flyout-menu ul li.hs-item-has-children li a::before,
.flyout-menu .extended-main-menu-footer ul li a:before {
  vertical-align: sub;
}

.flyout-menu ul li a:hover::before {
  filter: invert(47%) sepia(25%) saturate(6347%) hue-rotate(9deg) brightness(96%) contrast(101%);
  margin-right: 12px;
}

.flyout-menu #extended-menu-button {
  color: #000;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  display: block;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  margin-bottom: 32px;
  cursor: pointer;
}

.flyout-menu #extended-menu-button .extended-open {
  display: none;
}

.flyout-menu #extended-menu-button span svg {
  vertical-align: middle;
}

.flyout-menu #hs_cos_wrapper_Main_Menu_Extended_Buttons #hs_menu_wrapper_Main_Menu_Extended_Buttons ul li:first-child {
  margin-bottom: 16px; 
}

.flyout-menu #hs_cos_wrapper_Main_Menu_Extended_Buttons #hs_menu_wrapper_Main_Menu_Extended_Buttons ul li:last-child {
  margin-bottom: 0;
}

.flyout-menu #hs_cos_wrapper_Main_Menu_Extended_Buttons #hs_menu_wrapper_Main_Menu_Extended_Buttons ul li a {
  display: block;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 141.7%;
  color: #FFFFFF;
  background-color: #E26B00;
  border-radius: 50px;
  padding: 12px;
  border: solid 1px #E26B00;
  text-align: center;
  transition: all 0.3s ease;
}

.flyout-menu #hs_cos_wrapper_Main_Menu_Extended_Buttons #hs_menu_wrapper_Main_Menu_Extended_Buttons ul li a:hover {
  background-color: #C15C01;
}

.flyout-menu #hs_cos_wrapper_Main_Menu_Extended_Buttons #hs_menu_wrapper_Main_Menu_Extended_Buttons ul li:last-child a {
  background-color: #FFFFFF;
  border-color: #000000;
  color: #000000;
}

.flyout-menu #hs_cos_wrapper_Main_Menu_Extended_Buttons #hs_menu_wrapper_Main_Menu_Extended_Buttons ul li:last-child a:hover {
  background-color: #FFECDB; 
}

.flyout-menu #hs_cos_wrapper_Main_Menu_Extended_Buttons #hs_menu_wrapper_Main_Menu_Extended_Buttons ul li a::before {
   display: none;
}

.flyout-menu #hs_menu_wrapper_Main_Menu_Extended {
  margin-top: 100px;
  display: block;
  text-align: left;
}

.flyout-menu #hs_menu_wrapper_Main_Menu_Extended > ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 80px;
}

.flyout-menu #hs_menu_wrapper_Main_Menu_Extended > ul > li {
  flex: auto;
  max-width: 33.3333%
}

.flyout-menu #hs_menu_wrapper_Main_Menu_Extended ul li a {
  color: #fff;
}

.flyout-menu #hs_menu_wrapper_Main_Menu_Extended > ul > li > a {
  font-size: 30px;
  line-height: 37px;
}

.flyout-menu #hs_menu_wrapper_Main_Menu_Extended > ul > li > a::before {
  display: none;
}

.flyout-menu #hs_menu_wrapper_Main_Menu_Extended > ul > li ul {
  margin-left: 0;
}

.flyout-menu #hs_menu_wrapper_Main_Menu_Extended > ul > li ul li a {
  font-size: 20px;
  line-height: 23px;
}

.flyout-menu #hs_menu_wrapper_Main_Menu_Extended > ul > li ul li a::before {
  filter: invert(99%) sepia(30%) saturate(0%) hue-rotate(166deg) brightness(109%) contrast(100%);
  vertical-align: bottom;
}

.flyout-menu #hs_menu_wrapper_Main_Menu_Extended > ul > li ul li a:hover::before {
  filter: invert(47%) sepia(25%) saturate(6347%) hue-rotate(9deg) brightness(96%) contrast(101%);
  margin-right: 12px; 
}

.flyout-menu #hs_menu_wrapper_Main_Menu_Extended_Footer ul {
  text-align: center;
}

.flyout-menu #hs_menu_wrapper_Main_Menu_Extended_Footer ul li {
  display: inline-block;
  margin-right: 32px;
  margin-bottom: 0;
}

.flyout-menu #hs_menu_wrapper_Main_Menu_Extended_Footer ul li:last-chidl {
  margin-right: 0;
}

.flyout-menu #hs_menu_wrapper_Main_Menu_Extended_Footer ul li a {
  color: rgba(255,255,255,0.72);
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.flyout-menu #hs_menu_wrapper_Main_Menu_Extended_Footer ul li a:before {
  filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(50deg) brightness(105%) contrast(101%);
  opacity: 0.72;
}

.data-partners-logo {
  display: none;
}

.tech-partners-template .data-partners-logo {
  display: block;
}


@media only screen and (max-width: 1100px){
 .header-content-wrapper .header-middle .hs-menu-wrapper ul li:not(:last-child) {
    margin-right: 20px;
  } 
  
  .header-content-wrapper .header-middle .hs-menu-wrapper ul li:last-child a {
    padding: 12px; 
  }
  
  .header-content-wrapper .header-right #login-button {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 950px){
 .header-content-wrapper .header-middle .hs-menu-wrapper ul li:not(:last-child) {
    margin-right: 10px;
  }
  
  .header-content-wrapper .header-middle .hs-menu-wrapper ul li a {
    font-size: 14px;
  }
  
  .header-content-wrapper .header-right #login-button {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 900px) {
  .header-content-wrapper {
    padding: 17px 16px;
  }
  
  .header-content-wrapper .header-column {
    flex: unset;
  }
  
  .flyout-menu #hs_menu_wrapper_Main_Menu_Extended>ul>li {
    max-width: 100%;
  }
  
  .header-content-wrapper .header-right #menu-button {
    font-size: 13px;
  }
  
  .header-left.header-column img {
    width: 100%;
    max-width: 159px;
  }
  
  .header-content-wrapper .header-middle .hs-menu-wrapper ul,
  .header-content-wrapper .header-right #login-button {
    display: none;
  }
  
  .flyout-menu .main-menu-container,
  .flyout-menu .extended-menu-container {
    max-width: 100%;
  }
  
  .flyout-menu .extended-menu-container {
      position: absolute;
  }
  
  .flyout-menu .extended-menu-container[aria-expanded=true] .extended-menu-wrapper {
    overflow-y: scroll; 
  }

  @keyframes slideIn {
      from {
          right: -100%;
      }

      to {
          right: 0%;
      }
  }

  @keyframes slideOut {
      from {
          right: 0%;
      }

      to {
          right: -100%;
      }
  }

  .flyout-menu .extended-menu-container[aria-expanded=true] {
      animation-duration: 1s;
      animation-name: slideIn;
      z-index: 31;
  }

  html body .flyout-menu .extended-menu-container[aria-expanded=false] {
      animation-duration: 1s;
      animation-name: slideOut;
    margin-right: -100%;
  }

  .flyout-menu .extended-menu-container>div {
    padding: 20px;
    height: 100vh;
  }

  .flyout-menu #hs_menu_wrapper_Main_Menu_Extended {
      margin-top: 0;
  }

  .flyout-menu #hs_menu_wrapper_Main_Menu_Extended>ul {
      flex-direction: column;
      column-gap: 0;
  }
}

body:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-content-wrapper .header-left .black {
  display: none;
}

body:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-content-wrapper .header-left .white {
  display: block;
}

body:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-middle .hs-menu-wrapper ul li a {
  color: #fff;
}

body:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-middle .hs-menu-wrapper ul li a:hover {
  color: #E26B00;
}

body:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-right #login-button,
body:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-right #menu-button {
  border-color: #fff;
  color: #fff;
}

body:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-right #login-button a,
body:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-right #menu-button a {
  color: #fff;
}

body:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-right #login-button:hover a {
  color: #B05101;
}

body:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-middle .hs-menu-wrapper ul li:last-child a:hover {
  color: #fff;
}

body:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-right #login-button svg path {
  fill: #fff;
}

body:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-right #login-button:hover svg path {
  fill: #B05101;
}

body:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-right #menu-button svg path {
  stroke: #fff;
  transition: all 0.3s ease-in-out;
}

body:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-right #menu-button:hover,
body:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-right #menu-button:hover a {
  color: #E26B00;
}

body:has(.hero-banner.white-header) .header-content-wrapper:not(.sticky) .header-right #menu-button:hover svg path {
  stroke: #E26B00;
}
.footer-container-wrapper {
  padding: 62px 0 29px;
  background: #fff;
}

.footer-container-wrapper .row-fluid-wrapper {
  max-width: 1368px;
  margin: 0 auto;
}

.footer-container-wrapper .row-fluid-wrapper .row-fluid {
  padding: 0rem 24px;
}

@media (min-width: 768px) {
    .footer-container-wrapper .row-fluid-wrapper .row-fluid {
        justify-content: space-between;
    }
}

@media only screen and (max-width: 900px) {
  
    .footer-container-wrapper .row-fluid {
        display: block;
    }
  
    .footer-container-wrapper .row-fluid .span1, 
    .footer-container-wrapper .row-fluid .span2, 
  .footer-container-wrapper .row-fluid .span3, 
  .footer-container-wrapper .row-fluid .span4, 
  .footer-container-wrapper .row-fluid .span5, 
  .footer-container-wrapper .row-fluid .span6, 
  .footer-container-wrapper .row-fluid .span7, 
  .footer-container-wrapper .row-fluid .span8, 
  .footer-container-wrapper .row-fluid .span9, 
  .footer-container-wrapper .row-fluid .span10, 
  .footer-container-wrapper .row-fluid .span11, 
  .footer-container-wrapper.row-fluid .span12 {
        min-height: 1px;
        width: 100%;
    }
}

.footer-container-wrapper a {
  transition: all 0.3s;
}

.footer-container-wrapper a:hover {
  color: #E26B00 !important;
}

.footer-container-wrapper .footer-content-wrapper img.company-logo {
  margin-bottom: 39px;
  width: 100%;
  max-width: 208px;
}

.footer-container-wrapper .footer-content-wrapper .span4 .trustpilot-widget iframe {
  margin-left: -26px;
}

.footer-container-wrapper .footer-content-wrapper .span4 > p {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 32px;
}

.footer-container-wrapper .footer-content-wrapper .span4 ul {
  list-style: none;
  padding: 0;
  margin: 0 0 48px 0;
}


.footer-container-wrapper .footer-content-wrapper .span4 ul li {
  display: inline-block;
  margin-right: 16px;
}

.footer-container-wrapper .footer-content-wrapper .span4 ul li:last-child {
  margin-right: 0px;
}


.footer-container-wrapper .footer-content-wrapper .span2 h2 {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 24px;
}

.footer-container-wrapper .footer-content-wrapper .span2 ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.footer-container-wrapper .footer-content-wrapper .span2 ul li {
  margin-bottom: 16px; 
}

.footer-container-wrapper .footer-content-wrapper .span2 ul li:last-child {
  margin-bottom: 0; 
}

.footer-container-wrapper .footer-content-wrapper .span2 ul li a {
  font-family: 'Roboto';
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.footer-container-wrapper .footer-content-wrapper .copyright {
  padding-top: 90px;
}

.footer-container-wrapper .footer-content-wrapper .copyright p {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #000000;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.footer-container-wrapper .footer-content-wrapper .copyright p span:not(.layers){
  margin: 0 9px;
}

.footer-container-wrapper .footer-content-wrapper .copyright p .layers {
  margin-left: auto;
  font-size: 16px;
  line-height: 24px;
}

.footer-container-wrapper .footer-content-wrapper .copyright p .layers a {
  color: #000000;
  text-decoration: none;
}

/* Responsive */
@media only screen and (max-width: 900px) {
  .footer-container-wrapper .footer-content-wrapper img.company-logo {
    margin-bottom: 24px;
    max-width: 240px;
    width: 100%;
  }
  
  .footer-content-wrapper {
    text-align: center;
  }
  
  .footer-container-wrapper {
    padding: 43px 0 32px;
  }
  
  .footer-container-wrapper .footer-content-wrapper .span4 ul {
      list-style: none;
      margin: 0 0 20px;
      padding: 0;
  }
  
  .footer-container-wrapper .footer-content-wrapper .span4 .trustpilot-widget iframe {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  
  .footer-container-wrapper .footer-content-wrapper .copyright {
    padding-top: 20px;
  }
  
  .footer-container-wrapper .footer-content-wrapper .copyright p {
    align-items: center;
    color: #000;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto';
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    margin-bottom: 0;
    width: 100%;
  }
  
  .footer-container-wrapper .footer-content-wrapper .copyright p span:not(.layers) {
    margin: 0 0 10px;
  }
  
  .footer-container-wrapper .footer-content-wrapper .copyright p span.footer-separator {
    display: none;
  }
  
  .footer-container-wrapper .footer-content-wrapper .copyright p .layers {
    font-size: 16px;
    line-height: 24px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 45px;
  }
}

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

/* @import url('http://example.com/example_style.css'); */

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

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