/* 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;
}
/* =========================================
   Base table styling
========================================= */
table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  padding: 12px 16px;
  vertical-align: top;
  word-break: break-word;
}

th {
  font-weight: 600;
  text-align: left;
  background-color: #cccccc;
}

/* Lists inside cells */
td ul {
  margin: 0;
  padding-left: 18px;
}

td li {
  margin-bottom: 6px;
}

/* =========================================
   Responsive behaviour (scroll, not stack)
========================================= */
@media (max-width: 900px) {

  /* Wrap table safely if possible */
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  thead,
  tbody {
    width: 100%;
  }

  /* Optional visual cue for scroll */
  table::-webkit-scrollbar {
    height: 6px;
  }

  table::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

body {
  background: #f5f5f5;
}

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

h1, h2, h3, h4, h5, h6 {
  margin-block-start: 0px;
  margin-block-end: 16px;
}

.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:not(.layers-default-module),
.layers-default-module.text-module.preformatted p,
.layers-default-module.heading-module.preformatted h1,
.layers-default-module.heading-module.preformatted h2,
.layers-default-module.heading-module.preformatted h3,
.layers-default-module.heading-module.preformatted h4,
.layers-default-module.heading-module.preformatted h5,
.layers-default-module.heading-module.preformatted h6,
.layers-default-module.heading-module.preformatted pre,
.layers-default-module.heading-module.preformatted p {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 740;
  line-height: 22px;
  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,
.layers-default-module.heading-module.paragraph h1,
.layers-default-module.heading-module.paragraph h2,
.layers-default-module.heading-module.paragraph h3,
.layers-default-module.heading-module.paragraph h4,
.layers-default-module.heading-module.paragraph h5,
.layers-default-module.heading-module.paragraph h6,
.layers-default-module.heading-module.paragraph p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  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),
.layers-default-module.heading-module.h1 h1,
.layers-default-module.heading-module.h1 h2,
.layers-default-module.heading-module.h1 h3,
.layers-default-module.heading-module.h1 h4,
.layers-default-module.heading-module.h1 h5,
.layers-default-module.heading-module.h1 h6,
.layers-default-module.text-module.h1 p {
  font-size: 64px;
  line-height: 74px;
}

.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),
.layers-default-module.text-module.h2 p,
.layers-default-module.heading-module.h2 h1,
.layers-default-module.heading-module.h2 h2,
.layers-default-module.heading-module.h2 h3,
.layers-default-module.heading-module.h2 h4,
.layers-default-module.heading-module.h2 h5,
.layers-default-module.heading-module.h2 h6 {
  font-size: 56px;
  line-height: 66px;
}

.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),
.layers-default-module.text-module.h3 p,
.layers-default-module.heading-module.h3 h1,
.layers-default-module.heading-module.h3 h2,
.layers-default-module.heading-module.h3 h3,
.layers-default-module.heading-module.h3 h4,
.layers-default-module.heading-module.h3 h5,
.layers-default-module.heading-module.h3 h6 {
  font-size: 48px;
  line-height: 58px;
}

.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),
.layers-default-module.text-module.h4 p,
.layers-default-module.heading-module.h4 h1,
.layers-default-module.heading-module.h4 h2,
.layers-default-module.heading-module.h4 h3,
.layers-default-module.heading-module.h4 h4,
.layers-default-module.heading-module.h4 h5,
.layers-default-module.heading-module.h4 h6 {
  font-size: 30px;
  line-height: 40px;
}

.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),
.layers-default-module.text-module.h5 p,
.layers-default-module.heading-module.h5 h1,
.layers-default-module.heading-module.h5 h2,
.layers-default-module.heading-module.h5 h3,
.layers-default-module.heading-module.h5 h4,
.layers-default-module.heading-module.h5 h5,
.layers-default-module.heading-module.h5 h6 {
  font-size: 20px;
  line-height: 30px;
}

.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),
.layers-default-module.text-module.h6 p,
.layers-default-module.heading-module.h6 h1,
.layers-default-module.heading-module.h6 h2,
.layers-default-module.heading-module.h6 h3,
.layers-default-module.heading-module.h6 h4,
.layers-default-module.heading-module.h6 h5,
.layers-default-module.heading-module.h6 h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  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),
.layers-default-module.text-module.h1 p,
  .layers-default-module.heading-module.h1 h1,
  .layers-default-module.heading-module.h1 h2,
  .layers-default-module.heading-module.h1 h3,
  .layers-default-module.heading-module.h1 h4,
  .layers-default-module.heading-module.h1 h5,
  .layers-default-module.heading-module.h1 h6 {
    font-size: 38px;
    line-height: 48px;
  }

  .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),
.layers-default-module.text-module.h2 p,
  .layers-default-module.heading-module.h2 h1,
  .layers-default-module.heading-module.h2 h2,
  .layers-default-module.heading-module.h2 h3,
  .layers-default-module.heading-module.h2 h4,
  .layers-default-module.heading-module.h2 h5,
  .layers-default-module.heading-module.h2 h6 {
    font-size: 32px;
    line-height: 42px;
  }

  .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),
.layers-default-module.text-module.h3 p,
  .layers-default-module.heading-module.h3 h1,
  .layers-default-module.heading-module.h3 h2,
  .layers-default-module.heading-module.h3 h3,
  .layers-default-module.heading-module.h3 h4,
  .layers-default-module.heading-module.h3 h5,
  .layers-default-module.heading-module.h3 h6 {
    font-size: 28px;
    line-height: 38px;
  }

  .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),
.layers-default-module.text-module.h4 p,
  .layers-default-module.heading-module.h4 h1,
  .layers-default-module.heading-module.h4 h2,
  .layers-default-module.heading-module.h4 h3,
  .layers-default-module.heading-module.h4 h4,
  .layers-default-module.heading-module.h4 h5,
  .layers-default-module.heading-module.h4 h6 {
    font-size: 24px;
    line-height: 34px;
  }

  .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),
.layers-default-module.text-module.h5 p,
  .layers-default-module.heading-module.h5 h1,
  .layers-default-module.heading-module.h5 h2,
  .layers-default-module.heading-module.h5 h3,
  .layers-default-module.heading-module.h5 h4,
  .layers-default-module.heading-module.h5 h5,
  .layers-default-module.heading-module.h5 h6 {
    font-size: 18px;
    line-height: 28px;
  }
  
  .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),
.layers-default-module.text-module.h6 p,
  .layers-default-module.heading-module.h6 h1,
  .layers-default-module.heading-module.h6 h2,
  .layers-default-module.heading-module.h6 h3,
  .layers-default-module.heading-module.h6 h4,
  .layers-default-module.heading-module.h6 h5,
  .layers-default-module.heading-module.h6 h6 {
    font-size: 20px;
    line-height: 30px;
  }
}

/* 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,
.header-content-wrapper .header-middle .hs-menu-wrapper ul li:last-child a {
    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;
}

.header-content-wrapper .header-middle .hs-menu-wrapper ul li:last-child a {
  padding: 12px 32px;
}

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

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

.button.arrow-left,
.button.arrow-right {
  padding: 0;
  color: #000000;
  background: transparent;
}

.button.arrow-left:hover,
.button.arrow-right:hover,
.button.arrow-right:focus,
.button.arrow-left:focus {
  color: #E26B00;
  background: transparent;
}

.button.arrow-left svg {
  margin-right: 8px;
  transition: all 0.3s;
  vertical-align: middle;
}

.button.arrow-right svg {
  margin-left: 8px;
  transition: all 0.3s;
  vertical-align: middle;
}

.button.arrow-left:hover svg,
.button.arrow-right:hover svg,
.button.arrow-left:focus svg,
.button.arrow-right:focus svg {
  filter: invert(40%) sepia(72%) saturate(1862%) hue-rotate(10deg) brightness(97%) contrast(104%);
}


.layers-default-module a.fill-primary { background-color: #E26B00; border: 1px solid #E26B00; color: white; }
.layers-default-module a.fill-primary:hover { background-color: #C15C01; border-color: #C15C01; }
.layers-default-module a.fill-white { background-color: #ffffff; border: 1px solid #ffffff; color: #000000; }
.layers-default-module a.fill-white:hover { background-color: #F0F0F0; border-color: #C15C01; }
.layers-default-module a.outline-dark { background-color: transparent; border: 1px solid #000000; color: #000000; }
.layers-default-module a.outline-dark:hover { background-color: #FFECDB; border-color: #000000; }
.layers-default-module a.outline-light { background-color: transparent; border: 1px solid #ffffff; color: #ffffff; }
.layers-default-module a.outline-light:hover { background-color: #FFECDB; border-color: #ffffff; color: #B05101; }
.layers-default-module a.arrow-left,
.layers-default-module a.arrow-right { background: transparent; border: none; color: #000000; padding: 0px; }
.layers-default-module a.link-black { color: #000; font-family: 'Poppins', sans-serif; font-size: 16px; font-style: normal; font-weight: 600;}
.layers-default-module a.link-black:hover { color: #E26B00; }
.layers-default-module a.link-black:hover svg path { fill: #E26B00 }
.layers-default-module a.link-white { color: #fff; font-family: 'Poppins', sans-serif; font-size: 16px; font-style: normal; font-weight: 600;}
.layers-default-module a.link-white:hover { color: #E26B00; }
.layers-default-module a.link-white:hover svg path { fill: #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(https://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 variant system (DARK DEFAULT)
--------------------------- */
.header-container-wrapper {
  --header-bg: #F5F5F5;
  --header-text: #000000;
  --header-border: #000000;
  --header-cta-bg: #E26B00;
  --header-cta-bg-hover: #C15C01;
  --header-cta-text: #FFFFFF;
  --header-login-hover-bg: #FFECDB;

  z-index: 100010;
  position: relative;
  transition: all 0.5s;
  background: var(--header-bg);
}

.header-container-wrapper.light-header {
  --header-bg: transparent;
  --header-text: #FFFFFF;
  --header-border: #FFFFFF;
  background: var(--header-bg);
}

.header-container-wrapper.sticky {
  position: sticky;
  top: 0;
  left: 0;
  animation: stickyNav 0.5s;

  --header-bg: #FFFFFF;
  --header-text: #000000;
  --header-border: #000000;
  background: var(--header-bg);
}

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

/* Logo swapping:
   - Dark default: show white logo
   - Light + Sticky: show black logo
*/

.header-container-wrapper.light-header .company-logo-dark,
.header-container-wrapper.dark-header .company-logo,
.header-container-wrapper.light-header.sticky .company-logo {
  display: none;
}

.header-container-wrapper.dark-header .company-logo-dark,
.header-container-wrapper.light-header.sticky .company-logo-dark {
  display: inline-block;
}

/* ---------------------------
   Header layout
--------------------------- */
.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 buttons / links (now variable-driven)
--------------------------- */
.header-content-wrapper .header-right #login-button a {
  text-decoration: none;
  color: var(--header-text);
}

.header-content-wrapper .header-right #login-button  {
  border-color: var(--header-border);
  color: var(--header-text);
}

.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;
  align-items: center;
}

.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 a {
  text-decoration: none;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.03em;
  color: var(--header-text);
  transition: color 0.3s;
}

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

.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: var(--header-text);
  font-size: 13px;
  letter-spacing: 3%;
}

.header-content-wrapper .header-right #login-button {
  padding: 8px 16px;
  border: 1px solid var(--header-border);
  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: var(--header-login-hover-bg);
  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;
}

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

/* SVG colouring to match theme */
.header-content-wrapper .header-right #login-button svg path {
  fill: var(--header-text);
  transition: all 0.3s ease-in-out;
}

.header-content-wrapper .header-right #menu-button svg path {
  stroke: var(--header-text);
  transition: all 0.3s ease-in-out;
}

/* Optional legacy: on DARK default non-sticky, login hover icon/text goes B05101 */
.header-container-wrapper:not(.light-header):not(.sticky) .header-content-wrapper .header-right #login-button:hover a {
  color: #B05101;
}
.header-container-wrapper:not(.light-header):not(.sticky) .header-content-wrapper .header-right #login-button:hover svg path {
  fill: #B05101;
}

/* ---------------------------
   Flyout menu (unchanged)
--------------------------- */
.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(https://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;
}

/* ---------------------------
   Responsive tweaks (unchanged)
--------------------------- */
@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-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;
  }
}
.blog-featured-cards.row-fluid-wrapper {
  margin: 0 auto;
}

.hs-blog-listing .blog-hero {
  padding: 41px 30px 48px;
  text-align: center;
}

.hs-blog-listing .blog-hero svg {
  margin-bottom: 8px;
}

.hs-blog-listing .blog-featured {
  margin-bottom: 80px;
}

.hs-blog-listing .blog-featured h2.h4 {
  margin-bottom: 32px;
  text-align: center;
}

.hs-blog-listing .blog-featured h2.h4 span {
  vertical-align: middle;
  display: inline-block;
  margin-left: 25px;
}

.hs-blog-listing .blog-featured .row-fluid-wrapper {
  max-width: calc(1090px + 4.8rem);
}

.hs-blog-listing .blog-featured .row-fluid {
  justify-content: center;
  column-gap: 24px;
  padding-bottom: 66px;
}

.blog-card {
  padding-bottom: 67px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.blog-card .blog-card-stacked {
  display: flex;
  flex-direction: column;
}

.blog-card .blog-card-stacked .blog-card-image {
  margin-bottom: 12px;
}

.blog-card a {
  text-decoration: none;
}

.blog-card .blog-card-image a {
  display: block;
  position: relative;
  box-shadow: 0px 30px 45px 0px rgba(0, 0, 0, 0.06);
}

.blog-card .blog-card-image a::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  border: solid 5px #E26B00;
  opacity: 0;
  left: 0;
  top: 0;
  transition: opacity 0.3s;
  border-radius: 8px;
}

.blog-card .blog-card-image a:hover::before {
  opacity: 1;
}
  
.blog-card .blog-card-image img {
  display: block;
  border-radius: 8px;
  /*  max-width: 348px; */
  width: 100%;
  height: 206px;
  object-fit: cover;
}

.blog-card .blog-card-stacked .blog-card-image .blog-card-tags {
  position: absolute;
  bottom: 8px;
  right: 8px;
  text-align: right;
}

.blog-card-content > .blog-card-tags {
  padding-right: 12px;
}

.blog-card-tags .blog-card-tag {
  border-radius: 49px;
  background: #FFECDB;
  padding: 4px 16px;
  text-align: center;
  color: #B05101;
  font-size: 13px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  line-height: 168.5%;
  letter-spacing: 0.39px;
  display: inline-block;
  margin: 3px 0;
}

.blog-card .blog-card-stacked .blog-card-meta {
  color: #000;
  font-size: 16px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  line-height: normal; 
  margin-bottom: 12px; 
}

.blog-card .blog-card-row .blog-card-meta {
  color: #000;
  font-size: 13px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 8px;
}

.blog-card .blog-card-stacked .blog-card-title {
  margin-bottom: 0;
}

.blog-card .blog-card-r0w .blog-card-title {
  margin-bottom: 8px;
}

.blog-card .blog-card-title,
.blog-card .blog-card-title a {
  color: #000;
  font-size: 21px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: normal;  
  transition: color 0.3s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 91px;
  padding-right: 12px;
}

.blog-card .blog-card-title a:hover {
  color: #E26B00;
}

.blog-card .blog-card-row .row-fluid {
  padding: 0;
}

.blog-in-the-press .blog-feed-container.row-fluid-wrapper {
  max-width: calc(844px + 4.8rem); 
  margin: 0 auto;
}

.blog-feed-container .blog-feed-wrapper {
  padding: 0 2.4rem 96px;
}

.blog-feed-container .blog-feed-wrapper .blog-feed-posts .blog-card {
  margin-bottom: 48px;
}

.blog-feed-container .blog-feed-wrapper .blog-feed-posts .blog-card:last-child {
  margin-bottom: 0;
}

.blog-feed-container .blog-feed-wrapper .blog-feed-filter .block {
  position: sticky;
  top: 90px;
  padding-bottom: 40px;
}

.blog-feed-container .blog-feed-wrapper .blog-feed-filter h3 {
  color: #000;
  font-size: 20px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  line-height: 114.5%;
  margin-bottom: 28px;
}

.blog-feed-container .blog-feed-wrapper .blog-feed-filter .widget-module ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
  column-gap: 19px;
  row-gap: 19px;
}

.blog-feed-container .blog-feed-wrapper .blog-feed-filter .widget-module ul li a {
  border-radius: 49px;
  background: rgba(228, 228, 228, 0.56);
  padding: 8px 24px;
  text-align: center;
  color: #000;
  font-size: 14px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 168.5%;
  letter-spacing: 0.42px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s;
}

.blog-feed-container .blog-feed-wrapper .blog-feed-filter .widget-module ul li.active a,
.blog-feed-container .blog-feed-wrapper .blog-feed-filter .widget-module ul li a:hover {
  background: #FFECDB;
  color: #B05101;
}

.blog-feed-container .blog-feed-wrapper .blog-feed-filter .widget-module ul li a .filter-link-count {
  display: none;
}

@media only screen and (max-width: 900px){
    .hs-blog-listing .blog-hero {
    padding: 20px 24px 24px;
    text-align: center;
  }
  
  .hs-blog-listing .blog-featured {
    margin-bottom: 40px;
  }

  .hs-blog-listing .blog-featured h2.h4 {
    margin-bottom: 16px;
  }
  
  .hs-blog-listing .blog-featured .row-fluid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 33px;
  }
  
  .hs-blog-listing .blog-featured .row-fluid .span4 {
    width: calc( 8.3333% * 6 - var(--column-gap) );
  }
  
  .hs-blog-listing .blog-featured .row-fluid .span4 .blog-card {
    max-width: 421px;
  }
  
  .blog-card .blog-card-image img {
    max-width: initial; 
  }
  
  .blog-feed-container .blog-feed-wrapper {
    padding: 0 2.4rem 48px;
  }

  .blog-feed-container .blog-feed-wrapper .blog-feed-posts .blog-card {
    margin-bottom: 24px;
  }
  
  .blog-card .blog-card-row .row-fluid {
    display: flex;
  }
  
  .blog-card {
    margin-bottom: 16px !important;
  }
}

@media only screen and (max-width: 767px) {
  
  .blog-card .blog-card-row .row-fluid {
    display: flex;
  }
  
  .blog-card .blog-card-row .row-fluid .span5 {
    order: 1;
    margin-bottom: 24px;
  }
  
  .blog-card .blog-card-row .row-fluid .span7 {
    order: 2;
  }
  
  .hs-blog-listing .blog-featured .row-fluid .span4 {
    width: 100%;
  }
  
  .hs-blog-listing .blog-featured .row-fluid .span4 .blog-card {
    margin: 0 auto;
  }
 
}

.b2b-blog .blog-card-tags .blog-card-tag {
  color: #5C99C7;
  background: #E1F2FF;
}

.b2b-blog .blog-feed-container .blog-feed-wrapper .blog-feed-filter .widget-module ul li.active a,
.b2b-blog .blog-feed-container .blog-feed-wrapper .blog-feed-filter .widget-module ul li a:hover {
  background: #E1F2FF;
  color: #5C99C7;
}

.b2b-blog .blog-card .blog-card-image a::before {
  border: solid 5px #5C99C7;
}

.b2b-blog .blog-card .blog-card-title a:hover {
  color: #5C99C7;
}

.blog-pagination {
    padding: 0px 24px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.blog-pagination .blog-pagination-link {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.03em;
    color: #000;
}

.blog-pagination .blog-pagination-link:not(.blog-pagination-prev-link-disabled):not(.blog-pagination-next-link-disabled):hover,
.blog-pagination .blog-pagination-number-link {
    color: #e26b00;
}

.blog-pagination .blog-pagination-link.blog-pagination-prev-link-disabled,
.blog-pagination .blog-pagination-link.blog-pagination-next-link-disabled {
  opacity: 0.5;
}

.blog-pagination .blog-pagination-link.blog-pagination-prev-link-disabled:hover,
.blog-pagination .blog-pagination-link.blog-pagination-next-link-disabled:hover {
  cursor: not-allowed;
}

.blog-pagination-link.blog-pagination-number-link.blog-pagination-link-active {
  padding: 0 10px;
  border-radius: 8px;
  background: #e26b00;
  color: white; 
}

.blog-pagination-link.blog-pagination-number-link.blog-pagination-link-active:hover {
  color: white !important;
}
.hs-blog-post article .article-header {
  max-width: calc(1216px + 4.8rem);
  margin: 0 auto;
  padding: 24px 2.4rem 40px;
}

.hs-blog-post article .article-header .button-container,
.hs-blog-post article .article-header .blog-card-meta,
.hs-blog-post article .article-header h1.blog-card-title,
.hs-blog-post article .article-header .blog-card-tags {
  max-width: 968px;
  margin: 0 auto;
}

.hs-blog-post article .article-header .button-container {
  margin-bottom: 36px;
}

.hs-blog-post article .article-header .button-container .button {
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  line-height: 168.5%;
  letter-spacing: 0.48px;
}

.hs-blog-post article .article-header .blog-card-meta {
  margin-bottom: 17px;
  color: #000;
  font-size: 16px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: 152.2%;
}

.hs-blog-post article .article-header h1.blog-card-title {
  color: #000;
  font-size: 64px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  line-height: 114.5%;
  margin-bottom: 16px;
}

@media only screen and (max-width: 900px){
  .hs-blog-post article .article-header h1.blog-card-title {
    font-size: 32px;
  }
}

.hs-blog-post article .article-header .blog-card-tags {
  margin-bottom: 33px;
}

.hs-blog-post article .article-header .blog-card-image img {
  border-radius: 32px;
  width: 100%;
  height: auto;
  max-width: initial;
  max-height: initial;
}

.hs-blog-post article .article-body,
.hs-blog-post article .article-footer  {
  margin: 0 auto;
  max-width: calc(720px + 4.8rem);
}

.hs-blog-post article .article-body {
  padding: 40px 2.4rem 25px;
}


.hs-blog-post article .article-body img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.hs-blog-post article .article-footer {
  padding: 25px 2.4rem 76px;
}

.hs-blog-post article .article-footer h2 {
  color: #000;
  font-size: 12px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: 141.7%;
  margin-bottom: 17px;
}

ul.social-share {
  padding: 0;
  margin: 0;
  list-style: none;
}

ul.social-share li {
  display: inline-block;
  padding: 8px 24px;
  text-align: center;
  border-radius: 49px;
  margin-right: 24px;
  margin-bottom: 12px;
}

ul.social-share li:last-child {
  margin-right: 0;
}

ul.social-share li a {
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  line-height: 168.5%;
  letter-spacing: 0.48px;
  text-decoration: none;
}

ul.social-share li a svg {
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

ul.social-share li.social-facebook {
  background: #E3E7EE;
}

ul.social-share li.social-facebook a {
  color: #315DA5;
}

ul.social-share li.social-twitter {
  background: #E9F1FF;
}

ul.social-share li.social-twitter a {
  color: #3CA4E7;
}

ul.social-share li.social-email {
  background: #FFECDB;
}

ul.social-share li.social-email a {
  color: #B15100;
}

@media only screen and (max-width: 900px){
  .hs-blog-post article .article-header {
    padding: 24px 2.4rem 20px;
  }
  
  .hs-blog-post article .article-header .blog-card-tags {
    margin-bottom: 16px;
  }
  
  .hs-blog-post article .article-body {
    padding: 20px 2.4rem 12px;
  }
  
  .hs-blog-post article .article-footer {
    padding: 12px 2.4rem 34px;
  }
}

@media only screen and (max-width: 767px) {
  .hs-blog-post article .article-header {
    padding: 24px 2.4rem 12px;
  }
  
  .hs-blog-post article .article-body {
    padding: 12px 2.4rem 12px;
  }
  
  .hs-blog-post article .article-footer {
    padding: 12px 2.4rem 12px;
  }
  
  ul.social-share li {
    margin-right: 12px;
  }

  ul.social-share li:last-child {
    margin-right: 0;
  }
}

.main-container-wrapper article .article-body a:not(.button) {
  text-decoration: underline;
  color: #E26B00;
}

.main-container-wrapper article .article-body a:not(.button):hover {
  color: #C15C01;
}
.data-partner-case-studies {
  padding: 4rem 2.4rem 8.8rem;}
.data-partner-case-studies .data-partners-hero-banner {
  max-width: 760px;
  margin: 0 auto 68px;
  text-align: center;}
.data-partner-case-studies .data-partners-hero-banner {
  max-width: 853px;}
.data-partner-case-studies .data-partners-hero-banner svg {
  margin-bottom: 16px;
  width: 112px;
  height: 112px;}
.data-partner-case-studies .data-partners-hero-banner h1 {
  margin-bottom: 0;}
.data-partners-listing-grid {
  max-width: 1464px;
  margin: 0 auto;
  padding: 0;
  row-gap: 24px;
  column-gap: 24px;
  flex-wrap: wrap;}
..data-partners-listing-grid .span4 .data-partners-card {
  position: relative;
  height: 100%;}
.data-partners-listing-grid .span4 .data-partners-card .data-partners-card-inner {
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 16px;
  height: 100%;}
.data-partners-listing-grid .span4 .data-partners-card .data-partners-card-inner .data-partners-card-image {
  margin-bottom: 16px;}
.data-partners-listing-grid .span4 .data-partners-card .data-partners-card-inner .data-partners-card-image a {
  display: block;}
.data-partners-listing-grid .span4 .data-partners-card .data-partners-card-inner .data-partners-card-image a img {
  width: 100%;
  height: 408px;
  max-width: 408px;
  object-fit: cover;
  margin: 0 auto;
  display: block;}
.data-partners-listing-grid .span4 .data-partners-card .data-partners-card-inner .data-partners-card-info .data-partners-card-name {
  margin-bottom: 4px;}
.data-partners-listing-grid .span4 .data-partners-card .data-partners-card-inner .data-partners-card-info .data-partners-card-name a {
  color: #000000;
  text-decoration: none;}
.data-partners-listing-grid .span4 .data-partners-card .data-partners-card-inner .data-partners-card-info .data-partners-card-roles {
  margin-bottom: 16px;}
.data-partners-listing-grid .span4 .data-partners-card .data-partners-card-inner .data-partners-card-info .data-partners-card-roles .data-partners-role {
  font-family: Poppins; !important}
.data-partners-listing-grid .span4 .data-partners-card .data-partners-card-inner .data-partners-card-info .button-container a {
  font-size: 16px;
  font-weight: 600;
  line-height: 168.5%;
  letter-spacing: 0.48px;}
@media only screen and (max-width: 1000px){
  .data-partners-listing-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;}
  .data-partners-listing-grid .span4 {
    width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));}
}
@media only screen and (max-width: 767px) {
  .data-partners-listing-grid {
    flex-direction: column;}
  .data-partners-listing-grid .span4 {
    width: 100%;
    margin: 0 auto;
    max-width: 472px;}
}
.data-partner-case-study {
  max-width: 971px;
  width: 100%;
  margin: 0 auto;
  padding: 8rem 2.4rem;}
.data-partner-case-study .data-partner-case-study-inner {
  border-radius: 16px;
  background: #FFF;
  padding: 7.003089598352215% 12.976313079299691%;}
.data-partner-case-study .data-partner-case-study-inner .data-partner-case-study-content > img {
  border: solid 4px #E26B00;
  width: 158px;
  height: 158px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 32px;}
.data-partner-case-study .data-partner-case-study-inner .data-partner-case-study-content .data-partner-case-study-pretitle {
  margin-bottom: 8px;}
.data-partner-case-study .data-partner-case-study-inner .data-partner-case-study-content .data-partner-case-study-pretitle svg {
  vertical-align: middle;
  margin-right: 8px;}
.data-partner-case-study .data-partner-case-study-inner .data-partner-case-study-content .data-partner-case-study-name {
  margin-bottom: 33px;}
.data-partner-case-study .data-partner-case-study-inner .data-partner-case-study-content .data-partner-case-study-quote {
  margin-bottom: 32px;}
.data-partner-case-study .data-partner-case-study-inner .data-partner-case-study-content .data-partner-case-study-quote svg {  
  display: inline-block;
  margin-right: 24px;
  vertical-align: top;}
.data-partner-case-study .data-partner-case-study-inner .data-partner-case-study-content .data-partner-case-study-quote > div {
  width: calc(100% - 70px);
  display: inline-block;}
.data-partner-case-study .data-partner-case-study-inner .data-partner-case-study-content .data-partner-case-study-quote > div,
.data-partner-case-study .data-partner-case-study-inner .data-partner-case-study-content .data-partner-case-study-quote > div * {
  color: #000;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%;}
.data-partner-case-study .data-partner-case-study-inner .data-partner-case-study-content .data-partner-case-study-journey .data-partner-case-study-journey-title {
  margin-bottom: 16px;}
.data-partner-case-study .data-partner-case-study-inner .data-partner-case-study-content .data-partner-case-study-journey span,
.data-partner-case-study .data-partner-case-study-inner .data-partner-case-study-content .data-partner-case-study-journey span * {
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 152.2%;}
@media only screen and (max-width: 900px){
  .data-partner-case-study {
    padding: 3.6rem 2.4rem;}
  .data-partner-case-study .data-partner-case-study-inner .data-partner-case-study-content > img,
  .data-partner-case-study .data-partner-case-study-inner .data-partner-case-study-content .data-partner-case-study-name {
    margin-bottom: 24px;}
}
.tech-partners-template .header-container-wrapper.sticky .header-content-wrapper .header-middle .hs-menu-wrapper ul li a {
  color: #000;
}

.tech-partners-template .header-container-wrapper.sticky .header-content-wrapper .header-middle .hs-menu-wrapper ul li a:hover {
  color: #E26B00;
}

.tech-partners-template .header-container-wrapper.sticky .header-content-wrapper .header-middle .hs-menu-wrapper ul li:last-child a {
  color: #fff;
  background: #E26B00;
}

.tech-partners-template .header-container-wrapper.sticky .header-content-wrapper .header-middle .hs-menu-wrapper ul li:last-child a:hover {
  color: #fff;
  background: #C15C01;
}

.tech-partners-template .header-container-wrapper.sticky .header-content-wrapper .header-right #login-button {
  border: 1px solid #000;
}

.tech-partners-template .header-container-wrapper.sticky .header-content-wrapper .header-right #login-button a {
  color: #000;
}

.tech-partners-template .header-container-wrapper.sticky .header-content-wrapper .header-right #login-button svg, 
.tech-partners-template .header-container-wrapper.sticky .header-content-wrapper .header-right #menu-button svg {
  filter: initial;
}

.tech-partners-template .header-container-wrapper.sticky .header-content-wrapper .header-right #menu-button {
  color: #000; 
}

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

.tech-partners-template .header-container-wrapper.sticky .header-content-wrapper .header-left .white,
.tech-partners-template .header-container-wrapper.sticky .header-content-wrapper .header-left .data-partners-logo {
  display: none;
}

.tech-partners-template .header-content-wrapper .header-left .black,
.tech-partners-template .header-content-wrapper .header-left .white {
  display: none;
}

.tech-partners-template .header-content-wrapper .header-middle .hs-menu-wrapper ul li a {
  color: #FFFFFF;
}

.tech-partners-template .header-content-wrapper .header-right #login-button:hover a {
  color: #B05101;
}

.tech-partners-template .header-content-wrapper .header-right #login-button:hover svg {
  filter: invert(38%) sepia(85%) saturate(5116%) hue-rotate(28deg) brightness(92%) contrast(99%);
}

.tech-partners-template .header-content-wrapper .header-right #login-button {
  border: 1px solid #FFFFFF;
}

.tech-partners-template .header-content-wrapper .header-right #login-button a {
  color: #FFFFFF;
}

.tech-partners-template .header-content-wrapper .header-right #menu-button {
  color: #FFFFFF;
}

.tech-partners-template .header-content-wrapper .header-right #login-button svg,
.tech-partners-template .header-content-wrapper .header-right #menu-button svg {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(87deg) brightness(105%) contrast(103%); 
}

.tech-partners-template .hero-banner-row .hero-banner-column {
  display: flex;
  flex-direction: column;
}

.tech-partners-template .hero-banner-row .hero-banner-column.span5 {
  width: 60%;
}

.tech-partners-template .hero-banner-row .hero-banner-column.span7 {
  width: 40%;
}

.tech-partners-template .hero-banner .hero-banner-column .hero-banner-heading h1 {
  font-size: 56px;
  line-height: 64.12px;
}

.tech-partners-template .hero-banner .hero-banner-column .hero-banner-description * {
  font-size: 30px;
  line-height: 37px;
  max-width: 565px;
}

.tech-partners-template .row-number-3 > .row-fluid {
  max-width: 928px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.tech-partners-template h2 {
  font-size: 48px;
  line-height: 54.96px;
}

.tech-partners-template .row-number-7 > .row-fluid {
  max-width: 1200px;
  margin-left: auto !important;
  margin-right: auto !important;
}


.tech-partners-template .row-number-11 > .row-fluid {
  max-width: 1200px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.data-partners-wrapper.row-fluid {
  align-items: center;
  justify-content: center;
}

.data-partners-wrapper.row-fluid .form-container {
  padding: 24px 54px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 4px 24px 8px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
}

.data-partners-wrapper.row-fluid .form-container p.form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 37.2px;
  margin-bottom: 20px;
}

.data-partners-wrapper.row-fluid .form-container ul.inputs-list {
  padding-inline-start: 0px;
  list-style-type: none;
}

.data-partners-wrapper.row-fluid .form-container ul.inputs-list .hs-form-booleancheckbox input.hs-input {
  width: 13px !important;
  margin-top: 5px;
}

.data-partners-wrapper.row-fluid .form-container .actions input {
  width: 100%;
  margin-top: 10px;
}

.data-partners-wrapper.row-fluid .form-container .actions input::hover {
  cursor: pointer;
}

.data-partners-wrapper.row-fluid .content-container {
  border-radius: 16px;
  background: var(--gradient, linear-gradient(33deg, #E26B00 0%, #FE963D 100%));
  padding: 24px 48px 48px;
  height: max-content;
  color: #fff;
  text-align: center;
  margin-left: -20px;
}

.data-partners-wrapper.row-fluid .content-container img.icon {
  margin-bottom: 10px;
}

.data-partners-wrapper.row-fluid .content-container p.sub-heading {
  max-width: 403px;
  margin: 0 auto 18px;
}

.data-partners-wrapper.row-fluid .content-container p.description {
  max-width: 400px;
  margin: 0 auto 28px;
}

.data-partners-wrapper.row-fluid .content-container a {
  color: #fff;
}

.data-partners-wrapper.row-fluid .content-container a:hover {
  color: #000;
}

.data-partners-wrapper.row-fluid .content-container a:hover svg {
  filter: invert(100%) sepia(67%) saturate(174%) hue-rotate(198deg) brightness(113%) contrast(88%);
}

@media only screen and (max-width: 1025px) {
  .tech-partners-template .hero-banner-row .hero-banner-column.span5 {
    width: 50%;
  }

  .tech-partners-template .hero-banner-row .hero-banner-column.span7 {
    width: 50%;
  }
}
  
@media only screen and (max-width: 900px) {
  .tech-partners-template .hero-banner-row {
    display: flex;
    flex-direction: column-reverse;
  }
  
  .tech-partners-template .hero-banner-row .hero-banner-column {
    display: flex;
    flex-direction: column;
  }

  .tech-partners-template .hero-banner-row .hero-banner-column.span5 {
    width: 100%;
  }

  .tech-partners-template .hero-banner-row .hero-banner-column.span7 {
    width: 100%;
  }
  
  .tech-partners-template .row-number-3 > .row-fluid {
    display: flex;
  }
  
  .tech-partners-template .row-number-3 .span4 {
    flex-direction: row;
    width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
  }
  
  .tech-partners-template .row-number-3 .span4 .icon-box-header h5 {
    font-size: 18px;
  }
  
  .tech-partners-template .row-number-11 > .row-fluid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .tech-partners-template .row-number-11 .span3 {
    width: 50%;
    margin-bottom: 48px;
  }
  
  .tech-partners-template .row-number-11 .span3:nth-of-type(odd) {
    padding-right: 24px !important;
  }
  
  .tech-partners-template .row-number-11 .span3:nth-of-type(even) {
    padding-left: 24px !important;
  }
  
  .data-partners-wrapper.row-fluid .form-container .input input {
    max-width: unset;
  }
  
  .data-partners-wrapper.row-fluid .content-container {
    margin-left: 0px;
    padding: 200px 48px 48px;
    border-radius: 0px;
    margin-top: -150px;
  }
  
  .data-partners-wrapper.row-fluid .form-container {
    width: 90%;
    padding: 44px 54px;
  }
  
  .data-partners-wrapper.row-fluid {
    display: flex;
    flex-direction: column;
  }
  
  .data-partners-wrapper.row-fluid .content-container .cta-wrapper.row-fluid {
    display: flex;
  }
  
  .tech-partners-template .row-number-7 .row-fluid {
    padding: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .tech-partners-template .hero-banner .hero-banner-container .hero-banner-column .hero-banner-pre-header p {
    font-size: 18px;
    line-height: 21px;
  }
  
  .tech-partners-template .hero-banner .hero-banner-container.has-wave {
    padding-bottom: 34px;
  }
  
  .tech-partners-template .hero-banner .hero-banner-column .hero-banner-heading h1 {
    font-size: 38px;
    line-height: 44px;
  }
  
  .tech-partners-template .hero-banner .hero-banner-column .hero-banner-description * {
    font-size: 14px;
    line-height: 22px;
    max-width: 565px;
  }
  
  .tech-partners-template h2 {
    font-size: 32px;
    line-height: 36px;
  }
  
  .tech-partners-template .row-number-11 .span3 {
    width: 50%;
    margin-bottom: 24px;
  }
  
  .tech-partners-template .row-number-11 .span3:nth-of-type(odd) {
    padding-right: 12px !important;
  }
  
  .tech-partners-template .row-number-11 .span3:nth-of-type(even) {
    padding-left: 12px !important;
  }
  
  .tech-partners-template .row-number-3>.row-fluid {
    display: flex;
  }
  
  .tech-partners-template .row-number-3 .span4 {
    flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .tech-partners-template .dnd_area-row-1-margin {
      margin-top: 60px !important;
  }
  
  .tech-partners-template .dnd_area-row-2-margin {
    margin-top: 50px !important;
    margin-bottom: 40px !important;
  }
  
  .tech-partners-template .dnd_area-row-3-margin {
    margin-bottom: 60px !important;
  }
}

@media only screen and (max-width: 767px) {
  .tech-partners-template .dnd_area-row-1-margin {
    margin-top: 60px !important;
    margin-bottom: 40px !important;
  }
  
  .tech-partners-template .dnd_area-row-3-margin {
    margin-bottom: 50px!important;
    margin-top: 68px !important;
  }
  
  .data-partners-wrapper.row-fluid .form-container {
      padding: 24px;
  }
  
  .data-partners-wrapper.row-fluid .content-container {
    border-radius: 0;
    margin-left: 0;
    margin-top: -150px;
    padding: 200px 20px 48px;
  }
  
  .data-partners-wrapper.row-fluid .cta-wrapper.row-fluid .span6:first-of-type {
    margin-bottom: 40px;
  }
}
.employee-case-studies {
  padding: 4rem 2.4rem 8.8rem;}
.employee-case-studies .employee-hero-banner {
  max-width: 760px;
  margin: 0 auto 68px;
  text-align: center;}
.employee-case-studies .employee-hero-banner svg {
  margin-bottom: 16px;
  width: 112px;
  height: 112px;}
.employee-case-studies .employee-hero-banner h1 {
  margin-bottom: 0;}
.employee-listing-grid {
  max-width: 1464px;
  margin: 0 auto;
  padding: 0;
  row-gap: 24px;
  column-gap: 24px;
  flex-wrap: wrap;}
.employee-listing-grid .span4 .employee-card {
  position: relative;
  height: 100%;}
.employee-listing-grid .span4 .employee-card .employee-card-border {
  position: absolute;
  top: -16px;
  left:0;}
.employee-listing-grid .span4 .employee-card .employee-card-inner {
  padding: 16px 14px;
  margin: 16px 0 0 30px;
  height: 100%;
  border-radius: 16px;
  background: #FFF;}
.employee-listing-grid .span4 .employee-card .employee-card-inner .employee-card-image {
  margin-bottom: 16px;}
.employee-listing-grid .span4 .employee-card .employee-card-inner .employee-card-image a {
  display: block;}
.employee-listing-grid .span4 .employee-card .employee-card-inner .employee-card-image a img {
  width: 100%;
  height: auto;
  max-width: 408px;
  position: relative;
  object-fit: cover;
  margin: 0 auto;
  display: block;}
.employee-listing-grid .span4 .employee-card .employee-card-inner .employee-card-info {
  text-align: left;}
.employee-listing-grid .span4 .employee-card .employee-card-inner .employee-card-info .employee-card-name {
  margin-bottom: 4px;}
.employee-listing-grid .span4 .employee-card .employee-card-inner .employee-card-info .employee-card-name a {
  color: #000000;
  text-decoration: none}
.employee-listing-grid .span4 .employee-card .employee-card-inner .employee-card-info .employee-card-roles {
  margin-bottom: 16px;}
.employee-listing-grid .span4 .employee-card .employee-card-inner .employee-card-info .employee-card-roles .employee-role {
  font-family: Poppins; !important}
.employee-listing-grid .span4 .employee-card .employee-card-inner .employee-card-info .button-container a {
  font-size: 16px;
  font-weight: 600;
  line-height: 168.5%;
  letter-spacing: 0.48px;}
@media only screen and (max-width: 900px){
  .employee-listing-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;}
  .employee-listing-grid .span4 {
    width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));}
}
@media only screen and (max-width: 767px) {
  .employee-listing-grid {
    flex-direction: column;}
  .employee-listing-grid .span4 {
    width: 100%;
    margin: 0 auto;
    max-width: 472px;}
}
.employee-case-study {
  padding: 52px 0 80px;
  max-width: 1464px;
  margin: 0 auto;}
.employee-case-study .employee-case-study-inner .employee-case-study-pretitle {
  margin-bottom: 10px;}
.employee-case-study .employee-case-study-inner .employee-case-study-pretitle svg {
  vertical-align: middle;
  margin-right: 8px;}
.employee-case-study .employee-case-study-inner .employee-case-study-name {
  margin-bottom: 24px;}
.employee-case-study .employee-case-study-inner .employee-case-study-quote {
  margin-bottom: 32px;}
.employee-case-study .employee-case-study-inner .employee-case-study-quote > svg {
  display: inline-block;
  margin-right: 24px;
  vertical-align: top;}
.employee-case-study .employee-case-study-inner .employee-case-study-quote > div {
  width: calc(100% - 70px);
  display: inline-block;
  color: #000;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%;}
.employee-case-study .employee-case-study-inner .employee-case-study-quote > div * {
  color: #000;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%;
  margin-bottom: 0;}
.employee-case-study .employee-case-study-inner .employee-case-study-journey .employee-case-study-journey-title {
  margin-bottom: 16px;}
.employee-case-study .employee-case-study-inner .employee-case-study-journey span,
.employee-case-study .employee-case-study-inner .employee-case-study-journey span * {
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 152.2%;}
.employee-case-study .employee-case-study-inner .employee-case-study-image {
  border-radius: 29.103px;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  background: #FFF;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-right: 65px;
  padding: 34px 34px 0 34px;}
@media only screen and (max-width: 900px){
  .employee-case-study {
    padding: 40px 0 40px;}
  .employee-case-study .employee-case-study-inner {
    padding: 0 24px;}
  .employee-case-study .employee-case-study-inner .employee-case-study-image {
    max-width: 520px;
    margin: 0 0 24px;}
}
.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 > 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: #e26b00 !important;
}

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

html body.for-households-template .header-content-wrapper .header-right #login-button svg,
html body.for-households-template .header-content-wrapper .header-right #menu-button svg {
  filter: none;
}

body.student-discounts-template:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-middle .hs-menu-wrapper ul li:not(:last-child) a,
body.student-discounts-template:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-right #login-button a, 
body.student-discounts-template:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-right #menu-button a {
  color: black;
}

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

body.student-discounts-template:has(.hero-banner.white-header) .header-container-wrapper:not(.sticky) .header-right #menu-button svg path {
  stroke: #000;
}

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


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

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

body.student-discounts-template .row-number-4 {
  padding-bottom: 35px;
}