/* index.scss start */
/* variables.scss start */
:root {
  --nav-width: 15rem;
}
@media (min-width: 1024px) {
  :root {
    --nav-width: 18rem;
  }
}
@media (min-width: 1280px) {
  :root {
    --nav-width: 22rem;
  }
}
@media (min-width: 1440px) {
  :root {
    --nav-width: 24rem;
  }
}

/* variables.scss end */
/* index.scss start */
/*! 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;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * 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
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 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
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (min-width: 768px) and (max-width: 1281px) {
  html {
    font-size: 52%;
  }
}

body, main, figure, h1, h2, h3, h4, h5, h6, ul, ol, li, p, input, button, select, textarea, div, blockquote, img, section, a, form {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

p {
  letter-spacing: 0.02rem;
  font-weight: 400;
}

ul, ol {
  list-style: none;
}

img,
picture {
  height: auto;
  transition: opacity 0.5s ease;
  width: 100%;
}

.promo figure img,
.site-header .header-background img {
  aspect-ratio: unset;
  height: 100%;
}

a {
  color: black;
}

/* index.scss start */
/* typography.scss start */
:root {
  --h1: 2.8rem;
  --h1-video: 2.8rem;
  --h2: 2.6rem;
  --h3: 1.8rem;
  --hplusp: 1.6rem;
}
@media (min-width: 768px) {
  :root {
    --h1: 5.4rem;
    --h1-video: 3.2rem;
    --h2: 4.2rem;
    --h3: 2.4rem;
  }
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

p,
ul,
ol,
button,
input,
select,
textarea,
.faux-select__display,
label,
#vms_description {
  font-size: 1.6rem;
  color: #5C5C5C;
}
@media (min-width: 1600px) {
  p,
  ul,
  ol,
  button,
  input,
  select,
  textarea,
  .faux-select__display,
  label,
  #vms_description {
    font-size: 1.8rem;
  }
}

h2:not(.gd-network h2, .dark-background h2),
h3,
h4 {
  color: #121316;
}

h1 {
  font: 400 var(--h1)/1.18 Arial, Helvetica, sans-serif;
}

h2 {
  font: 400 var(--h2)/1.5 Arial, Helvetica, sans-serif;
}

h3 {
  font: 400 var(--h3)/1.5 Arial, Helvetica, sans-serif;
}

h2 + p,
h3 + p {
  margin-top: var(--hplusp);
}

/* typography.scss end */
/* index.scss start */
:root {
  --grid-width: 100%;
  --gutters: 2.4rem;
  --grid-padding: 0.6rem;
  --grid-padding-l: 2.1rem;
  --grid-padding-xl: 3.2rem;
  --grid-padding-xxl: 5.1rem;
  --main-margin: 3.2rem;
}
@media (min-width: 768px) {
  :root {
    --gutters: 3.2rem;
  }
}
@media (min-width: 1024px) {
  :root {
    --gutters: 4.8rem;
    --grid-padding: 0.8rem;
  }
}
@media (min-width: 1440px) {
  :root {
    --grid-width: 1400px;
    --grid-width: 100%;
  }
}

.site-header > div,
main,
.promo > div,
.site-footer > div {
  width: var(--grid-width);
  padding: 0 var(--gutters);
}
main > * {
  scroll-snap-type: y mandatory;
}
main section {
  scroll-snap-align: start;
}

.grid {
  display: flex;
  flex-flow: row wrap;
  /* Phone cells */
  /* tablet mini cells */
  /* tablet cells */
  /* Laptop cells */
  /* Desktop cells */
}
.grid > * {
  flex: 0 0 auto;
  min-height: 0px;
  min-width: 0px;
  width: 100%;
}
@media (min-width: 768px) {
  .grid.has-padding {
    margin-left: calc(-1 * var(--grid-padding));
    margin-right: calc(-1 * var(--grid-padding));
    width: calc(100% + 2 * var(--grid-padding));
    max-width: calc(100% + 2 * var(--grid-padding));
  }
  .grid.has-padding > * {
    padding-left: var(--grid-padding);
    padding-right: var(--grid-padding);
  }
  .grid.has-padding-l {
    margin-left: calc(-1 * var(--grid-padding-l));
    margin-right: calc(-1 * var(--grid-padding-l));
    width: calc(100% + 2 * var(--grid-padding-l));
    max-width: calc(100% + 2 * var(--grid-padding-l));
  }
  .grid.has-padding-l > * {
    padding-left: var(--grid-padding-l);
    padding-right: var(--grid-padding-l);
  }
  .grid.has-padding-xl {
    margin-left: calc(-1 * var(--grid-padding-xl));
    margin-right: calc(-1 * var(--grid-padding-xl));
    width: calc(100% + 2 * var(--grid-padding-xl));
    max-width: calc(100% + 2 * var(--grid-padding-xl));
  }
  .grid.has-padding-xl > * {
    padding-left: var(--grid-padding-xl);
    padding-right: var(--grid-padding-xl);
  }
  .grid.has-padding-xxl {
    margin-left: calc(-1 * var(--grid-padding-xxl));
    margin-right: calc(-1 * var(--grid-padding-xxl));
    width: calc(100% + 2 * var(--grid-padding-xxl));
    max-width: calc(100% + 2 * var(--grid-padding-xxl));
  }
  .grid.has-padding-xxl > * {
    padding-left: var(--grid-padding-xxl);
    padding-right: var(--grid-padding-xxl);
  }
}
@media (min-width: 768px) {
  .grid.reverse-desktop {
    flex-direction: row-reverse;
  }
}
.grid .phone-1 {
  width: 8.3333333333%;
}
.grid .phone-2 {
  width: 16.6666666667%;
}
.grid .phone-3 {
  width: 25%;
}
.grid .phone-4 {
  width: 33.3333333%;
}
.grid .phone-5 {
  width: 41.6666666667%;
}
.grid .phone-6 {
  width: 50%;
}
.grid .phone-7 {
  width: 58.333333333%;
}
.grid .phone-8 {
  width: 66.6666666667%;
}
.grid .phone-9 {
  width: 75%;
}
.grid .phone-10 {
  width: 83.333333333%;
}
.grid .phone-11 {
  width: 91.6666666667%;
}
.grid .phone-12 {
  width: 100%;
}
@media (max-width: 767px) {
  .grid .offset-phone-1 {
    margin-left: 8.3333333333%;
  }
  .grid .offset-phone-2 {
    margin-left: 16.6666666667%;
  }
  .grid .offset-phone-3 {
    margin-left: 25%;
  }
}
@media (min-width: 600px) {
  .grid .tablet-mini-1 {
    width: 8.3333333333%;
  }
  .grid .tablet-mini-2 {
    width: 16.6666666667%;
  }
  .grid .tablet-mini-3 {
    width: 25%;
  }
  .grid .tablet-mini-4 {
    width: 33.3333333%;
  }
  .grid .tablet-mini-5 {
    width: 41.6666666667%;
  }
  .grid .tablet-mini-6 {
    width: 50%;
  }
  .grid .tablet-mini-7 {
    width: 58.333333333%;
  }
  .grid .tablet-mini-8 {
    width: 66.6666666667%;
  }
  .grid .tablet-mini-9 {
    width: 75%;
  }
  .grid .tablet-mini-10 {
    width: 83.333333333%;
  }
  .grid .tablet-mini-11 {
    width: 91.6666666667%;
  }
  .grid .tablet-mini-12 {
    width: 100%;
  }
  .grid .offset-tablet-mini-1 {
    margin-left: 8.3333%;
  }
  .grid .offset-tablet-mini-2 {
    margin-left: 16.6666%;
  }
  .grid .offset-tablet-mini-3 {
    margin-left: 25%;
  }
}
@media (min-width: 768px) {
  .grid .tablet-1 {
    width: 8.3333333333%;
  }
  .grid .tablet-2 {
    width: 16.6666666667%;
  }
  .grid .tablet-3 {
    width: 25%;
  }
  .grid .tablet-4 {
    width: 33.3333333%;
  }
  .grid .tablet-5 {
    width: 41.6666666667%;
  }
  .grid .tablet-6 {
    width: 50%;
  }
  .grid .tablet-7 {
    width: 58.333333333%;
  }
  .grid .tablet-8 {
    width: 66.6666666667%;
  }
  .grid .tablet-9 {
    width: 75%;
  }
  .grid .tablet-10 {
    width: 83.333333333%;
  }
  .grid .tablet-11 {
    width: 91.6666666667%;
  }
  .grid .tablet-12 {
    width: 100%;
  }
  .grid .offset-tablet-half {
    margin-left: 4.15%;
  }
  .grid .offset-tablet-1 {
    margin-left: 8.3333333333%;
  }
  .grid .offset-tablet-2 {
    margin-left: 16.6666666667%;
  }
  .grid .offset-tablet-3 {
    margin-left: 25%;
  }
  .grid .offset-tablet-4 {
    margin-left: 33.33333%;
  }
  .grid .offset-phone-1 {
    margin-left: 0;
  }
  .grid .offset-phone-2 {
    margin-left: 0;
  }
  .grid .offset-phone-3 {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .grid .laptop-1 {
    width: 8.3333333333%;
  }
  .grid .laptop-2 {
    width: 16.6666666667%;
  }
  .grid .laptop-3 {
    width: 25%;
  }
  .grid .laptop-4 {
    width: 33.3333333%;
  }
  .grid .laptop-5 {
    width: 41.6666666667%;
  }
  .grid .laptop-6 {
    width: 50%;
  }
  .grid .laptop-7 {
    width: 58.333333333%;
  }
  .grid .laptop-8 {
    width: 66.6666666667%;
  }
  .grid .laptop-9 {
    width: 75%;
  }
  .grid .laptop-10 {
    width: 83.333333333%;
  }
  .grid .laptop-11 {
    width: 91.6666666667%;
  }
  .grid .laptop-12 {
    width: 100%;
  }
  .grid .offset-laptop-1 {
    margin-left: 8.3333333333%;
  }
  .grid .offset-laptop-2 {
    margin-left: 16.6666666667%;
  }
  .grid .offset-laptop-3 {
    margin-left: 25%;
  }
}
@media (min-width: 1280px) {
  .grid .desktop-1 {
    width: 8.3333333333%;
  }
  .grid .desktop-2 {
    width: 16.6666666667%;
  }
  .grid .desktop-3 {
    width: 25%;
  }
  .grid .desktop-4 {
    width: 33.3333333%;
  }
  .grid .desktop-5 {
    width: 41.6666666667%;
  }
  .grid .desktop-6 {
    width: 50%;
  }
  .grid .desktop-7 {
    width: 58.333333333%;
  }
  .grid .desktop-8 {
    width: 66.6666666667%;
  }
  .grid .desktop-9 {
    width: 75%;
  }
  .grid .desktop-10 {
    width: 83.333333333%;
  }
  .grid .desktop-11 {
    width: 91.6666666667%;
  }
  .grid .desktop-12 {
    width: 100%;
  }
  .grid .offset-desktop-1 {
    margin-left: 8.3333333333%;
  }
  .grid .offset-desktop-2 {
    margin-left: 16.6666666667%;
  }
  .grid .offset-desktop-3 {
    margin-left: 25%;
  }
}
@media (min-width: 1440px) {
  .grid .desktop-xl-1 {
    width: 8.3333333333%;
  }
  .grid .desktop-xl-2 {
    width: 16.6666666667%;
  }
  .grid .desktop-xl-3 {
    width: 25%;
  }
  .grid .desktop-xl-4 {
    width: 33.3333333%;
  }
  .grid .desktop-xl-5 {
    width: 41.6666666667%;
  }
  .grid .desktop-xl-6 {
    width: 50%;
  }
  .grid .desktop-xl-7 {
    width: 58.333333333%;
  }
  .grid .desktop-xl-8 {
    width: 66.6666666667%;
  }
  .grid .desktop-xl-9 {
    width: 75%;
  }
  .grid .desktop-xl-10 {
    width: 83.333333333%;
  }
  .grid .desktop-xl-11 {
    width: 91.6666666667%;
  }
  .grid .desktop-xl-12 {
    width: 100%;
  }
}

/* index.scss start */
/* global.scss start */
.screen-reader-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip: rect(1px 1px 1px 1px) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

body {
  overflow-x: hidden;
}

img[data-src] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

img.lazy-loaded {
  opacity: 1;
  transform: translateY(0);
}

.social {
  display: flex;
  gap: 1.2rem;
}
.social li {
  width: 3.2rem;
  height: 3.2rem;
}
.social li a {
  display: flex;
  align-items: center;
  text-indent: -9999px;
  text-align: left;
  overflow: hidden;
  position: relative;
  display: block;
  width: 3.2rem;
  height: 3.2rem;
}
.social li a:before, .social li a:after {
  content: "";
  background: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_menu.svg") no-repeat center;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
}
.social li a:before:not(header .button:after), .social li a:after:not(header .button:after) {
  width: 2.4rem;
  height: 2.4rem;
}
.social li a:before {
  margin-right: 1rem;
}
.social li a:after {
  content: none;
}
.social li a:after, .social li a:before {
  margin: 0;
  text-indent: 0;
  white-space: normal;
  position: absolute;
  inset: 0;
  background-size: contain;
}
.social li a:before {
  background-size: 100%;
  background-position: center center;
  margin: 0 auto;
}
.social li.email a:before {
  background-image: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_email.svg");
}
.social li.linkedin a:before {
  background-image: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_linkedin.svg");
}
.social li.twitter a:before {
  background-image: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_twitter.svg");
}
.social li.x a:before {
  background-image: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_x.svg");
}
.social li.facebook a:before {
  background-image: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_facebook.svg");
  background-size: 60%;
}

/* global.scss end */
/* index.scss start */
/* button.scss start */
.button a:not(.carousel-nav .button a),
button:not(.carousel-arrow, .carousel-nav button, .search button),
input[type=submit] {
  display: flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  border: none;
  background: black;
  color: white;
  font: 700 1.4rem/1.75 Arial, Helvetica, sans-serif;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.button a:not(.carousel-nav .button a):before, .button a:not(.carousel-nav .button a):after,
button:not(.carousel-arrow, .carousel-nav button, .search button):before,
button:not(.carousel-arrow, .carousel-nav button, .search button):after,
input[type=submit]:before,
input[type=submit]:after {
  content: "";
  background: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_menu.svg") no-repeat center;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
}
.button a:not(.carousel-nav .button a):before:not(header .button:after), .button a:not(.carousel-nav .button a):after:not(header .button:after),
button:not(.carousel-arrow, .carousel-nav button, .search button):before:not(header .button:after),
button:not(.carousel-arrow, .carousel-nav button, .search button):after:not(header .button:after),
input[type=submit]:before:not(header .button:after),
input[type=submit]:after:not(header .button:after) {
  width: 2.4rem;
  height: 2.4rem;
}
.button a:not(.carousel-nav .button a):before,
button:not(.carousel-arrow, .carousel-nav button, .search button):before,
input[type=submit]:before {
  content: none;
}
.button a:not(.carousel-nav .button a):after,
button:not(.carousel-arrow, .carousel-nav button, .search button):after,
input[type=submit]:after {
  margin-left: 2rem;
}
.button a:not(.carousel-nav .button a):hover,
button:not(.carousel-arrow, .carousel-nav button, .search button):hover,
input[type=submit]:hover {
  color: rgba(255, 255, 255, 0.75);
  /* White text with 75% opacity */
}
.button a:not(.carousel-nav .button a):hover:after,
button:not(.carousel-arrow, .carousel-nav button, .search button):hover:after,
input[type=submit]:hover:after {
  opacity: 0.75;
}
.button a:not(.carousel-nav .button a)::after,
button:not(.carousel-arrow, .carousel-nav button, .search button)::after,
input[type=submit]::after {
  background: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_arrow.svg") no-repeat center;
  transition: all 0.4s ease;
}
.button a:not(.carousel-nav .button a).external:after,
button:not(.carousel-arrow, .carousel-nav button, .search button).external:after,
input[type=submit].external:after {
  transform: rotate(-45deg);
}

.view-more a {
  display: flex;
  align-items: center;
  color: black;
  font-size: 1.4rem;
}
.view-more a:before, .view-more a:after {
  content: "";
  background: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_menu.svg") no-repeat center;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
}
.view-more a:before:not(header .button:after), .view-more a:after:not(header .button:after) {
  width: 2.4rem;
  height: 2.4rem;
}
.view-more a:before {
  margin-right: 1rem;
}
.view-more a:after {
  content: none;
}
.view-more a:before {
  background: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_arrow.svg") no-repeat center;
}
.view-more a:hover {
  font-weight: 600;
}
.view-more a:hover:before {
  background-image: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_arrow_red.svg");
}

.load-more a {
  font-size: 1.4rem;
  width: 100%;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 0.5rem;
}
.load-more a:before {
  background-image: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_arrow.svg");
  transform: rotate(90deg) scale(0.7);
}

.dark-background *:not(.faux-select ul, .faux-select ul *, .site-header nav *) {
  color: white;
}
.dark-background button:not(.carousel-nav button),
.dark-background .button a:not(.carousel-nav button) {
  background: white;
  color: #0F232E;
}
.dark-background button:not(.carousel-nav button):hover,
.dark-background .button a:not(.carousel-nav button):hover {
  background: #FF5532;
}
.dark-background button:not(.carousel-nav button):hover:after,
.dark-background .button a:not(.carousel-nav button):hover:after {
  filter: brightness(0) invert(1);
}

/* button.scss end */
/* index.scss start */
/* form.scss start */
:root {
  --form-padding: 1.6rem;
  --qn-margin: 3rem;
  --input-margin: 0.8rem;
  --input-gap: 2.4rem;
  --input-height: 4.4rem;
  --label-height: 1.3rem;
}
@media (min-width: 768px) {
  :root {
    --form-padding: 3rem;
  }
}

@keyframes fieldValidPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.45);
  }
  60% {
    box-shadow: 0 0 0 6px rgba(72, 187, 120, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(72, 187, 120, 0);
  }
}
form fieldset {
  max-width: 100%;
}
form .field:not(fieldset:first-of-type .field),
form .button:not(fieldset:first-of-type .field),
form .legal-consent-container:not(fieldset:first-of-type .field),
form .hs-richtext:not(fieldset:first-of-type .field),
form .hs-submit:not(fieldset:first-of-type .field) {
  margin-top: var(--qn-margin);
}
form .number-input-group,
form input:not([type=radio]):not(.refresh input):not(.input-with-button input):not([type=checkbox]):not([type=submit]),
form textarea,
form .faux-select__display {
  width: 100%;
}
form input:not([type=radio], [type=checkbox], [type=submit], .search input),
form textarea,
form .faux-select__display {
  background: #F4F5F7;
  border: solid 1px #E1E1E1;
  border-radius: 2px;
  padding: 1rem 2rem;
  color: #5C5C5C;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
form input:not([type=radio]):not([type=checkbox]):not([type=submit]),
form .faux-select__display {
  height: var(--input-height);
}
form .faux-select {
  position: relative;
}
form .faux-select .faux-select__display {
  position: relative;
  cursor: pointer;
}
form .faux-select .faux-select__display:before {
  content: "";
  position: absolute;
  right: -1px;
  top: -1px;
  bottom: -1px;
  width: var(--input-height);
  text-align: center;
  line-height: var(--input-height);
}
form .faux-select .faux-select__display:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -0.5rem;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg);
  pointer-events: none;
  right: calc(var(--input-height) / 2 - 0.5rem);
}
form .faux-select ul {
  position: absolute;
  left: 0;
  right: 0;
  background: white;
  border: #E1E1E1;
  box-shadow: 0.3rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  max-height: 30rem;
  overflow: auto;
}
form .faux-select ul li {
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0.5rem;
  color: #333;
}
form .faux-select ul li:hover {
  background: rgba(0, 0, 0, 0.1);
}
form .faux-select ul[aria-hidden=true] {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
form .faux-select ul[aria-hidden=false] {
  display: block;
  opacity: 1;
  z-index: 99;
}
form textarea {
  width: 100% !important;
  min-height: 9rem;
}
form input[type=checkbox] {
  width: 20px;
  height: 20px;
  background: #F4F5F7;
  border: #E1E1E1;
}
form .legal-consent-container p {
  font-size: 1.3rem;
  opacity: 0.8;
}
@media (min-width: 768px) {
  form .form-columns-2 {
    display: flex;
    gap: 2rem;
  }
  form .form-columns-2 > div {
    width: calc(50% - var(--input-gap) / 2);
  }
}
.hubspot-form form fieldset {
  margin: 0 auto;
  text-align: left;
  max-width: none !important;
  width: 100% !important;
}
.hubspot-form form fieldset .input {
  margin: 0;
}
.hubspot-form form .hs-submit {
  text-align: left;
}
@media (min-width: 768px) {
  .hubspot-form form h2 {
    font-size: 3.2rem;
  }
}
.hubspot-form form .field label:not(li label) {
  display: block;
  height: 0;
  position: relative;
  z-index: 9;
  bottom: calc(-1 * var(--label-height));
  left: 2rem;
  transition: all 0.3s ease;
}
.hubspot-form form .field label:not(li label) .hs-form-required {
  color: red;
}
.hubspot-form form .field:has(input:focus, input:not(:placeholder-shown), textarea:focus, textarea:not(:placeholder-shown), .faux-select__display:not(:empty)) label {
  bottom: 2rem;
  left: 0;
  font-size: 1.1rem;
}
.hubspot-form form .field input.error {
  border-color: red;
  background: rgb(60, 3, 3);
}
.hubspot-form form .field .hs-error-msg {
  margin-top: 1rem;
  color: red;
  display: block;
}
.hubspot-form form .field:has(select) label {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip: rect(1px 1px 1px 1px) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
.hubspot-form form input:not([type=radio], [type=checkbox], [type=submit]),
.hubspot-form form textarea,
.hubspot-form form .faux-select__display {
  border: 1px solid #E1E1E1;
  background: #0F232E;
  color: white;
}
.hubspot-form form input:not([type=radio], [type=checkbox], [type=submit])::placeholder,
.hubspot-form form textarea::placeholder,
.hubspot-form form .faux-select__display::placeholder {
  color: white;
}
.hubspot-form form .faux-select__display:after {
  border-color: #E1E1E1;
}
.hubspot-form form .hs-richtext p {
  font-size: 1.4rem;
}
.hubspot-form form .actions {
  display: inline-block;
  position: relative;
  background: white;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
}
.hubspot-form form .actions::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  background: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_arrow.svg") no-repeat center;
  background-size: contain;
  z-index: 1;
}
.hubspot-form form .actions:hover {
  background-color: #FF5532;
}
.hubspot-form form .actions button.submit,
.hubspot-form form .actions input[type=submit] {
  background: transparent;
  color: #0F232E;
  position: relative;
  padding-right: 5rem;
  display: inline-block;
}
@media (max-width: 767px) {
  form .input {
    margin: 0 !important;
  }
  form .input input:not([type=radio]):not([type=checkbox]),
  form .input textarea,
  form .input .faux-select__display {
    width: 100% !important;
  }
}
form.search {
  display: flex;
}
form.search input,
form.search button {
  height: var(--input-height);
  background: #222;
}
form.search input {
  border-radius: 0.4rem 0 0 0.4rem;
  border: none;
  color: white;
  padding-left: 1rem;
}
form.search input::placeholder {
  color: white;
}
form.search input[type=text] {
  background: #222;
  color: white;
}
form.search button {
  display: flex;
  align-items: center;
  text-indent: -9999px;
  text-align: left;
  overflow: hidden;
  position: relative;
  width: var(--input-height);
  border-radius: 0rem 0.4rem 0.4rem 0;
  padding: 0;
  border: none;
  cursor: pointer;
}
form.search button:before, form.search button:after {
  content: "";
  background: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_menu.svg") no-repeat center;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
}
form.search button:before:not(header .button:after), form.search button:after:not(header .button:after) {
  width: 2.4rem;
  height: 2.4rem;
}
form.search button:before {
  content: none;
}
form.search button:after {
  margin-left: 2rem;
}
form.search button:after, form.search button:before {
  margin: 0;
  text-indent: 0;
  white-space: normal;
  position: absolute;
  inset: 0;
  background-size: contain;
}
form.search button:after {
  background-image: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_search.svg");
  background-position: center;
  width: 100%;
  height: 100%;
  background-size: 60%;
}

.hubspot-form {
  border-radius: 0.4rem;
  background: black;
  padding: var(--form-padding);
  display: flex;
  flex-direction: column;
  gap: var(--form-padding);
}
@media (max-width: 400px) {
  .hubspot-form .form-columns-2 > div + div {
    margin-top: var(--qn-margin);
  }
}

.field.field--valid input:not([type=radio]):not([type=checkbox]):not([type=submit]),
.field.field--valid textarea,
.field.field--valid .faux-select__display {
  background-color: #e6f5ea;
  box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.35);
  animation: fieldValidPulse 0.9s ease-out;
  color: #0f2415;
}
.field.field--valid input:not([type=radio]):not([type=checkbox]):not([type=submit])::placeholder,
.field.field--valid textarea::placeholder,
.field.field--valid .faux-select__display::placeholder {
  color: rgba(15, 36, 21, 0.7);
}

.sponsored-with-form .content.small-9 {
  width: 75%;
  float: left;
}
@media (min-width: 1024px) {
  .sponsored-with-form .content.small-9 {
    width: 75%;
    float: right;
  }
}
.sponsored-with-form .sponsored-whitepaper {
  width: 24%;
  float: right;
}
@media (min-width: 1024px) {
  .sponsored-with-form .sponsored-whitepaper {
    width: 25%;
    float: left;
  }
}
.sponsored-with-form .sponsored-whitepaper .image-container {
  padding-left: 10;
  padding-right: 0px;
}
@media (min-width: 1024px) {
  .sponsored-with-form .sponsored-whitepaper .image-container {
    padding-left: 0;
    padding-right: 10px;
  }
}
@media (min-width: 1024px) {
  .sponsored-with-form .sponsored-whitepaper .report-cover {
    margin-left: 0;
    margin-right: 0;
  }
}

.sponsored-whitepaper .sponsored-whitepaper-container {
  display: flex;
  margin: calc(-1 * var(--form-padding)) calc(-1 * var(--form-padding)) var(--form-padding) calc(-1 * var(--form-padding));
  width: calc(100% + 2 * var(--form-padding));
  max-width: calc(100% + 2 * var(--form-padding));
  padding: var(--form-padding);
  background: #FF5532;
  background: rgb(225, 225, 225);
  border-top-left-radius: 0.4rem;
  border-top-right-radius: 0.4rem;
}
.sponsored-whitepaper .sponsored-whitepaper-container .content {
  width: 70%;
}
.sponsored-whitepaper .sponsored-whitepaper-container .content * {
  color: black;
}
.sponsored-whitepaper .sponsored-whitepaper-container .content > * + * {
  margin-top: 1.6rem;
}
.sponsored-whitepaper .sponsored-whitepaper-container .content h4 {
  color: #FF5532;
  font-size: 1.6rem;
}
.sponsored-whitepaper .sponsored-whitepaper-container .content h3 {
  font-size: var(--h2);
  line-height: 1.2;
}
.sponsored-whitepaper .sponsored-whitepaper-container .content p,
.sponsored-whitepaper .sponsored-whitepaper-container .content #vms_description {
  line-height: 1.4;
}
.sponsored-whitepaper .sponsored-whitepaper-container .content .hidden {
  display: none;
}
.sponsored-whitepaper .sponsored-whitepaper-container .content span {
  display: block;
  font-size: 1.6rem;
}
.sponsored-whitepaper .sponsored-whitepaper-container .image-container {
  width: 30%;
  padding-left: 2rem;
}

/* form.scss end */
/* index.scss start */
/* section.scss start */
:root {
  --section-margin: 3.6rem;
  --section-with-header-margin: 4.2rem;
  --section-header-plus-grid-margin: 3.6rem;
  --grid-margin: 2.4rem;
  --article-padding: 1.6rem;
  --text-spacing: 3.2rem;
  --icon-plus-h-margin: 2.8rem;
  --promo-padding: 2rem;
  --promo-heading: 2.8rem;
}
@media (min-width: 768px) {
  :root {
    --section-margin: 6.4rem;
    --section-with-header-margin: 6rem;
    --section-header-plus-grid-margin: 4.2rem;
    --article-padding: 3.2rem;
    --grid-margin: 4rem;
    --text-spacing: 6.4rem;
    --icon-plus-h-margin: 5.2rem;
    --promo-padding: 2.4rem;
    --promo-heading: 3.2rem;
  }
}

section:not(section:first-child, .carousel + section, section.related-articles, .featured) {
  margin-top: var(--section-margin);
}
section:first-child {
  margin-top: var(--gutters);
}
@media (max-width: 767px) {
  section.carousel {
    padding: 0 0 2rem 0;
  }
}
section:has(> header) {
  margin-top: var(--section-with-header-margin);
}
section > header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section > header:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #5C5C5C;
}
section > header h1,
section > header h2,
section > header h3,
section > header .button {
  position: relative;
  z-index: 9;
}
section > header h1,
section > header h2,
section > header h3 {
  background: white;
  padding-right: var(--grid-margin);
}
section > header .button a {
  display: flex;
  align-items: center;
  display: flex;
}
section > header .button a:before, section > header .button a:after {
  content: "";
  background: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_menu.svg") no-repeat center;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
}
section > header .button a:before:not(header .button:after), section > header .button a:after:not(header .button:after) {
  width: 2.4rem;
  height: 2.4rem;
}
section > header .button a:before {
  content: none;
}
section > header .button a:after {
  margin-left: 2rem;
}
section > header .button a:after {
  filter: invert(1);
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
}
@media (min-width: 768px) {
  section > header .button:before {
    content: "";
    width: var(--grid-margin);
    height: 100%;
    background: white;
    display: block;
    position: absolute;
    left: calc(-1 * var(--grid-margin));
  }
}
@media (max-width: 767px) {
  section > header:has(.button) {
    margin-bottom: 7rem;
    position: relative;
  }
  section > header:has(.button) .button {
    position: absolute;
    left: 0;
    bottom: -6rem;
  }
}

/* section.scss end */
/* index.scss start */
/* _header.scss start */
:root {
  --padding: 2rem;
  --h1: 3.2rem;
  --text-padding: 4rem;
  --text-padding-s: 4rem;
  --mobile-nav-height: 6rem;
  --logo-width: 20rem;
}
@media (min-width: 1024px) {
  :root {
    --padding: 3rem;
    --h1: 5.4rem;
    --text-padding: 15vh;
    --text-padding-s: 6rem;
    --logo-width: 24rem;
  }
}

.site-header {
  position: relative;
}
.site-header > div {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}
.site-header nav,
.site-header .logo,
.site-header .text {
  position: relative;
  z-index: 9;
}
.site-header nav ul {
  font-size: 1.8rem;
  font-weight: 300;
}
.site-header .text {
  border-left: solid 1px #FF5532;
  padding: 0 var(--padding);
}
body:not(.home) .site-header .text {
  margin-top: var(--text-padding-s);
}
body.home .site-header .text {
  margin-top: var(--text-padding);
}
.site-header .text h1,
.site-header .text p {
  color: white;
  margin-top: -1rem;
}
.site-header .text p {
  font: 400 var(--h1)/1.18 Arial, Helvetica, sans-serif;
}
.site-header .text .button {
  margin-top: var(--padding);
}
.site-header .header-background {
  position: absolute;
  inset: 0;
  display: block;
}
.site-header .header-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  /* Percentage-based centering */
  display: block;
}
.site-header .header-background:before, .site-header .header-background:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.site-header .header-background:before {
  background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 49%, rgb(0, 0, 0) 99%);
}
.site-header .header-background:after {
  background: black;
  right: 0;
}
.site-header.has-animation .header-background:before {
  left: -100%;
  transition: transform 4s ease-in-out;
}
.site-header.has-animation.loaded .header-background:before {
  transform: translateX(100%);
}
.site-header.has-animation .header-background:after {
  left: 0;
  transform: translateX(0);
  transition: transform 4s ease-in-out;
}
.site-header.has-animation.loaded .header-background:after {
  transform: translateX(100%);
}
@media (max-width: 767px) {
  .site-header {
    padding-bottom: 0;
    min-height: 13rem;
  }
  .site-header:has(.text) {
    padding-bottom: calc(var(--mobile-nav-height) + 3rem);
  }
  .site-header .logo {
    width: 50%;
    max-width: 17.4rem;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .site-header .logo img {
    width: 100%;
    height: auto;
    aspect-ratio: 234/41;
    /* Based on actual image dimensions */
    object-fit: contain;
  }
  .site-header nav {
    height: var(--mobile-nav-height);
    position: absolute;
    z-index: 99;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: solid 1px #FF5532;
    background: white;
    transition: all 0.3s ease;
  }
  .site-header nav * {
    color: black;
  }
  .site-header nav h2 {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    line-height: var(--mobile-nav-height);
    cursor: pointer;
    font-size: 1.8rem;
    text-align: center;
  }
  .site-header nav h2:before, .site-header nav h2:after {
    content: "";
    background: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_menu.svg") no-repeat center;
    display: block;
    width: 1.8rem;
    height: 1.8rem;
  }
  .site-header nav h2:before:not(header .button:after), .site-header nav h2:after:not(header .button:after) {
    width: 2.4rem;
    height: 2.4rem;
  }
  .site-header nav h2:before {
    margin-right: 1rem;
  }
  .site-header nav h2:after {
    content: none;
  }
  .site-header nav h2 span:first-child {
    display: inline;
  }
  .site-header nav h2 span:last-child {
    display: none;
  }
  .site-header nav h2:before {
    background: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_menu.svg") no-repeat center;
  }
  .site-header nav ul {
    visibility: hidden;
    height: 0;
    transition: all 0.4s ease;
    text-align: center;
    background: white;
    padding: 1.2rem 0;
  }
  .site-header nav ul li {
    width: 25rem;
    margin: 0 auto;
  }
  .site-header nav ul li a {
    display: block;
    padding: 1.2rem 0;
  }
  .site-header figure {
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .site-header {
    min-height: 18rem;
  }
  .site-header > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .site-header nav,
  .site-header .logo {
    flex: 0 0 auto;
  }
  .site-header nav {
    flex: 0 0 calc(100% - var(--logo-width) - var(--padding));
  }
  .site-header nav h2 {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    clip: rect(1px 1px 1px 1px) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
  .site-header nav ul {
    display: flex;
    flex-wrap: wrap;
    width: calc(2 * var(--nav-width));
  }
  .site-header nav ul li {
    width: 50%;
  }
  .site-header nav ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 1rem var(--padding);
    border-left: solid 1px #FF5532;
  }
  .site-header .logo {
    margin-left: auto;
    display: flex;
    align-items: start;
    width: var(--logo-width);
  }
  .site-header .logo img {
    height: 4.1rem;
    width: auto;
    aspect-ratio: 234/41;
    /* Based on actual image dimensions */
    object-fit: contain;
  }
  .site-header .text {
    width: 60%;
    margin-left: var(--nav-width);
  }
  body.home .site-header .text {
    margin-bottom: var(--text-padding);
  }
}

body.menu-open .site-header nav {
  z-index: 99;
  border: none;
}
body.menu-open .site-header nav * {
  transition: all 0.4s ease;
}
body.menu-open .site-header nav h2 {
  width: 21rem;
  margin: 0 auto 1rem auto;
  border-bottom: solid 1px #E1E1E1;
}
body.menu-open .site-header nav h2 span {
  color: #FF5532;
}
body.menu-open .site-header nav h2 span:first-child {
  display: none;
}
body.menu-open .site-header nav h2 span:last-child {
  display: inline;
}
body.menu-open .site-header nav h2:before {
  background: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_close.svg") no-repeat center;
}
body.menu-open .site-header nav ul {
  visibility: visible;
  height: auto;
  border-bottom: solid 1px #FF5532;
}
body.menu-open .site-header nav ul li a {
  text-decoration: none;
}

/* _header.scss end */
/* index.scss start */
/* footer.scss start */
:root {
  --margin: 2rem;
}

.promo,
.site-footer {
  padding: var(--promo-padding) 0;
}

.promo {
  background: black;
  position: relative;
}
.promo figure {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  overflow: hidden;
}
.promo figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  /* Percentage-based centering */
  display: block;
}
.promo figure img {
  height: 100%;
}
.promo .text {
  position: relative;
  z-index: 9;
}
.promo .text > *:not(:first-child) {
  margin-top: 1.5rem;
}
.promo .text h2 {
  font-size: var(--promo-heading);
}
@media (min-width: 1024px) {
  .promo .text {
    width: 60%;
  }
  .promo .text p {
    line-height: 1.5;
  }
  .promo .text .button {
    margin-top: 4rem;
  }
}

.site-footer {
  background: #E1E1E1;
  padding-top: 4rem;
  padding-bottom: 4rem;
  font-size: 1.2rem;
  color: black;
  margin-top: var(--section-spacing);
}
.site-footer .info > * + * {
  margin-top: var(--margin);
}
.site-footer .logo {
  width: 15rem;
}
.site-footer .logo + p {
  font-size: 1.4rem;
  margin-top: calc(0.75 * var(--margin));
}
.site-footer a {
  color: #000;
  text-decoration: underline;
}
.site-footer nav {
  text-align: right;
}
.site-footer nav ul {
  font-size: 1.4rem;
}
.site-footer nav ul li a {
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
}
@media (min-width: 768px) {
  .site-footer .logo {
    width: 19rem;
  }
}
@media (max-width: 767px) {
  .site-footer nav {
    display: none;
  }
}

/* footer.scss end */
/* index.scss start */
/* _carousel.scss start */
:root {
  --arrow-height: 1.2rem;
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.carousel {
  position: relative;
  overflow: hidden;
}
.carousel [data-viewport] {
  position: relative;
  min-height: 40rem;
  /* Fallback minimum height */
  overflow: hidden;
}
.carousel [data-viewport] article {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
}
.carousel [data-viewport] article header {
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition-delay: 0.4s;
  opacity: 1;
  visibility: visible;
}
.carousel [data-viewport] article figure {
  transition: transform 0.4s ease-in-out;
}
.carousel [data-viewport] article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel nav.carousel-nav {
  display: flex;
  align-items: start;
  justify-content: center;
  height: var(--arrow-height);
  position: relative;
  z-index: 9;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .carousel nav.carousel-nav {
    bottom: calc(-1 * var(--arrow-height));
  }
}
@media (min-width: 768px) {
  .carousel nav.carousel-nav {
    margin-top: calc(-1 * var(--arrow-height));
  }
}
.carousel nav.carousel-nav button {
  text-indent: -9999px;
  text-align: left;
  overflow: hidden;
  position: relative;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.carousel nav.carousel-nav button:after, .carousel nav.carousel-nav button:before {
  margin: 0;
  text-indent: 0;
  white-space: normal;
  position: absolute;
  inset: 0;
  background-size: contain;
}
.carousel nav.carousel-nav button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.carousel nav.carousel-nav button[data-prev], .carousel nav.carousel-nav button[data-next] {
  display: flex;
  align-items: center;
  text-indent: -9999px;
  text-align: left;
  overflow: hidden;
  position: relative;
}
.carousel nav.carousel-nav button[data-prev]:before, .carousel nav.carousel-nav button[data-prev]:after, .carousel nav.carousel-nav button[data-next]:before, .carousel nav.carousel-nav button[data-next]:after {
  content: "";
  background: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_menu.svg") no-repeat center;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
}
.carousel nav.carousel-nav button[data-prev]:before:not(header .button:after), .carousel nav.carousel-nav button[data-prev]:after:not(header .button:after), .carousel nav.carousel-nav button[data-next]:before:not(header .button:after), .carousel nav.carousel-nav button[data-next]:after:not(header .button:after) {
  width: 2.4rem;
  height: 2.4rem;
}
.carousel nav.carousel-nav button[data-prev]:after, .carousel nav.carousel-nav button[data-prev]:before, .carousel nav.carousel-nav button[data-next]:after, .carousel nav.carousel-nav button[data-next]:before {
  margin: 0;
  text-indent: 0;
  white-space: normal;
  position: absolute;
  inset: 0;
  background-size: contain;
}
.carousel nav.carousel-nav button[data-prev]:before, .carousel nav.carousel-nav button[data-next]:before {
  content: none;
}
.carousel nav.carousel-nav button[data-prev]:after, .carousel nav.carousel-nav button[data-next]:after {
  background: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_arrow.svg") no-repeat center;
}
.carousel nav.carousel-nav button[data-prev], .carousel nav.carousel-nav button[data-next], .carousel nav.carousel-nav button[data-prev]:after, .carousel nav.carousel-nav button[data-next]:after {
  width: 1.7rem;
  height: 1.2rem;
}
.carousel nav.carousel-nav button[data-prev]:after {
  transform: rotate(180deg);
}
.carousel nav.carousel-nav .progress-indicator ul {
  height: 0.8rem;
  display: flex;
  align-items: start;
  justify-content: center;
  border-bottom: solid 1px #E1E1E1;
}
.carousel nav.carousel-nav .progress-indicator ul li,
.carousel nav.carousel-nav .progress-indicator ul button {
  width: 3rem;
  height: 0.8rem;
}
.carousel nav.carousel-nav .progress-indicator ul li {
  display: flex;
  align-items: end;
}
.carousel nav.carousel-nav .progress-indicator ul button {
  background: transparent;
  position: relative;
  z-index: 99;
  width: 100%;
  height: 0.3rem;
}
.carousel nav.carousel-nav .progress-indicator ul button.active {
  background-color: black;
}

/* _carousel.scss end */
/* index.scss start */
/* _article-card.scss start */
:root {
  --category-headline-margin: 0.8rem;
  --content-margin: 1.2rem;
  --headline-s: 1.6rem;
  --headline-l: 2.8rem;
}
@media (min-width: 768px) {
  :root {
    --headline-l: 3.2rem;
  }
}

.article-meta {
  display: flex;
  gap: 1rem;
  font-size: 1.2rem;
}
.article-meta a {
  color: #5C5C5C;
  text-decoration: none;
}
.article-meta a:hover {
  text-decoration: underline;
}
.article-meta .article-date {
  color: #FF5532;
}

.article-cards:not(.whitepaper, .whitepapers, .whitepaper-article) .article-card figure {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article-card header {
  margin-top: var(--content-margin);
}
.article-card header > * + * {
  margin-top: var(--content-margin);
}
.article-card header .article-category {
  font-size: 1.2rem;
}
.article-card header .article-category a {
  color: #5C5C5C;
}
.article-card header .article-category a:visited {
  color: #5C5C5C;
}
.article-card header .article-category + h2,
.article-card header .article-category + h3 {
  margin-top: var(--category-headline-margin);
}
.article-card header .article-category + h2 a,
.article-card header .article-category + h2 a:visited,
.article-card header .article-category + h3 a,
.article-card header .article-category + h3 a:visited {
  color: black;
}
.article-card header h2,
.article-card header h3,
.article-card header h4 {
  font-weight: 400;
}
.article-card header h2 a:hover,
.article-card header h3 a:hover,
.article-card header h4 a:hover {
  text-decoration: underline;
}
.article-card header p {
  line-height: 1.5;
  font-size: 1.4rem;
}
.article-card header a:not(.view-more a) {
  text-decoration: none;
}
.article-card figure {
  border-radius: 0.4rem;
  overflow: hidden;
}
.article-card figure:not(.whitepaper .article-card figure, .whitepaper-related figure, .whitepapers .article-card figure, .whitepaper-article .article-card figure, .carousel figure) {
  aspect-ratio: 16/10;
}
.article-card figure:not(.whitepaper .article-card figure, .whitepaper-related figure, .whitepapers .article-card figure, .whitepaper-article .article-card figure, .carousel figure) img {
  object-fit: cover;
  height: 100%;
  max-width: none;
  width: auto;
  min-width: 100%;
}
.article-card figure img {
  transition: transform 0.6s ease;
  display: block;
}
.article-card:hover figure img {
  transform: scale(1.05);
}
.article-card:hover header h2 a,
.article-card:hover header h3 a,
.article-card:hover header h4 a {
  text-decoration: underline;
}

.tablet-3 .article-card h2,
.tablet-3 .article-card h3,
.tablet-6 .article-card h2,
.tablet-6 .article-card h3 {
  font-size: var(--headline-s);
}
.tablet-3 .article-card,
.tablet-6 .article-card {
  margin-top: var(--section-header-plus-grid-margin);
}

@media (max-width: 767px) {
  .tablet-6 .article-card figure,
  .carousel .article-card figure {
    width: calc(100% + 2 * var(--gutters));
    max-width: calc(100% + 2 * var(--gutters));
    margin-left: calc(-1 * var(--gutters));
    margin-right: calc(-1 * var(--gutters));
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .tablet-6 .article-card {
    display: flex;
    flex-direction: row-reverse;
  }
  .tablet-6 .article-card figure {
    flex: 0 0 calc(50% + var(--grid-padding-xl));
  }
  .tablet-6 .article-card figure:not(.whitepaper .tablet-6 .article-card figure, .whitepapers .tablet-6 .article-card figure) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .tablet-6 .article-card header {
    margin-top: 0;
    flex: 0 0 calc(50% - var(--grid-padding-xl));
  }
}

.whitepapers .tablet-6 .article-card figure {
  background: #E2E2E2;
  aspect-ratio: 16/10;
  text-align: center;
}
.whitepapers .tablet-6 .article-card figure img {
  height: calc(100% - 2rem);
  width: auto;
  margin: 1rem auto;
  object-fit: contain;
}

.whitepaper .tablet-6 .article-card figure,
.whitepaper .tablet-4 .article-card figure,
.whitepaper .tablet-3 .article-card figure,
.whitepapers .tablet-6 .article-card figure,
.whitepapers .tablet-4 .article-card figure,
.whitepapers .tablet-3 .article-card figure {
  background: #E2E2E2;
  aspect-ratio: 16/10;
  text-align: center;
}
.whitepaper .tablet-6 .article-card figure img,
.whitepaper .tablet-4 .article-card figure img,
.whitepaper .tablet-3 .article-card figure img,
.whitepapers .tablet-6 .article-card figure img,
.whitepapers .tablet-4 .article-card figure img,
.whitepapers .tablet-3 .article-card figure img {
  height: calc(100% - 2rem);
  width: auto;
  margin: 1rem auto;
  object-fit: contain;
}

.whitepaper-related figure,
.whitepaper-details figure {
  background: #E2E2E2;
  aspect-ratio: 16/10;
  text-align: center;
}
.whitepaper-related figure img,
.whitepaper-details figure img {
  height: calc(100% - 2rem);
  width: auto;
  margin: 1rem auto;
  object-fit: contain;
}

.carousel .article-card header h2 {
  font-size: 2.8rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .carousel .article-card {
    flex-direction: row-reverse;
  }
  .carousel .article-card figure {
    height: 100%;
    aspect-ratio: 16/10;
  }
  .carousel .article-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .carousel .article-card header {
    margin-top: 0;
    padding-right: 3rem;
  }
  .carousel .article-card header h2 {
    font-size: 3.2rem;
  }
  .carousel .article-card header p {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .carousel {
    width: calc(100% + 2 * var(--gutters));
    max-width: calc(100% + 2 * var(--gutters));
    margin-left: calc(-1 * var(--gutters));
    margin-right: calc(-1 * var(--gutters));
  }
  .carousel .article-card header {
    padding-left: var(--gutters);
    padding-right: var(--gutters);
  }
}

.tablet-6 .article-card figure img {
  object-fit: cover;
  height: 235px;
}

.whitepaper-article .article-card figure {
  background: #E2E2E2;
  aspect-ratio: 16/10;
  text-align: center;
}
.whitepaper-article .article-card figure img {
  height: calc(100% - 2rem);
  width: auto;
  margin: 1rem auto;
  object-fit: contain;
}

/* _article-card.scss end */
/* index.scss start */
/* _article-list.scss start */
:root {
  --article-margin: 2.4rem;
}
@media (min-width: 768px) {
  :root {
    --article-margin: 3.6rem;
  }
}

.article-list article,
.article-list .load-more {
  margin-top: var(--article-margin);
}
.article-list article:not(article:first-of-type),
.article-list .load-more:not(article:first-of-type) {
  border-top: solid 1px #E1E1E1;
  padding-top: var(--article-margin);
}

.article-list {
  width: 98rem;
  margin: 0 auto;
}
.article-list form.search {
  margin-top: var(--article-margin);
}
.article-list article h3 {
  margin-top: 2rem;
  font-size: 1.6rem;
}
.article-list article h3 + p {
  margin-top: 0.8rem;
}
.article-list:not(.whitepaper-article) article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
  aspect-ratio: 16/9;
}
.article-list.whitepaper-article article figure {
  background: #E2E2E2;
  aspect-ratio: 16/10;
  text-align: center;
}
.article-list.whitepaper-article article figure img {
  height: calc(100% - 2rem);
  width: auto;
  margin: 1rem auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .article-list article figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .article-list article header {
    padding-left: 3rem;
    margin-top: 0;
  }
}

/* _article-list.scss end */
/* index.scss start */
/* _single.scss start */
:root {
  --heading-margin: 4.2rem;
}
@media (min-width: 768px) {
  :root {
    --heading-margin: 6rem;
  }
}

.single .entry-header {
  margin-top: var(--gutters);
}
.single .entry-header .grid .text > * + * {
  margin-top: var(--content-margin);
}
.single .entry-header .grid .text p {
  line-height: 1.5;
}
.single .entry-header .grid .text .article-meta > div:not(:last-child) {
  display: flex;
  align-items: center;
}
.single .entry-header .grid .text .article-meta > div:not(:last-child):before, .single .entry-header .grid .text .article-meta > div:not(:last-child):after {
  content: "";
  background: url("/wp-content/themes/goodlife-wp-B2B/microsite/assets/img/icon_menu.svg") no-repeat center;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
}
.single .entry-header .grid .text .article-meta > div:not(:last-child):before:not(header .button:after), .single .entry-header .grid .text .article-meta > div:not(:last-child):after:not(header .button:after) {
  width: 2.4rem;
  height: 2.4rem;
}
.single .entry-header .grid .text .article-meta > div:not(:last-child):before {
  content: none;
}
.single .entry-header .grid .text .article-meta > div:not(:last-child):after {
  margin-left: 2rem;
}
.single .entry-header .grid .text .article-meta > div:not(:last-child):after {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #5C5C5C;
  margin: 0 0 0 1rem;
  transform: translateY(-0.1rem);
}
.single .entry-header .grid figure:not(.whitepaper-details figure) {
  aspect-ratio: 16/10;
  overflow: hidden;
  display: flex;
  border-radius: 0.4rem;
}
.single .entry-header .grid figure:not(.whitepaper-details figure) img {
  object-position: center;
  object-fit: cover;
  max-width: none;
  max-height: none;
  min-width: 100%;
  min-height: 100%;
}
.single .entry-content,
.single .entry-content h2:not(form h2, .hubspot-form h2),
.single .entry-footer,
.single .related-articles {
  margin-top: var(--heading-margin);
}
.single .entry-content {
  text-align: center;
}
.single .entry-content > * {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.single .entry-content > * + *:not(h2) {
  margin-top: 3rem;
}
.single .entry-content h2,
.single .entry-content h3 {
  line-height: 1.25;
}
.single .entry-content h2:not(.hubspot-form h2, .sponsored-whitepaper h3),
.single .entry-content h3:not(.hubspot-form h2, .sponsored-whitepaper h3) {
  text-align: center;
}
.single .entry-content p {
  line-height: 1.5;
}
.single .entry-content figure figcaption {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #5C5C5C;
}
.single .entry-footer {
  border-top: solid 1px #E1E1E1;
  text-align: center;
}
.single .entry-footer > * {
  margin-top: 3rem;
}
.single .entry-footer .article-author {
  font-size: 1rem;
}
.single .entry-footer .social {
  justify-content: center;
}
.single.single-video video:has(+ .entry-header),
.single.single-video iframe:has(+ .entry-header) {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: var(--gutters);
}
.single.single-video .entry-header {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
.single.single-video .entry-header h1 {
  font-size: var(--h1-video);
}
@media (min-width: 768px) {
  .single:not(.single-video) .entry-header {
    padding-left: 3rem;
    border-left: solid 1px #5C5C5C;
  }
  .single:not(.single-video) .entry-header .grid {
    flex-direction: row-reverse;
    align-items: center;
  }
  .single:not(.single-video) .entry-header .grid .text {
    padding-right: var(--heading-margin);
  }
  .single:not(.single-video) .entry-header .grid .text h1 {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .single .entry-header {
    padding-bottom: var(--heading-margin);
    border-bottom: solid 1px #E1E1E1;
  }
  .single .entry-header .article-meta {
    margin-top: var(--content-margin);
  }
  .single.single-video video:has(+ .entry-header),
  .single.single-video iframe:has(+ .entry-header) {
    width: calc(100% + 2 * var(--gutters));
    max-width: calc(100% + 2 * var(--gutters));
    margin-left: calc(-1 * var(--gutters));
    margin-right: calc(-1 * var(--gutters));
  }
}

article .entry-header h1.entry-title {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
@media (min-width: 1024px) {
  article .entry-header h1.entry-title {
    font-size: 40px;
    line-height: 40px;
    /* 100% */
    letter-spacing: -0.6px;
  }
}
article .entry-content h2 {
  font-size: 28px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  font: 400 28px/1.5 Arial, Helvetica, sans-serif !important;
}
@media (min-width: 1024px) {
  article .entry-content h2 {
    font-size: 32px !important;
    line-height: 40px;
    font: 400 32px/1.5 Arial, Helvetica, sans-serif !important;
  }
}

/* _single.scss end */
/* index.scss end */

/*# sourceMappingURL=index.css.map */
