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

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

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

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

/* Tools

*/ 





 











/* 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) {
  margin: 0 0 1.4rem;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: #595959;
}

.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: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.1em;
  color: #EF5A97;
}

.layers-default-module.heading-module.paragraph > .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: 26px;
  color: #595959;
}

.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: 70px;
  line-height: 78px;
}

.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: 71px;
}

.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: 61.25px;
}

.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: 38.28px;
}

.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: 25.52px;
}

@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: 40px;
    line-height: 51.04px;
  }

  .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: 30px;
    line-height: 38.28px;
  }

  .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: 24px;
    line-height: 30.62px;
  }

  .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: 22px;
    line-height: 28.07px;
  }

  .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: 25.52px;
  }
}

/* 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;
}
 
/* Dynamic Content */
.dynamically-hidden,
.dynamically-hidden * {
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none !important;
  display: none !important;
}
/* Anchors & Buttons */

.hs-button, .hs-button.primary_large, button, .button {
    border-radius: 50px;
    background: #FFF;
    padding: 16px 48px;
    display: inline-block;
    text-align: center;
    color: #EF5A97;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    border: 4px solid #FFF;
    text-decoration: none;
    transition: all 0.3s;
}
  
.hs-button:hover, .hs-button.primary_large:hover, button:hover, .button:hover {
    background: #F5D7E4;
    border-color: #F5D7E4;
}
  
.hs-button:focus, .hs-button.primary_large:focus, button:focus, .button:focus {
    background: #EDB6CC;
    border-color: #EDB6CC;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
    border-radius: 50px;
}

.hs-button:disabled, .hs-button[disabled=disabled],
.hs-button.primary_large:disabled, .hs-button.primary_large[disabled=disabled] {
  background: #FFF;
  color: #E79CBA;
}

.hs-button.primary_small,
.hs-button.secondary_small,
.hs-button.primary_small_outlined {
  padding: 12px 32px;
}

.hs-button.primary_small_outlined {
  border: 2px solid #EF5A97;
}

.hs-button.primary_small_outlined:hover {
  border-color: #D44F85;
  background: #F5D7E4;
}
.hs-button.primary_small_outlined:focus {
  border-radius: 50px;
  border: 4px solid #E79CBA;
  background: #F5D7E4;
  -webkit-box-shadow: inset 2px 2px 0px 0px rgba(239,90,151), inset -2px -2px 0px 0px rgba(239,90,151);
  -moz-box-shadow: inset 2px 2px 0px 0px rgba(239,90,151), inset -2px -2px 0px 0px rgba(239,90,151);
  box-shadow: inset 2px 2px 0px 0px rgba(239,90,151), inset -2px -2px 0px 0px rgba(239,90,151);
}

.hs-button.secondary_large,
.hs-button.secondary_small {
  color: #FFF;
  background: #EF5A97;
  border-color: #EF5A97;
}

.hs-button.secondary_large:hover,
.hs-button.secondary_small:hover {
  background: #D44F85;
  border-color: #D44F85;
}

.hs-button.secondary_large:focus,
.hs-button.secondary_small:focus {
  background: #D44F85;
  border-color: #E79CBA;
  -webkit-box-shadow: initial;
  -moz-box-shadow: initial;
  box-shadow: initial;
  border-radius: 50px;
}

.hs-button.secondary_large:focus {
  padding: 16px 48px;
}

.hs-button.secondary_large:disabled, .hs-button.secondary_large[disabled=disabled],
.hs-button.secondary_small:disabled, .hs-button.secondary_small[disabled=disabled]{
  background: #E79CBA;
  border-color: #E79CBA;
}

.hs-button.accent_link,
.hs-button.accent_link_black,
.hs-button.accent_link_white,
a {
  border-radius: initial;
  background: transparent;
  text-align: initial;
  font-family: 'Roboto', sans-serif;
  border: 4px solid transparent;
  text-decoration: underline;
  padding: 0;
  transition: all 0.3s;
  color: #EF5A97;
}

.hs-button.accent_link_black {
  color: #343434;
}

.hs-button.accent_link_white {
  color: #ffffff;
}

.hs-button.accent_link:hover,
.hs-button.accent_link_black:hover,
.hs-button.accent_link_white:hover,
a:hover {
  text-decoration: none;
}

.hs-button.accent_link:focus, a:focus {
  padding: 6px;
  text-decoration: none;
  border-radius: 4px;
  border-color: #E79CBA;
  -webkit-box-shadow: inset 2px 2px 0px 0px rgba(239,90,151,1), inset -2px -2px 0px 0px rgba(239,90,151,1);
  -moz-box-shadow: inset 2px 2px 0px 0px rgba(239,90,151,1), inset -2px -2px 0px 0px rgba(239,90,151,1);
  box-shadow: inset 2px 2px 0px 0px rgba(239,90,151,1), inset -2px -2px 0px 0px rgba(239,90,151,1);
}

.hs-button.accent_link_black:focus {
  padding: 6px;
  text-decoration: none;
  border-radius: 4px;
  border-color: #B1B1B1;
  -webkit-box-shadow: inset 2px 2px 0px 0px rgba(61,61,61,1), inset -2px -2px 0px 0px rgba(61,61,61,1);
  -moz-box-shadow: inset 2px 2px 0px 0px rgba(61,61,61,1), inset -2px -2px 0px 0px rgba(61,61,61,1);
  box-shadow: inset 2px 2px 0px 0px rgba(61,61,61,1), inset -2px -2px 0px 0px rgba(61,61,61,1);
}

.hs-button.accent_link_black:disabled, .hs-button.accent_link_black[disabled=disabled] {
  color: #B1B1B1;
}

.hs-button.accent_link_white:focus {
  padding: 6px;
  text-decoration: none;
  border-radius: 4px;
  border-color: #DCDCDC;
  -webkit-box-shadow: inset 2px 2px 0px 0px rgba(250,251,251,1), inset -2px -2px 0px 0px rgba(250,251,251,1);
  -moz-box-shadow: inset 2px 2px 0px 0px rgba(250,251,251,1), inset -2px -2px 0px 0px rgba(250,251,251,1);
  box-shadow: inset 2px 2px 0px 0px rgba(250,251,251,1), inset -2px -2px 0px 0px rgba(250,251,251,1);
}

.hs-button.accent_link_white:disabled, .hs-button.accent_link_white[disabled=disabled] {
  color: #DCDCDC;
}
/* Fields */

.hs-form-field {
  margin-bottom: 28px;
}

/* 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 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
}

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  padding: 12px;
  border: 2px solid #B1B1B1;
  outline: 4px 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 {
  border: 2px solid #5C99C7;
  outline: 4px solid #9DC2DD;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

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

/* Headings and text */

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

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

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

.hs-input.invalid.error {
  border: 2px solid #F06D6D;
  outline: 4px solid #F6A7A7;
}

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

.hs-error-msg {
  color: #C75454;
  margin-top: 12px;
  margin-bottom: 0px;
}
 
/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}



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

/* Header DND sections */
.fused-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 400;
}

.fused-header .fused_header-top {
  z-index: 300;
  position: relative;
}

.fused-header .fused_header-main {
  background: transparent;
  transition: all 0.3s ease-in-out;
}

.fused-header.scrolling .fused_header-main {
  background: #fff;
  border-bottom: 2px solid rgba(238, 238, 238, 1);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.fused-header .fused_header-main .layers-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 27px;
  padding-bottom: 27px;
}

.fused-header .fused_header-main .header_logo-column {
  height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 20;
}

.fused-header.scrolling .fused_header-main .header_logo-column .header_logo_light,
.fused-header .fused_header-main .header_logo-column .header_logo_dark {
    display: none;
}

.fused-header .fused_header-main .header_logo-column .header_logo_light,
.fused-header.scrolling .fused_header-main .header_logo-column .header_logo_dark {
    display: block;
}

.fused-header .fused_header-main .header_logo-column .header_logo_light img,
.fused-header .fused_header-main .header_logo-column .header_logo_dark img {
    display: block;
    width: 132px !important;
}

.fused-header .fused_header-main .header_menu-column {
  flex: 1 0 100%;
  text-align: center;
  margin-top: -42px;
  z-index: 10;
}

.fused-header .fused_header-main .header_menu-column ul {
  padding: 0;
  margin: 0;
  list-style: 0;
}

.fused-header .fused_header-main .header_menu-column ul li {
  display: inline-block;
  margin-left: 14px;
  margin-right: 14px;
}

.fused-header .fused_header-main .header_menu-column ul li a,
.header_buttons-sign-in,
.header_buttons-menu-toggle,
.fused_header-popup-container .popup-close-button {
  color: #fff;
  border-radius: initial;
  background: transparent;
  text-align: initial;
  font-family: 'Roboto', sans-serif;
  border: 4px solid transparent;
  text-decoration: none;
  padding: 0;
  transition: all 0.3s;
  font-weight: 600;
  display: block;
}

.fused-header .fused_header-main .header_menu-column ul li a:hover,
.header_buttons-sign-in:hover,
.header_buttons-menu-toggle:hover,
.fused_header-popup-container .popup-close-button:hover {
  text-decoration: underline;
  cursor: pointer;
}

.fused-header .fused_header-main .header_menu-column ul li a:focus,
.header_buttons-sign-in:focus,
.header_buttons-menu-toggle:focus {
  padding: 6px;
  text-decoration: none;
  border-radius: 4px;
  border-color: #DCDCDC;
  -webkit-box-shadow: inset 2px 2px 0px 0px rgba(250,251,251,1), inset -2px -2px 0px 0px rgba(250,251,251,1);
  -moz-box-shadow: inset 2px 2px 0px 0px rgba(250,251,251,1), inset -2px -2px 0px 0px rgba(250,251,251,1);
  box-shadow: inset 2px 2px 0px 0px rgba(250,251,251,1), inset -2px -2px 0px 0px rgba(250,251,251,1);
}

.fused-header .fused_header-main .header_menu-column ul li:last-child a {
    border-radius: 50px;
    background: #FFF;
    padding: 12px 32px;
    display: inline-block;
    text-align: center;
    color: #EF5A97;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    border: 4px solid #FFF;
    text-decoration: none;
    transition: all 0.3s;
}

.fused-header .fused_header-main .header_menu-column ul li:last-child a:hover {
    background: #F5D7E4;
    border-color: #F5D7E4;
}
  
.fused-header .fused_header-main .header_menu-column ul li:last-child a:focus {
    background: #EDB6CC;
    border-color: #EDB6CC;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
    border-radius: 50px;
    padding: 12px 32px;
}

.fused-header.scrolling .fused_header-main .header_menu-column ul li a,
.fused-header.scrolling .header_buttons-sign-in,
.fused-header.scrolling .header_buttons-menu-toggle,
.fused_header-popup-container .popup-close-button {
  color: #EF5A97;
}

.fused-header.scrolling .fused_header-main .header_menu-column ul li a:focus,
.fused-header.scrolling .header_buttons-sign-in:focus,
.fused-header.scrolling .header_buttons-menu-toggle:focus, 
.fused_header-popup-container .popup-close-button:focus {
  padding: 6px;
  text-decoration: none;
  border-radius: 4px;
  border-color: #E79CBA;
  -webkit-box-shadow: inset 2px 2px 0px 0px rgba(239,90,151,1), inset -2px -2px 0px 0px rgba(239,90,151,1);
  -moz-box-shadow: inset 2px 2px 0px 0px rgba(239,90,151,1), inset -2px -2px 0px 0px rgba(239,90,151,1);
  box-shadow: inset 2px 2px 0px 0px rgba(239,90,151,1), inset -2px -2px 0px 0px rgba(239,90,151,1);
}

.fused-header.scrolling .fused_header-main .header_menu-column ul li:last-child a {
  border: 2px solid #EF5A97;
}

.fused-header.scrolling .fused_header-main .header_menu-column ul li:last-child a:hover {
  border-color: #D44F85;
  background: #F5D7E4;
}

.fused-header.scrolling .fused_header-main .header_menu-column ul li:last-child a:focus {
  border: 4px solid #E79CBA;
  background: #F5D7E4;
  -webkit-box-shadow: inset 2px 2px 0px 0px rgba(239,90,151), inset -2px -2px 0px 0px rgba(239,90,151);
  -moz-box-shadow: inset 2px 2px 0px 0px rgba(239,90,151), inset -2px -2px 0px 0px rgba(239,90,151);
  box-shadow: inset 2px 2px 0px 0px rgba(239,90,151), inset -2px -2px 0px 0px rgba(239,90,151);
  border-radius: 50px;
  padding: 12px 32px;
}

.fused-header .fused_header-main .header_buttons-column {
  display: flex;
  height: 42px;
  align-items: center;
  z-index: 20;
  gap: 28px;
}

.header_buttons-sign-in,
.header_buttons-menu-toggle {
  display: inline-block;
}

.header_buttons-sign-in:hover,
.header_buttons-menu-toggle:hover {
  cursor: pointer;
}

.header_buttons-sign-in-icon,
.header_buttons-menu-toggle-icon,{
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

.header_buttons-sign-in svg,
.header_buttons-menu-toggle svg {
  display: block;
}

.header_buttons-sign-in svg.pink,
.header_buttons-menu-toggle svg.pink {
  display: none;
}

.scrolling .header_buttons-sign-in svg.pink,
.scrolling .header_buttons-menu-toggle svg.pink {
  display: block;
}

.scrolling .header_buttons-sign-in svg.white,
.scrolling .header_buttons-menu-toggle svg.white {
  display: none;
}

.fused_header-popup-container {
  max-height: 100vh; 
  display: none;
  opacity: 0; 
  position: fixed;
  top:0;
  left:0;
  z-index: 410;
  height: 100%;
  width: 100%;
  background-color: #000;
}

.fused_header-popup-container .popup-wrapper {
  padding-top: 42px;
  background: rgba(250, 251, 251, 1);
  height: calc(100% - 82px);
  overflow: scroll;
  z-index: 420;
}

.fused_header-popup-container .popup-header {
  max-width: 1512px;
  margin: 0 auto;
  padding: 32px 24px 31px;
  display: flex;
  align-items: center;
}
.fused_header-popup-container .popup-logo {
  margin-right: auto;
}

.fused_header-popup-container .popup-close-button {
  margin-left: auto;
}

.fused_header-popup-container .popup-close-button:hover {
  cursor: pointer;
}

.fused_header-popup-container .popup-close-button-icon {
  display: inline-block;
  vertical-align: middle;
}

.fused_header-popup-container .popup-close-button-icon svg {
  display: block;
}

.fused_header-popup-container .popup-content {
  max-width:1364px;
  margin-right: auto;
  display:flex;
  z-index: 430;
}

.fused_header-popup-container .popup-image {
  max-width:744px;
  margin-right: auto;
  padding-right: 24px;
  height: auto;
}

.fused_header-popup-container .popup-menus .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 80px;
  column-gap: 24px;
  z-index: 440;
}


.fused_header-popup-container .popup-menus .hs-menu-wrapper > ul > li > a,
.fused_header-popup-container .popup-menus .hs-menu-wrapper > ul li #mobileSignInPopupToggle {
  user-select: none;
  font-family: Space Grotesk;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 20px;
  text-decoration: none;
  color: rgba(52, 52, 52, 1);
  border: none;
  padding: 0;
  display: block;
  border: none;
  box-shadow: none;
  margin-left: 4px;
}

.fused_header-popup-container .popup-menus .hs-menu-wrapper > ul > li > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fused_header-popup-container .popup-menus .hs-menu-wrapper > ul > li > ul li {
  margin-bottom: 4px;
}

.fused_header-popup-container .popup-menus .hs-menu-wrapper > ul > li > ul li:last-child {
  margin-bottom: 0;
}

.fused_header-popup-container .popup-menus .hs-menu-wrapper > ul > li > ul li a {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(52, 52, 52, 1);
}

.fused_header-popup-container .popup-menus .hs-menu-wrapper > ul > li > ul li a:hover {
  
}

.fused_header-popup-container .popup-menus .hs-menu-wrapper > ul > li > ul li a:focus {
  
}

.fused_header-popup-container .popup-footer {}

@media only screen and (max-width: 900px){
  .header_menu-column,
  .header_buttons-sign-in,
  .popup-footer {
    display: none !important;
  }
  
  .fused_header-popup-container .popup-logo .logo-module,
  .fused_header-popup-container .popup-image {
    display: none;
  }
  
  .fused_header-popup-container .popup-wrapper {
    height: 100%;
    padding: 0 24px 24px;
  }
  
  .fused_header-popup-container .popup-header {
    padding: 28px 0 40px;
  }
  
  .fused-header .fused_header-top {
    z-index: 200;
  }
  
  .fused_header-popup-container .popup-menus {
    width: 100%;
  }
  
  .fused_header-popup-container .popup-menus .hs-menu-wrapper > ul {
    display: block;
  }
  
  .fused_header-popup-container .popup-menus .hs-menu-wrapper > ul > li > a,
  .fused_header-popup-container .popup-menus .hs-menu-wrapper > ul li #mobileSignInPopupToggle {
    margin: 0;
    z-index: 20;
    border-top: 1px solid rgba(220, 220, 220, 1);
    padding: 28px 40px 28px 0;
    display: block;
    position: relative;
  }
  
  .fused_header-popup-container .popup-menus .hs-menu-wrapper > ul:not(.mobile-sign-in) > li > a {
    background-repeat: no-repeat;
    background-image: url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/mobile-dropdown-menu.svg);
    background-size: 20px;
    background-position: right center;
  }
  
  .fused_header-popup-container .popup-menus .hs-menu-wrapper > ul.mobile-sign-in {
    margin-bottom: 40px;
  }
  
  .fused_header-popup-container .popup-menus .hs-menu-wrapper > ul li #mobileSignInPopupToggle {
    border-bottom: 1px solid rgba(220, 220, 220, 1);
  }
  
  .fused_header-popup-container .mobile-sign-in-icon {
    display: inline-block;
    vertical-align: middle;
  }
  
  .fused_header-popup-container .mobile-sign-in-icon svg {
    display: block;
  }
  
  .fused_header-popup-container .popup-menus .hs-menu-wrapper > ul > li > ul {
    height: 0; opacity: 0;display: block !important; transition: all 0.3s;
  }
  
  .fused_header-popup-container .popup-menus .hs-menu-wrapper > ul > li > ul {
    z-index: 10;
    position: relative;
  }
  
  .fused_header-popup-container .popup-menus .hs-menu-wrapper > ul > li > ul.open-menu-list {
    visibility: visible !important; opacity: 0 !important; display: block;
  }
  
  .fused_header-popup-container .popup-menus .hs-menu-wrapper > ul > li > ul.active {
    height: 100% !important; opacity: 1 !important;
  }
}

@media only screen and (min-width: 901px){  
  .mobile-sign-in {
    display: none !important; 
  }
  
  .fused_header-popup-container .mobile-button {
    display: none;
  }
}

@media only screen and (min-width: 901px) and (max-width: 989px) {
  .fused-header .fused_header-main .header_menu-column ul li {
      margin-left: 7px;
      margin-right: 7px;
  }
  
  .fused-header .fused_header-main .header_buttons-column {
    gap: 14px;
  }
  
  .fused-header .fused_header-main .header_menu-column ul li:last-child a {
    padding: 12px 20px;
  }
}
.blog-post .post-hero-banner .dnd-column {
  padding: 0;
}

.blog-post .post-hero-banner .hero_banner-module {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.blog-post .post-hero-banner .hero_banner-module .hero_banner-module-wrapper {
    max-width: 915px;
    padding: calc(90px + 40px) 24px calc(82px + 92px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.blog-post .post-hero-banner .hero_banner-module .hero_banner-module-wrapper .hero_banner-content.one-column .hero-container {
  display: block;
}

.blog-post .post-hero-banner .hero_banner-module .hero_banner-module-wrapper .hero_banner-content .info-column {
  width: 100%; 
  align-self: middle;
}

.blog-post .post-hero-banner .hero_banner-module .hero_banner-module-wrapper .hero_banner-content .info-column h1 {
  color: #fff;
}

.blog-post .spacer-module {
  height: 82px;
  width: 100%;
  background-repeat: repeat-x;
  background-position: left center;
  background-size: 100%;
}

.blog-post .post-hero-banner .spacer-module {
  margin-top: -82px;
}

.blog-post .spacer-module.desktop {
  display: none;
}

.post-content > .row-fluid,
.related-posts > .row-fluid,
.post-meta > .row-fluid {
  max-width: 769px;
}

.post-content .dnd-column,
.related-posts .dnd-column,
.post-meta .dnd-column  {
  padding: 40px 24px;
}

.post-content img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #FAFBFB;
}
  
.post-content img,
.post-content p,
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content ul,
.post-content ol {
  margin-bottom: 40px;
}

.post-meta,
.related-posts {
  background-color: #FAFBFB;
}

.blog-post .blog-post__tags {
  margin-top: -8px;
}

.blog-post .blog-post__tags .blog-post__tag-link {
  border-radius: 49px;
  background: rgba(228, 228, 228, 0.32);
  padding: 8px 24px;
  color: #fff;
  font-size: 16px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  display: inline-block;
  margin: 8px;
}

.blog-post .post-meta .blog-post__tags .blog-post__tag-link {
  color: rgba(89, 89, 89, 1);
}

.blog-post .related-posts h2.h3,
.blog-post .related-posts p.paragraph,
.blog-post .related-posts .related-blog-item {
  margin-bottom: 20px; 
}

.blog-post .related-posts .related-blog-item:last-child {
  margin-bottom: 0;
}

.blog-post .post-meta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.blog-post .social-sharing {
  display: flex;
  align-items: center;
}

.blog-post .social-sharing .social-sharing__share-text {
  font-weight: 600;
  margin: 0 16px 0 0;
}

.blog-post .social-sharing .social_profiles-content {}
.blog-post .social-sharing .social_profiles-content a {
  display: inline-block;
}

.blog-post .social-sharing .social_profiles-content a img {
  display: block;
}

@media only screen and (min-width: 768px) {
  .blog-post .post-meta-wrapper {
    flex-direction: row;
    gap: 20px;
  }
  
  .blog-post .social-sharing {
    margin-left: auto;
  }
}

@media only screen and (min-width: 901px) {
  
  .blog-post .post-hero-banner .hero_banner-module .hero_banner-module-wrapper {
    min-height: 100vh;
    padding: calc(96px + 80px) 24px calc(82px + 80px);
    text-align: center;
  }
  
  .blog-post .spacer-module.desktop {
    display: block;
  }
  
  .blog-post .spacer-module.mobile {
    display: none;
  }
}

@media only screen and (max-width: 767px){
  .blog-post .post-hero-banner .blog-post__tags {
    white-space: nowrap;
    overflow-x: scroll;
    position: relative;
    margin-right: -24px;
  }

  .blog-post .post-hero-banner .blog-post__tags::-webkit-scrollbar {
    display: none;
  }
  
  .blog-post .post-hero-banner .blog-post__tags{
   -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none; 
  }

  .blog-post .post-hero-banner .blog-post__tags::after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 134px;
    z-index: 200;
    background: linear-gradient(270deg,rgba(1, 97, 121, 1.0) 21.3%,rgba(239,90,151,0.00) 100%);
  }
}
.blog-listing .listing-hero-banner .dnd-column {
  padding: 0;
}

.blog-listing .listing-hero-banner .hero_banner-module {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.blog-listing .listing-hero-banner .hero_banner-module .hero_banner-module-wrapper {
    max-width: 951px;
    padding: calc(90px + 40px) 24px calc(82px + 92px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.blog-listing .listing-hero-banner .hero_banner-module .hero_banner-module-wrapper .hero_banner-content.one-column .hero-container {
  display: block;
}

.blog-listing .listing-hero-banner .hero_banner-module .hero_banner-module-wrapper .hero_banner-content .info-column {
  width: 100%; 
  align-self: middle;
}


.blog-listing .listing-hero-banner .hero_banner-module .hero_banner-module-wrapper .hero_banner-content .info-column .preformatted,
.blog-listing .listing-hero-banner .hero_banner-module .hero_banner-module-wrapper .hero_banner-content .info-column .description,
.blog-listing .listing-hero-banner .hero_banner-module .hero_banner-module-wrapper .hero_banner-content .info-column h1 {
  color: #fff;
  margin-bottom: 8px;
}

.blog-listing .listing-hero-banner .hero_banner-module .hero_banner-module-wrapper .hero_banner-content .info-column .description {
  margin-bottom: 40px;
}

.blog-listing .listing-hero-banner .spacer-module {
  margin-top: -82px;
}

.blog-post .blog-post__tags,
.blog-listing .blog-slide__tags {
  margin-top: -8px;
  margin-left: -8px;
  margin-right: -8px;
}

.blog-listing .blog-slide__tags {
  margin-top: 20px;
}  

.blog-listing .blog-post__tags .blog-post__tag-link {
  display: inline-block;
  margin: 8px;
}

.blog-listing .blog-post__tags .blog-post__tag-link a,
.blog-listing .blog-slide__tag {
  border-radius: 49px;
  background: rgba(228, 228, 228, 0.32);
  padding: 8px 24px;
  color: #fff;
  font-size: 16px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  text-decoration: none;
  border: none;
  outline: none;
  box-shadow: none;
  display: block;
}

.blog-listing .blog-slide__tag {
  display: inline-block;
  margin: 8px;
  text-transform: capitalize;
}

.blog-listing .blog-post__tags .blog-post__tag-link a:hover {
  background: rgba(245, 215, 228, 1);
  color: rgba(239, 90, 151, 1);
}

.blog-listing .post-meta .blog-post__tags .blog-post__tag-link {
  color: rgba(89, 89, 89, 1);
}

.blog-listing .popular-posts-carousel {
  padding: 40px 0;
}

.blog-listing .popular-posts-carousel .is-jagged-content-row {
  position: relative;
}

.blog-listing .popular-posts-carousel .jagged-content-row-column {
  padding-top: 90px;
  padding-bottom: 108px;
  padding-left: 68px;
  padding-right: 68px;
  background-image: url(https://141895397.fs1.hubspotusercontent-eu1.net/hubfs/141895397/Bills%20Package%20Banner.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

  .blog-listing .popular-posts-carousel .jagged-overlay {
    position: absolute;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .blog-listing .popular-posts-carousel .jagged-top,
  .blog-listing .popular-posts-carousel .jagged-bottom {
    top: -1px;
    left: 0;
    width: 100%;
    height: 54px;
  }
  
  .blog-listing .popular-posts-carousel .jagged-bottom {
    top: initial;
    bottom: -1px;
    left: 0;
  }

  .blog-listing .popular-posts-carousel .jagged-left,
  .blog-listing .popular-posts-carousel .jagged-right {
    top: 0;
    left: -1px;
    width: 33px;
    height: 100%;
  }
  
  .blog-listing .popular-posts-carousel .jagged-right {
    top: 0;
    right: -1px;
    left: initial;
  }
  
  .blog-listing .popular-posts-carousel .jagged-top {
    background-image:url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/section-assets/mobile-jagged-top.svg);
  }

  .blog-listing .popular-posts-carousel .jagged-bottom {
    background-image:url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/section-assets/mobile-jagged-bottom.svg);
  }

  .blog-listing .popular-posts-carousel .jagged-right {
    background-image:url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/section-assets/mobile-jagged-right.svg);
  }

  .blog-listing .popular-posts-carousel .jagged-left {
    background-image:url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/section-assets/mobile-jagged-left.svg);
  }
  
  @media only screen and (min-width: 768px) {
    
.blog-listing .blog-slide__tags {
  margin-top: 58px;
}  
    
    .blog-listing .popular-posts-carousel .jagged-content-row-column {
      padding-top: 131px;
      padding-bottom: 131px;
      padding-left: 131px;
      padding-right: 131px;
    }
    
    .blog-listing .popular-posts-carousel .jagged-top,
    .blog-listing .popular-posts-carousel .jagged-bottom {
      height: 82px;
    }
    
    .blog-listing .popular-posts-carousel .jagged-left,
    .blog-listing .popular-posts-carousel .jagged-right {
      width: 82px;
    }
    
    .blog-listing .popular-posts-carousel .jagged-top {
      background-image:url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/section-assets/jagged-top.svg);
    }
    
    .blog-listing .popular-posts-carousel .jagged-bottom {
      background-image:url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/section-assets/jagged-bottom.svg);
    }
    
    .blog-listing .popular-posts-carousel .jagged-right {
      background-image:url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/section-assets/jagged-right.svg);
    }
    
    .blog-listing .popular-posts-carousel .jagged-left {
      background-image:url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/section-assets/jagged-left.svg);
    }

  .blog-listing .popular-posts-carousel .testimonial_carousel,
  .blog-listing .popular-posts-carousel h2.preformatted {
    max-width: 1298px;
    margin: 0 auto;
  }
    
  .blog-listing .popular-posts-carousel .splide__slide > div {
    flex-direction: row;
    }
    
    
.blog-listing .popular-posts-carousel .splide__arrow {
  transform: translateY(-50%);
  top: 50%;
}
}

.blog-listing .popular-posts-carousel h2.preformatted {
  color: #fff;
    margin: 0 auto 8px;
}

.blog-listing .popular-posts-carousel .splide__slide > div {
  margin: 0 auto;
  display:  flex;
  gap:27px;
  flex-direction: column;
}
  
.blog-listing .popular-posts-carousel .splide__slide > div .blog-slide-info-column .blog-slide-info-link,
.blog-listing .popular-posts-carousel .splide__slide > div .blog-slide-image .blog-slide-image-link {
  padding: 0;
  box-shadow: none;
  border: none;
  outline: none;
  display: block;
  text-decoration: none;
  color: #fff;
}

.blog-listing .popular-posts-carousel .splide__slide > div .blog-slide-info-column .blog-slide-info-link:hover {
  text-decoration: underline;
}

.blog-listing .popular-posts-carousel .splide__slide > div .blog-slide-info-column .blog-slide-info-link .h3 {
  margin-bottom: 8px;
  color: #fff;
}

.blog-listing .popular-posts-carousel .splide__slide > div .blog-slide-info-column .blog-slide-excerpt {
  color: #fff;
  margin-bottom: 0;
  font-weight: 600;
}


.blog-listing .popular-posts-carousel .splide__pagination {
  position: relative;
  padding-top: 40px;
  bottom: initial;
  left: initial; 
}

.blog-listing .popular-posts-carousel .splide__pagination .splide__pagination__page {
  height: 12px;
  width: 12px;
  margin: 2px;
  background-color: #FFFFFF;
  opacity: 50%;
}

.blog-listing .popular-posts-carousel .splide__pagination .splide__pagination__page.is-active {
  opacity: 1;
  transform: initial;
}

.blog-listing .popular-posts-carousel .splide__arrow {
  opacity: 1;
  background: transparent;
  border-radius: initial;
  transform: initial;
  top: calc(100% - 30.18px);
  height: 30.18px;
  width: 59.75px; 
}

.blog-listing .popular-posts-carousel .splide__arrow.splide__arrow--prev {
  left: 0%;
}

.blog-listing .popular-posts-carousel .splide__arrow.splide__arrow--next {
  right: 0%;
}

.blog-listing .popular-posts-carousel .splide__arrow svg {
  transform: initial;
  margin-bottom: 0;
  width: 59.75px;
  height: 30.18px;
  fill: initial; 
}

.blog-listing .popular-posts-carousel .splide__slide > div .blog-slide-image {
  background-image:url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/feature-image-background.png);
  background-size:cover;
  max-width:500px;
  max-height:310px;
  width: 100%;
  height:100%;
  background-repeat:no-repeat;
  background-position:center;
}

.blog-listing .popular-posts-carousel .splide__slide > div .blog-slide-image .blog-slide-image-element {
  max-width:500px;
  max-height:310px;
  width: 100%;
  height: 100%;
  object-fit:cover;
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-image: url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/featured-image-mask.svg);
}

.blog-listing .listing-grid {
  padding: 40px 0;
}

.blog-listing .listing-grid .card-wrapper-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-listing .listing-grid .card-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 90px 40px;
  max-width: 1217px;
  margin: 0 auto;
}


@media only screen and (min-width: 768px){
  .blog-listing .listing-grid .card-wrapper {
  grid-template-columns: 1fr 1fr;
}
  
}
@media only screen and (min-width: 1020px){
  .blog-listing .popular-posts-carousel .splide__slide > div {
    flex-direction: row;
  }
}
@media only screen and (min-width: 901px){
  .blog-listing .listing-grid .card-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}
  
}

.blog-listing .listing-grid {
  background-color: rgba(250, 251, 251, 1);
}

.blog-listing .listing-grid .blog-card {
  max-width: 344px;
  margin: 0 auto;
}

.blog-listing .listing-grid .blog-card .blog-card-wrapper .blog-card-image {
  max-height: 213px;
  max-width: 344px;
  margin-bottom: 24px;
}

.blog-listing .listing-grid .blog-card .blog-card-wrapper .blog-card-image .blog-card-image-link {
  display: block;
  position: relative;
  padding: 0;
  border: none;
  outline: none;
  margin: 0;
}

.blog-listing .listing-grid .blog-card .blog-card-wrapper .blog-card-image .blog-card-image-link:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/blog-card-border.svg);
  content: "";
  display: block;
}

.blog-listing .listing-grid .blog-card .blog-card-wrapper .blog-card-image .blog-card-image-link .blog-card-image-element {
  display: block;
  object-fit: cover;
  max-height: 213px;
  max-width: 344px;
  width: 100%;
  height: 100%;
}

.blog-listing .listing-grid .blog-card .blog-card-wrapper .blog-card-info .blog-card-info-link {
  text-decoration: none;
  color: rgba(28, 27, 31, 1);
  margin-bottom: 4px;
  padding: 0 !important;
  border: 0 !important;
  outline: none !important;
  border-radius: 0;
}

.blog-listing .listing-grid .blog-card .blog-card-wrapper .blog-card-info .blog-card-info-link:hover {
  text-decoration: underline;
}

.blog-listing .listing-grid .blog-card .blog-card-wrapper .blog-card-info .blog-card-info-link .h4 {
  margin-bottom: 0px;
}

.blog-listing .listing-grid .blog-card .blog-card-wrapper .blog-card-info .blog-card-excerpt {
  font-weight: 600;
  color: rgba(95, 96, 96, 1);
}

.blog-listing .listing-grid .pagination {
  border-top: 1px solid rgba(234, 236, 240, 1);
  padding-top: 20px;
  padding-bottom: 40px;
  text-align: center;
  max-width: 1216px;
  margin: 0 auto;
  flex-direction: row;
  display: flex;
}

.blog-listing .listing-grid .pagination .pagination__link.pagination__link--disabled {
  opacity: 0.5;
}

.blog-listing .listing-grid .pagination .pagination__link.pagination__link--number {
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  letter-spacing: 0;
  line-height: 40px;
  text-align: center;
  width: 40px;
  display: inline-block;
  border-radius: 8px;
  margin-left: 1px;
  margin-right: 1px;
  outline: none;
  border: none;
}

.blog-listing .listing-grid .pagination .pagination__link.pagination__link--number:hover,
.blog-listing .listing-grid .pagination .pagination__link.pagination__link--number:focus,
.blog-listing .listing-grid .pagination .pagination__link.pagination__link--number.pagination__link--active {
  background: rgba(245, 215, 228, 1);
  outline: 0;
  padding: 0;
  text-decoration: none;
}

.blog-listing .listing-grid .pagination .pagination__link.pagination__link--next {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.blog-listing .listing-grid .pagination .pagination__link.pagination__link--prev {
  margin-right: auto;
  display: flex;
  align-items: center;
}

.blog-listing .listing-grid .pagination .pagination__link.pagination__link--prev .pagination__link-text-icon {
  margin-right: 4px;
}

.blog-listing .listing-grid .pagination .pagination__link.pagination__link--next .pagination__link-text-icon {
  margin-left: 4px;
}

.blog-listing .listing-grid .pagination .pagination__link .pagination__link-text-icon {
  transition: all 0.3s;
}

.blog-listing .listing-grid .pagination .pagination__link.pagination__link--prev .pagination__link-text-icon svg,
.blog-listing .listing-grid .pagination .pagination__link.pagination__link--next .pagination__link-text-icon svg {
  display: block;
}

.blog-listing .listing-grid .pagination .pagination__link.pagination__link--disabled:hover {
  cursor: not-allowed;
  text-decoration: underline;
}

.blog-listing .listing-grid .pagination .pagination__link {
  border:none;
}

.blog-listing .listing-grid .pagination .pagination__link.pagination__link--prev:not(.pagination__link--disabled):hover .pagination__link-text-icon {
  margin-right: 13px;
  margin-left: -9px;
}

.blog-listing .listing-grid .pagination .pagination__link.pagination__link--next:not(.pagination__link--disabled):hover .pagination__link-text-icon {
  margin-left: 13px;
  margin-right: -9px;
}

.blog-listing .listing-grid .pagination .pagination__link-text {}

.blog-listing .spacer-module.desktop {
  display: none;
}

@media only screen and (min-width: 901px) {
  .blog-listing .spacer-module.desktop {
    display: block;
  }
  
  .blog-listing .spacer-module.mobile {
    display: none;
  }
  
  .blog-listing .listing-hero-banner .hero_banner-module .hero_banner-module-wrapper {
    min-height: 100vh;
    padding: calc(96px + 80px) 24px calc(82px + 80px);
    text-align: center;
  }
}
.popupsContainer {
  display: none;
  opacity: 0;
  z-index: 9998;
}

.popupsContainer .popupOverlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.popupsContainer .agentSignInPopup {
  display: none;
  opacity: 0;
} 

.popupsContainer .popupsContainerWrapper {
  background-image: url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/popup-assets/pop-up-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 968px;
  padding: 80px;
  z-index: 9999;
}

.popupsContainer .popupsContainerWrapper .agentSignInPopup,
.popupsContainer .popupsContainerWrapper .studentSignInPopup {
  position: relative;
}

.popupsContainer .popupsContainerWrapper .popup-content {
  display: flex;
  flex-direction: row;
}

.popupsContainer .popupsContainerWrapper .left-column {
  width: 50%;
  padding-right: 20px;
}

.popupsContainer .popupsContainerWrapper .left-column p.preformatted {
  color: #EF5A97;
  margin-bottom: 8px;
}

.popupsContainer .popupsContainerWrapper .not-right-text {
  margin-bottom: 8px;  
}

.popupsContainer .popupsContainerWrapper .not-right-link {
  cursor: pointer;
  margin-left: -4px;
}

.popupsContainer .popupsContainerWrapper .not-right-link-icon {
  vertical-align: middle;
  display: inline-block;
  margin-left: 4px;
  transition: margin-left 0.3s;
}

.popupsContainer .popupsContainerWrapper .not-right-link:hover .not-right-link-icon {
  margin-left: 13px;
}

.popupsContainer .popupsContainerWrapper .not-right-link-icon svg {
  display: block;
}

.popupsContainer .popupsContainerWrapper .left-column .subHeading,
.popupsContainer .popupsContainerWrapper .left-column a.secondary_large {
  margin-bottom: 40px;
}

.popupsContainer .popupsContainerWrapper .right-column {
  width: 50%;
  display: flex;
  align-items: center;
}

.popupsContainer .popupsContainerWrapper .right-column img {
  width: 100%;
}

.popupsContainer .popupsContainerWrapper .close-btn {
  position: absolute;
  right: -60px;
  top: -34px;
}

.popupsContainer .popupsContainerWrapper .close-btn:hover {
  cursor: pointer;
}

.popupsContainer .popupsContainerWrapper .close-btn span {
  font-family: Space Grotesk;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: rgba(239, 90, 151, 1);
}

.popupsContainer .popupsContainerWrapper .close-btn img {
    width: 20px;
    height: 20px;
    position: relative;
    vertical-align: middle;
}

@media only screen and (max-width: 1022px) {
  .popupsContainer .popupsContainerWrapper {
    background-image: unset;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: scroll;
    background-color: #fff;
    padding: 66px 24px;
    transform: none;
  }
  
  .popupsContainer .popupsContainerWrapper .popup-content {
    flex-direction: column;
  }
  
  .popupsContainer .popupsContainerWrapper .popup-content .right-column {
    margin-top: 40px;
  }
  
  .popupsContainer .popupsContainerWrapper .popup-content .left-column,
  .popupsContainer .popupsContainerWrapper .popup-content .right-column {
    width: 100%;
    padding-right: 0px;
  }
  
  .popupsContainer .popupsContainerWrapper .close-btn {
    top: -40px;
    right: 0;
  }
  
  .popupsContainer .popupsContainerWrapper .popup-content .right-column img {
    max-width: 500px;
  }
}

.popupsContainer#tvChannelsPopup .tvChannelsPopupWrapper {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 968px;
  padding: 74px 34px 0 24px;
  z-index: 9999;
}

.popupsContainer#tvChannelsPopup .tvChannelsPopupWrapper .tv-channels {
  overflow-y: scroll;
  max-height: 100vh;
  padding: 0 20px 0 0;
}
  
.popupsContainer#tvChannelsPopup .close-btn {
  position: absolute;
  top: 30px;
  right: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.popupsContainer#tvChannelsPopup .close-btn:hover span {
  text-decoration: underline;
}

.popupsContainer#tvChannelsPopup .close-btn span {
  color: rgba(239, 90, 151, 1);
  font-family: Space Grotesk;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  margin-right: 3px;
}

#tvChannelsPopup ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#tvChannelsPopup  ul li {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}

#tvChannelsPopup table tbody {
  vertical-align: top;
}

.popupsContainer#tvChannelsPopup table {
  margin-left: -1px;
}

.popupsContainer#tvChannelsPopup table.desktop {
  display: none;
}

.popupsContainer#tvChannelsPopup .tvChannelsPopupWrapper .tv-channels .h4 {
  margin-bottom: 80px;
}

.popupsContainer#tvChannelsPopup table.mobile img {
  position: absolute;
  top: 0;
  left: 0;
}

.popupsContainer#tvChannelsPopup table.mobile td {
  padding-top: 74px;
  padding-bottom: 80px;
  position: relative;
}

.popupsContainer#tvChannelsPopup table.mobile td:first-child {
  padding-right: 20px;
}

.popupsContainer#tvChannelsPopup table.mobile tr:last-child td ul {
  padding-bottom: 80px;
}

@media only screen and (min-width: 901px) {
  .popupsContainer#tvChannelsPopup .tvChannelsPopupWrapper .tv-channels .h4 {
    margin-bottom: 40px;
  }
  
  .popupsContainer#tvChannelsPopup .tvChannelsPopupWrapper .tv-channels {
    max-height: 565px;
    padding: 0;
  }
  
  .popupsContainer#tvChannelsPopup table.desktop {
    display: table;
  }
  
  .popupsContainer#tvChannelsPopup table.mobile {
    display: none;
  }
  
  .popupsContainer#tvChannelsPopup .tvChannelsPopupWrapper {
    background-image: url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/popup-assets/sky-packages-modal-bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    padding: 80px 46px 80px 59px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  #tvChannelsPopup table th {
    text-align: left;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    border-right: 1px dashed rgba(220, 220, 220, 1);
  }

  #tvChannelsPopup table th:first-child {
    padding-left: 0;
  }

  #tvChannelsPopup table th:last-child {
    border-right: none;
  }

  #tvChannelsPopup table tbody td:first-child {
    padding: 0 20px 0 0;
  }

  #tvChannelsPopup table tbody td:nth-child(2) {
    padding: 0 35px 0 0;
  }

  #tvChannelsPopup table tbody td:nth-child(3) {
    padding: 0 35px 0;
  }

  #tvChannelsPopup table tbody td:last-child {
    padding: 0 0 0 35px;
  }

  #tvChannelsPopup table tbody td:nth-child(2),
  #tvChannelsPopup table tbody td:nth-child(3) {
    border-right: 1px dashed rgba(220, 220, 220, 1);
  }
}
.pre-cta-footer,
.footer-cta-jagged-bottom {
  display: block;
  width: 100%;
  z-index: 10;
  position: relative;
}

.footer-cta-jagged-bottom {
  height: 82px;
  background-size: cover;
  background-repeat: no-repeat;
}

.pre-cta-footer {
  margin-bottom: -82px;
}

.footer-cta > .container-fluid:not(.pre-cta-footer, .post-cta-footer) > .row-fluid-wrapper > .row-fluid > .span12 > .dnd-section {
  background-attachment: fixed;
  padding-top: calc(82px + 42px);
  padding-bottom: calc(82px + 140px);
}

.footer-cta > .container-fluid > .row-fluid-wrapper > .row-fluid > .span12 > .dnd-section > .row-fluid > .dnd-column {
  margin: 0 auto;
  padding: 0; 
}

.footer-cta .preformatted .text-module-wrapper .text-content p,
.footer-cta .h3 .text-module-wrapper .text-content p,
.footer-cta form label:not(.hs-error-msg) {
  color: #FFFFFF !important;
}

.footer-cta .preformatted .text-module-wrapper .text-content p {
  margin-bottom: 8px !important;
}

.footer-cta .h3 {
  margin-bottom: 40px !important;
}

.footer-cta form fieldset.form-columns-2 .hs-form-field {
  width: 100%;
  float: none;
}

.footer-cta form fieldset.form-columns-2 .hs-form-field .input {
  margin-right: 0;
}

.footer-cta > .container-fluid.post-cta-footer {
  margin-top: -82px;
}

.footer-main {
  padding: 80px 24px;
}

.footer-main-wrapper {
  max-width: 1216px;
  margin: 0 auto;
}

.footer-main-top,
.footer-main-middle, {
  max-width: 1140px;
}

.footer-main-middle {
  margin-top: 80px;
  margin-bottom: 80px;
}

.footer-main .footer-main-middle .widget-type-menu .hs_cos_wrapper_type_menu .hs-menu-wrapper ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: -4px;
    margin-bottom: 40px;
}

.footer-main .footer-main-middle .widget-type-menu .hs_cos_wrapper_type_menu .hs-menu-wrapper ul li {
    margin-bottom: 4px;
}

.footer-main .footer-main-middle .widget-type-menu .hs_cos_wrapper_type_menu .hs-menu-wrapper ul li:last-child {
    margin-bottom: 0;
}

.footer-main .footer-main-middle .widget-type-menu .hs_cos_wrapper_type_menu .hs-menu-wrapper ul li a {
    border-radius: initial;
    background: transparent;
    text-align: initial;
    font-family: 'Roboto', sans-serif;
    border: 4px solid transparent;
    text-decoration: underline;
    padding: 0;
    transition: all 0.3s;
    color: #343434;
}

.footer-main .footer-main-middle .widget-type-menu .hs_cos_wrapper_type_menu .hs-menu-wrapper ul li a:hover {
    text-decoration: none;
}

.footer-main .footer-main-middle .widget-type-menu .hs_cos_wrapper_type_menu .hs-menu-wrapper ul li a:focus {
    padding: 6px;
    text-decoration: none;
    border-radius: 4px;
    border-color: #B1B1B1;
    -webkit-box-shadow: inset 2px 2px 0px 0px rgba(61,61,61,1), inset -2px -2px 0px 0px rgba(61,61,61,1);
    -moz-box-shadow: inset 2px 2px 0px 0px rgba(61,61,61,1), inset -2px -2px 0px 0px rgba(61,61,61,1);
    box-shadow: inset 2px 2px 0px 0px rgba(61,61,61,1), inset -2px -2px 0px 0px rgba(61,61,61,1);
}
  
.footer-main .footer-main-middle .widget-type-menu .hs_cos_wrapper_type_menu .hs-menu-wrapper ul li a:disabled, 
.footer-main .footer-main-middle .widget-type-menu .hs_cos_wrapper_type_menu .hs-menu-wrapper ul li a[disabled=disabled] {
    color: #B1B1B1;
}
  
.footer-main .footer-main-bottom .footer-main-bottom-wrapper p,
.footer-main .footer-main-bottom .footer-main-bottom-wrapper a {
  font-size: 12px !important;
}

.footer-main .footer-main-middle .social_validation-module {
  margin-bottom: 80px; 
}

.footer-cta .hs_recaptcha.field.hs-form-field .grecaptcha-badge {
    margin-bottom: 0;
    box-shadow: none !important;
}

.footer-cta .hs_submit.hs-submit {
    clear:both;
}

.footer-cta .hs_recaptcha.field.hs-form-field .grecaptcha-badge {
  margin-right: auto;
  margin-left: 0;
}

@media only screen and (min-width: 768px) {  

  .footer-cta .form-columns-0,
  .footer-cta .hs_recaptcha.field.hs-form-field {
      float: left;
      width: 50%;
  }

  .footer-cta .hs_recaptcha.field.hs-form-field {
      float: left;
      width: 50%;
      text-align: left;
      margin-bottom: 0;
  }

  .footer-cta .hs_recaptcha.field.hs-form-field .grecaptcha-badge {
      margin-left: 14px;
  }

  .footer-main .footer-main-middle .widget-type-menu .hs_cos_wrapper_type_menu .hs-menu-wrapper ul {
    margin-bottom: 20px;
  }
  
  .footer-cta > .container-fluid:not(.pre-cta-footer, .post-cta-footer) > .row-fluid-wrapper > .row-fluid > .span12 > .dnd-section {
    padding-top: calc(82px + 109px);
    padding-bottom: calc(82px + 109px);
  }
  
  .footer-cta form fieldset.form-columns-2 .hs-form-field {
    width: 50%;
    float: left;
  }
  
  .footer-cta form fieldset.form-columns-2 .hs-form-field:first-child .input {
    margin-right: 14px;
  }

  .footer-cta form fieldset.form-columns-2 .hs-form-field:last-child label {
    margin-left: 12px;
  }

  .footer-cta form fieldset.form-columns-2 .hs-form-field:last-child .input {
    margin-left: 14px;
    margin-right: 0;
  }
  
  .footer-main-middle-wrapper-column-1-padding > .row-number-1 > .row-fluid  > .span8,
  .footer-main-middle-wrapper-column-1-padding > .row-number-2 > .row-fluid  > .span8 {
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 900px) {
    
  .footer-main-middle-wrapper .row-number-6 > .row-fluid > .span4 {
    width: calc(var(--column-width-multiplier)*1%*6 - var(--column-gap)*var(--column-width-multiplier)*8/100);
  }

  .footer-main-middle-wrapper-column-1-padding > .row-number-1 > .row-fluid  > .span8 {
    width: calc(var(--column-width-multiplier)*1%*12 - var(--column-gap)*var(--column-width-multiplier)*8/100);
  }
  
  .footer-main-middle-wrapper-column-1-padding > .row-number-1 > .row-fluid  > .span4,
  .footer-main-middle-wrapper .row-number-6 > .row-fluid > .span4:last-child {
    display: none;
  }
  
    .footer-main .footer-main-middle .social_validation-module {
    margin-bottom: 20px; 
  }
}

@media only screen and (min-width: 901px) {
  .footer-main .footer-main-middle .social_validation-module {
    margin-bottom: 0; 
  }
}

.whatsapp-toast {
  display: none;
  opacity: 0;
  background: rgba(239, 90, 151, 1);
  border: 1px solid rgba(239, 90, 151, 1);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
  padding: 10px 24px;
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 75;
  border-radius: 4px
}

.whatsapp-toast-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toast-text {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
  margin-right: 24px;
}

.toast-icon svg {
  display: block;
}
/* Mobile Fonts */

.fused-header.retractable {
  position: fixed;
  transition: top 0.6s ease-in-out;
}

.fused-header.retractable.scrolling-down {
  top: -145px;
}

.fused-header.retractable.scrolling-up {
  top: 0;
}

@media (max-width: 767px) {
  .fused-header .fused_header-main .header_buttons-column,
  .fused-header .fused_header-main .header_logo-column {
    height: auto;
  }
  
  body .fused-header .fused_header-main .layers-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .hero_banner-content .hero-cta-container.desktop {
    display: block;
  }
  .hero_banner-content .hero-cta-container.mobile {
    display: none;
  }
  
  .hero_banner-content .hero-cta-container.desktop .hs-button.primary_large {
    padding: 12px 33px;
    margin-right: 20px !important; 
  }
  
  .layers-default-module.rich_text-module ul {
    padding: 0 0 0 24px;
  }
  
  .layers-default-module.rich_text-module ul li::marker {
    color: #EF5A97;
  }
}

@media (max-width: 390px) {
  
  .hero_banner-content .hero-cta-container.desktop .hs-button.primary_large {
    padding: 12px 30px;
    margin-right: 10px !important; 
  }
}

@media (max-width: 362px) {
  .hero_banner-content .hero-cta-container.desktop {
    display: block;
  }
  .hero_banner-content .hero-cta-container.mobile {
    display: none;
  }
  
  .hero_banner-content .hero-cta-container.desktop .hs-button.primary_large {
    padding: 12px;
    margin-right: 10px !important; 
  }
  
  .hero_banner-content .hero-cta-container.desktop .hs-button.primary_large,
  .hero_banner-content .hero-cta-container.desktop .hs-button {
    font-size: 14px;
    line-height: 14px;
  }
}

/* Hide Certain Elements from Benefits */
@media (max-width: 768px) {
  .icon_benefits-heading {
      margin-bottom: 40px !important; 
  }

  .sticky_content-content .h3 {
      font-size: 30px !important;
      line-height: 38px !important;
  }

  .icon_box-title img {
      display: none;
  }

  .icon_benefits-content {
      display: flex;
      flex-direction: row;
      gap: 20px;
      align-items: center;
  }

  .icon_benefits-list-wrapper,
  .icon_benefits-cta-wrapper {
    display: none;
  }
  
  p.icon_box-heading::before {
    content: "•";
    padding-right: 5px;
    color: #EF5A97;
  }
}

@media (min-width: 768px) {
  .services-button {
    display: none;
  }
  
  .hero-container .trustpilot-widget {
    display: none !important;
  }
  
  .hero-container .variant.trustpilot-widget {
    display: block !important;
  }
}

/*  Why students Love Fused Changes */
@media (max-width: 768px) {
  .icon_box-title {
      display: flex;
      align-items: center;
      gap: 10px;
  }
}

/*  Form changes */
@media (max-width: 768px) {
  .pre-cta-footer {
      margin-bottom: 0 !important;
  }
  
  .footer-cta-wrapper-row-0-background-image.row-fluid-wrapper {
    background: #016179 !important;
  }
  
  .footer-cta>.container-fluid:not(.pre-cta-footer,.post-cta-footer)>.row-fluid-wrapper>.row-fluid>.span12>.dnd-section {
      padding-top: 40px;
      padding-bottom: 40px;
  }
  
  .footer-main {
      padding: 100px 40px;
  }
}

/* Hide Timeline Line on Mobile */
@media (max-width: 768px) {
  .timeline .timeline-item::before {
    display:none;
  }

  .timeline .timeline-item {
    margin: 0 auto 40px;
  }
  
  .pre-timeline-title {
    font-size: 30px !important;
    line-height: 38px !important;
  }
  
  .timeline-title {
    font-size: 22px !important;
    line-height: 28px !important;
    margin-top: 10px; 
  }

  .timeline-item:nth-child(odd) > div {
    padding-right: 0;
    padding-left: 0;
  }
  
  .timeline-item:nth-child(even) > div {
    padding-left: 0;
    padding-right: 0;
  }
  
  .timeline .timeline-item.in-view:after {
    display: none;
  }
  
  .timeline .default-line, .timeline .draw-line {
    display: none;
  }
}

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

/* Additional CSS
CSS Relating to the theme
*/

.hero_banner-module .hs-video-container {
  min-height: 370px;
}
      
.hs-video-wrapper {
  background-image: url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/video-background.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hs-video-wrapper iframe {
  -webkit-mask-image:url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/video-mask.png);
  -webkit-mask-position:center center;
  -webkit-mask-repeat:no-repeat;
  -webkit-mask-size:contain;
  mask-image:url(https://25078588.fs1.hubspotusercontent-eu1.net/hubfs/25078588/raw_assets/public/fused/images/video-mask.png);
  mask-position:center center;
  mask-repeat:no-repeat;
  mask-size:contain;
}