/* Theme base styles */

:root {
	--black: #000;
	--gray-dark: #707078;
	--gray-light: #f2f2f2;
	--red: #c83e77;
	--orange: #f47e35;
	--purple: #4b4893;
	--purple-dark: #28264f;
	--purple-medium: #7f62a9;
	--purple-light: #e8e8f5;
	--white: #fff;
}

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}
/*! 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;
}

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

/* Responsive grid */

.row-fluid {
  width: 100%;
}

.row-fluid:before,
.row-fluid:after {
  display: table;
  content: "";
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*="span"] {
  display: block;
  float: left;
  width: 100%;
  /* min-height: 1px; */
  margin-left: 2.127659574%;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 99.99999998999999%;
}

.row-fluid .span11 {
  width: 91.489361693%;
}

.row-fluid .span10 {
  width: 82.97872339599999%;
}

.row-fluid .span9 {
  width: 74.468085099%;
}

.row-fluid .span8 {
  width: 65.95744680199999%;
}

.row-fluid .span7 {
  width: 57.446808505%;
}

.row-fluid .span6 {
  width: 48.93617020799999%;
}

.row-fluid .span5 {
  width: 40.425531911%;
}

.row-fluid .span4 {
  width: 31.914893614%;
}

.row-fluid .span3 {
  width: 23.404255317%;
}

.row-fluid .span2 {
  width: 14.89361702%;
}

.row-fluid .span1 {
  width: 6.382978723%;
}

.container-fluid:before,
.container-fluid:after {
  display: table;
  content: "";
}

.container-fluid:after {
  clear: both;
}

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid [class*="span"] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    /* min-height: 1px; */
    margin-left: 2.762430939%;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 99.999999993%;
  }

  .row-fluid .span11 {
    width: 91.436464082%;
  }

  .row-fluid .span10 {
    width: 82.87292817100001%;
  }

  .row-fluid .span9 {
    width: 74.30939226%;
  }

  .row-fluid .span8 {
    width: 65.74585634900001%;
  }

  .row-fluid .span7 {
    width: 57.182320438000005%;
  }

  .row-fluid .span6 {
    width: 48.618784527%;
  }

  .row-fluid .span5 {
    width: 40.055248616%;
  }

  .row-fluid .span4 {
    width: 31.491712705%;
  }

  .row-fluid .span3 {
    width: 22.928176794%;
  }

  .row-fluid .span2 {
    width: 14.364640883%;
  }

  .row-fluid .span1 {
    width: 5.801104972%;
  }
}

@media (min-width: 1280px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    /* min-height: 1px; */
    margin-left: 2.564102564%;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 100%;
  }

  .row-fluid .span11 {
    width: 91.45299145300001%;
  }

  .row-fluid .span10 {
    width: 82.905982906%;
  }

  .row-fluid .span9 {
    width: 74.358974359%;
  }

  .row-fluid .span8 {
    width: 65.81196581200001%;
  }

  .row-fluid .span7 {
    width: 57.264957265%;
  }

  .row-fluid .span6 {
    width: 48.717948718%;
  }

  .row-fluid .span5 {
    width: 40.170940171000005%;
  }

  .row-fluid .span4 {
    width: 31.623931624%;
  }

  .row-fluid .span3 {
    width: 23.076923077%;
  }

  .row-fluid .span2 {
    width: 14.529914530000001%;
  }

  .row-fluid .span1 {
    width: 5.982905983%;
  }
}

/* Clearfix */

.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}

/* Visibilty classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/* Responsive visibilty classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}
.content-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.dnd-section,
.content-wrapper--vertical-spacing {
  padding: 4rem 2rem;
}
@media (min-width: 992px) {
  .dnd-section,
  .content-wrapper--vertical-spacing {
    padding: 8rem 4rem;
  }
}

.dnd-section > .row-fluid {
  max-width: 1280px;
}

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

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 9.8rem;
}

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

body {
  color: var(--gray-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  line-height: 1.6;
  word-break: break-word;
}
@media (min-width: 992px) {
  body {
    font-size: 1.9rem;
  }
}

/* Anchors */

a {
  color: var(--purple);
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a:hover,
a:focus {
  color: var(--purple-dark);
}

a:active {
  color: var(--purple-dark);
}

/* Paragraphs */

p {
  margin: 0 0 1.6rem;
}
p a {
  text-decoration: underline;
}
p.p--lg {
  font-family: "halyard-display", sans-serif;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
}
p.p--lg strong {
  font-weight: 600;
}
p.p--md {
  font-family: "halyard-display", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
}
p.p--md strong {
  font-weight: 600;
}
p.p--sm {
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  p.p--lg {
    font-size: 3.2rem;
  }
  p.p--md {
    font-size: 2.3rem;
  }
  p.p--sm {
    font-size: 1.6rem;
  }
}

/* Headings */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 1.6rem;
  color: var(--purple);
  font-family: "halyard-display", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 4rem;
  line-height: 1;
}
h2,
.h2 {
  font-size: 2.8rem;
}
h3,
.h3 {
  font-size: 2rem;
}
h4,
.h4 {
  font-size: 1.4rem;
  font-weight: 400;
}
h5,
.h5 {
  font-size: 1.4rem;
}
h6,
.h6 {
  font-size: 1.2rem;
  font-weight: 400;
}

.h1--lg {
  font-size: 5.6rem;
}

@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 4.5rem;
  }
  h2,
  .h2 {
    font-size: 3.2rem;
  }
  h3,
  .h3 {
    font-size: 2.3rem;
  }
  h4,
  .h4 {
    font-size: 1.6rem;
  }

  .h1--lg {
    font-size: 6.4rem;
  }
}

/* Lists */

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

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

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

ul ul {
  padding-left: 1rem;
}
ul ul li {
  padding-left: 1rem;
  list-style: none;
}
ul ul li::marker {
  content: "–";
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 4px solid var(--purple-light);
  margin: 2rem 0;
  padding-left: 2rem;
  font-size: 2.4rem;
  font-style: italic;
}

.blockquote-1 {
  position: relative;
  margin-top: 0;
  margin-bottom: 3rem;
  padding: 2rem 0 4rem 0;
  border-left: 0;
  border-bottom: 1px solid var(--purple-light);
  color: var(--purple);
  font-family: "halyard-display", sans-serif;
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}
.blockquote-1:before {
  display: block;
  content: "";
  width: 44px;
  height: 39px;
  margin-bottom: 4rem;
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.577 21.14V38.5H0V23.264C0 11.81 4.554 2.716 19.536 0l1.678 4.015c-6.951 3.425-9.348 8.858-9.468 17.124h6.831Zm22.787 0V38.5H22.786V23.264C22.786 11.81 27.341 2.716 42.322 0L44 4.015c-6.951 3.425-9.348 8.858-9.468 17.124h6.832Z' fill='url(%23a)'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' y1='19.25' x2='44' y2='19.25' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23C83E77'/%3E%3Cstop offset='1' stop-color='%23F47E35'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}

.blockquote-2 {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 0 0 4rem 0;
  border: 0;
  border-top: 1px solid;
  -o-border-image: linear-gradient(
      to right,
      rgba(75, 72, 147, 0) 20%,
      rgba(75, 72, 147, 1) 100%
    )
    1;
  border-image: -webkit-gradient(
      linear,
      left top, right top,
      color-stop(20%, rgba(75, 72, 147, 0)),
      to(rgba(75, 72, 147, 1))
    )
    1;
  border-image: linear-gradient(
      to right,
      rgba(75, 72, 147, 0) 20%,
      rgba(75, 72, 147, 1) 100%
    )
    1;
  color: var(--purple);
  font-family: "halyard-display", sans-serif;
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}
.blockquote-2:before {
  display: block;
  content: "";
  width: 44px;
  height: 39px;
  margin-bottom: 4rem;
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.577 21.14V38.5H0V23.264C0 11.81 4.554 2.716 19.536 0l1.678 4.015c-6.951 3.425-9.348 8.858-9.468 17.124h6.831Zm22.787 0V38.5H22.786V23.264C22.786 11.81 27.341 2.716 42.322 0L44 4.015c-6.951 3.425-9.348 8.858-9.468 17.124h6.832Z' fill='url(%23a)'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' y1='19.25' x2='44' y2='19.25' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23C83E77'/%3E%3Cstop offset='1' stop-color='%23F47E35'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}
.blockquote-2:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  border: 0;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(
      to right,
      rgba(75, 72, 147, 1) 0%,
      rgba(75, 72, 147, 0) 80%
    )
    1;
  border-image: -webkit-gradient(
      linear,
      left top, right top,
      from(rgba(75, 72, 147, 1)),
      color-stop(80%, rgba(75, 72, 147, 0))
    )
    1;
  border-image: linear-gradient(
      to right,
      rgba(75, 72, 147, 1) 0%,
      rgba(75, 72, 147, 0) 80%
    )
    1;
}

@media (min-width: 1040px) {
  .blockquote-1 {
    position: relative;
    left: -10rem;
    width: calc(100% + 20rem);
    margin-bottom: 6rem;
    padding: 4rem 0 8rem 0;
    font-size: 3.2rem;
  }

  .blockquote-2 {
    position: relative;
    left: -10rem;
    width: calc(100% + 20rem);
    margin-top: 6rem;
    margin-bottom: 6rem;
    padding: 0 0 8rem 0;
    font-size: 3.2rem;
  }
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid var(--purple-light);
  margin: 3rem auto;
}

/* Image alt text */

img {
  font-size: 0.6rem;
  word-break: normal;
}
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1.5rem 3rem 1.4rem 3rem;
  border-radius: 100vw;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.btn svg {
  margin-left: 1rem;
}

.btn:hover,
.btn:active,
.btn:focus {
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.24);
}

.btn--primary {
  background: -webkit-gradient(linear, left top, right top, color-stop(-5.27%, #c83e77), to(#f47e35));
  background: linear-gradient(90deg, #c83e77 -5.27%, #f47e35 100%);
  color: var(--white);
}
.btn--primary:hover,
.btn--primary:active,
.btn--primary:focus {
  background: -webkit-gradient(linear, left top, right top, color-stop(20.94%, #f65275), to(#ff9800));
  background: linear-gradient(90deg, #f65275 20.94%, #ff9800 100%);
  color: var(--white);
}

.btn--secondary {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--purple);
}
.btn--secondary:hover,
.btn--secondary:active,
.btn--secondary:focus {
  border-color: var(--orange);
  color: var(--fff);
}

.btn--tertiary {
  background-color: transparent;
  border: 2px solid var(--purple-light);
  color: var(--purple);
}
.btn--tertiary:hover,
.btn--tertiary:active,
.btn--tertiary:focus {
  border-color: var(--orange);
  color: var(--purple);
  border-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white)),
    radial-gradient(circle at top left, #c83e77, #f47e35);
  background-image: linear-gradient(white, white),
    radial-gradient(circle at top left, #c83e77, #f47e35);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.btn--sm {
  font-size: 1.4rem;
  padding: 1rem 2rem;
}

.btn--arrow-right {
  position: relative;
}
.btn--arrow-right::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='18' viewBox='0 0 19 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.25 9H14.75' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.5 3.75L14.75 9L9.5 14.25' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 19px;
  height: 18px;
  margin-left: 1rem;
  pointer-events: none;
}
.btn.btn--white {
  color: var(--purple);
  background: #fff;
}
.btn--white.btn--arrow-right:after {
    background-image: url("data:image/svg+xml,%3Csvg width='19' height='18' viewBox='0 0 19 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.25 9H14.75' stroke='%234b4893' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.5 3.75L14.75 9L9.5 14.25' stroke='%234b4893' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    content: "";
}
/* Labels */

form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gray-dark);
  font-family: "halyard-display", sans-serif;
  line-height: 1.2;
}

/* Help text */

form legend {
  color: var(--gray-dark);
}

/* Inputs */

form input[type="text"],
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: block;
  padding: 1rem 0;
  width: 100%;
  height: 4.2rem;
  margin-bottom: 3rem;
  border: 0;
  border-bottom: 1px solid var(--purple);
  color: var(--purple);
  font-family: "halyard-display", sans-serif;
  font-weight: 300;
  line-height: 1.2;
}

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('https://8150749.fs1.hubspotusercontent-na1.net/hubfs/8150749/raw_assets/public/CRx_2021/images/select-arrow.svg');
  background-position: calc(100% - 2.6rem) 50%;
  background-repeat: no-repeat;
}

form textarea {
  min-height: 24rem;
  margin-top: 1rem;
  padding: 1rem 1rem;
  border: 1px solid var(--purple);
}

form input[type="text"]: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 {
  background-color: var(--purple-light);
  border-bottom-color: var(--purple-dark);
  outline: 0;
}

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

::-webkit-input-placeholder {
  color: var(--purple);
  font-family: "halyard-display", sans-serif;
  font-weight: 300;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
::placeholder,
.hs-fieldtype-date .input .hs-dateinput:before {
  color: var(--purple);
  font-family: "halyard-display", sans-serif;
  font-weight: 300;
}

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 1rem 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.5rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

.fn-date-picker td.is-selected .pika-button {
  background: var(--gray-dark);
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  background-color: var(--gray-dark) !important;
  border-radius: 0 !important;
  color: #fff;
}

.fn-date-picker td.is-today .pika-button {
  color: var(--gray-dark);
}

/* 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: 1rem;
  margin: 0 0 1.6rem;
}

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

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

.hs-error-msg {
  color: red;
  font-size: 1.4rem;
  margin: -1rem 0 0 0;
}

/* Submit button */

form input[type="submit"],
form .hs-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 1.6rem 3rem 1.5rem 3rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(-5.27%, #c83e77), to(#f47e35));
  background: linear-gradient(90deg, #c83e77 -5.27%, #f47e35 100%);
  border: 0;
  border-radius: 5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

form input[type="submit"]:hover,
form input[type="submit"]:focus,
form .hs-button:hover,
form .hs-button:focus,
form input[type="submit"]:active,
form .hs-button:active {
  background: -webkit-gradient(linear, left top, right top, color-stop(20.94%, #f65275), to(#ff9800));
  background: linear-gradient(90deg, #f65275 20.94%, #ff9800 100%);
  cursor: pointer;
  color: var(--white);
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.24);
}

/* Add arrow to form button */
form input[type="submit"] {
  padding-right: 5rem;
}
.form-btn {
  position: relative;
}
.form-btn::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 2rem;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='18' viewBox='0 0 19 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.25 9H14.75' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.5 3.75L14.75 9L9.5 14.25' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 19px;
  height: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

/* Fix Column Layouts */

.hs-form fieldset {
  max-width: inherit !important;
}
.hs-form fieldset.form-columns-1 .hs-form-field,
.hs-form fieldset.form-columns-2 .hs-form-field,
.hs-form fieldset.form-columns-3 .hs-form-field {
  width: 100% !important;
}
.hs-form fieldset.form-columns-1 .hs-form-field .input,
.hs-form fieldset.form-columns-2 .hs-form-field .input,
.hs-form fieldset.form-columns-3 .hs-form-field .input {
  margin-right: 0 !important;
}
.hs-form fieldset.form-columns-1 .hs-form-field .hs-input,
.hs-form fieldset.form-columns-2 .hs-form-field .hs-input,
.hs-form fieldset.form-columns-3 .hs-form-field .hs-input {
  width: 100% !important;
}

@media (min-width: 480px) {
  .hs-form fieldset.form-columns-1 .hs-form-field {
    width: 100% !important;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field {
    width: 50% !important;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(1) {
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field {
    width: 33.333% !important;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(1) {
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(3) {
    padding-left: 0.75rem;
  }
}
/* Table */

table {
  background-color: #fff;
  border-color: var(--gray-dark);
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  border-color: var(--gray-dark);
  color: var(--gray-dark);
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

thead th,
thead td {
  background-color: var(--gray-dark);
  border-bottom-color: var(--gray-dark);
  color: #fff;
}

tfoot td {
  background-color: #fff;
  color: var(--gray-dark);
}

tbody + tbody {
  border-top-color: var(--gray-dark);
}

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

.body-wrapper {
  padding-top: 9.8rem;
}
.header {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background-color: var(--white);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  height: 115px;
}
.header.is-active {
  -webkit-box-shadow: 0 1px 6px rgb(0 0 0 / 8%);
  box-shadow: 0 1px 6px rgb(0 0 0 / 8%);
  padding: 5px 20px;
}
@media (max-width: 991px) {
  .header[data-scroll-direction="down"] {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  .header[data-scroll-direction="up"] {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
.header__logo {
  grid-column-start: 2;
  font-size: 0;
}
.header__logo-logo {
  display: none;
  height: auto;
}
.header__logo-mark {
  height: auto;
}
@media (min-width: 992px) {
  .header__inner {
    max-width: calc(100vw - 11.3rem);
  }
  .header__logo-logo {
    display: block;
  }
  .header__logo-mark {
    display: none;
  }
  .header.is-active .header__logo-logo {
    display: none;
  }
  .header.is-active .header__logo-mark {
    display: block;
  }
}
.footer {
  padding: 6rem 2rem;
}
.footer__company {
  margin-top: 3rem;
  text-align: center;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer hr {
  border-bottom-color: var(--purple-dark);
}
.footer__copyright {
  font-family: "halyard-display", sans-serif;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .footer {
    padding: 6rem 4rem;
  }
  .footer__top {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }
  .footer__company {
    margin-top: 0;
    text-align: right;
  }
  .footer__logo {
    margin-bottom: 1.5rem;
  }
  .footer hr {
    border-bottom-color: var(--purple-light);
  }
  .footer__bottom {
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 2rem;
    grid-template-columns: auto 1fr;
    line-height: 1;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* Colors */

.gray-dark {
  color: var(--gray-dark) !important;
}
.gray-light {
  color: var(--gray-light) !important;
}
.red {
  color: var(--red) !important;
}
.orange {
  color: var(--orange) !important;
}
.purple-dark {
  color: var(--purple-dark) !important;
}
.purple-medium {
  color: var(--purple-medium) !important;
}
.purple-light {
  color: var(--purple-light) !important;
}
.purple {
  color: var(--purple) !important;
}

/* Backgrounds */

.bg-gray-light {
  background-color: var(--gray-light);
}

.bg-purple-dark {
  background-color: var(--purple-dark);
  color: var(--white);
}
.bg-purple-dark a {
  color: var(--white);
}
.bg-purple-dark a:not(.btn):hover,
.bg-purple-dark a:not(.btn):active,
.bg-purple-dark a:not(.btn):focus {
  color: var(--orange);
}
.bg-purple-dark h1,
.bg-purple-dark h2,
.bg-purple-dark h3,
.bg-purple-dark h4,
.bg-purple-dark h5,
.bg-purple-dark h6 {
  color: var(--white);
}
.bg-purple-dark form input[type="text"],
.bg-purple-dark form input[type="email"],
.bg-purple-dark form input[type="password"],
.bg-purple-dark form input[type="tel"],
.bg-purple-dark form input[type="number"],
.bg-purple-dark form input[type="file"],
.bg-purple-dark form select,
.bg-purple-dark form textarea {
  border: 0;
}
.bg-purple-dark form input[type="submit"],
.bg-purple-dark form .hs-button {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.bg-purple-dark form input[type="submit"]:hover,
.bg-purple-dark form input[type="submit"]:focus,
.bg-purple-dark form input[type="submit"]:active,
.bg-purple-dark form .hs-button:hover,
.bg-purple-dark form .hs-button:focus,
.bg-purple-dark form .hs-button:active {
  border-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--purple-dark)), to(var(--purple-dark))),
    radial-gradient(circle at top left, #c83e77, #f47e35);
  background-image: linear-gradient(var(--purple-dark), var(--purple-dark)),
    radial-gradient(circle at top left, #c83e77, #f47e35);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.bg-purple-dark ::-webkit-input-placeholder {
  color: var(--white);
}
.bg-purple-dark ::-webkit-input-placeholder,
.bg-purple-dark ::-moz-placeholder,
.bg-purple-dark :-ms-input-placeholder,
.bg-purple-dark :-moz-placeholder,
.bg-purple-dark ::placeholder,
.bg-purple-dark .hs-fieldtype-date .input .hs-dateinput:before {
  color: var(--white);
}

.bg-purple-light {
  background-color: var(--purple-light);
}

.bg-purple-medium {
  background-color: var(--purple-medium);
  color: var(--white);
}
.bg-purple-medium a {
  color: var(--white);
}
.bg-purple-medium a:not(.btn):hover,
.bg-purple-medium a:not(.btn):active,
.bg-purple-medium a:not(.btn):focus {
  color: var(--orange);
}
.bg-purple-medium h1,
.bg-purple-medium h2,
.bg-purple-medium h3,
.bg-purple-medium h4,
.bg-purple-medium h5,
.bg-purple-medium h6 {
  color: var(--white);
}
.bg-purple-medium form input[type="text"],
.bg-purple-medium form input[type="email"],
.bg-purple-medium form input[type="password"],
.bg-purple-medium form input[type="tel"],
.bg-purple-medium form input[type="number"],
.bg-purple-medium form input[type="file"],
.bg-purple-medium form select,
.bg-purple-medium form textarea {
  border: 0;
}

.bg-purple {
  background-color: var(--purple);
  color: var(--white);
}
.bg-purple a {
  color: var(--white);
}
.bg-purple a:not(.btn):hover,
.bg-purple a:not(.btn):active,
.bg-purple a:not(.btn):focus {
  color: var(--orange);
}
.bg-purple h1,
.bg-purple h2,
.bg-purple h3,
.bg-purple h4,
.bg-purple h5,
.bg-purple h6 {
  color: var(--white);
}
.bg-purple form input[type="text"],
.bg-purple form input[type="email"],
.bg-purple form input[type="password"],
.bg-purple form input[type="tel"],
.bg-purple form input[type="number"],
.bg-purple form input[type="file"],
.bg-purple form select,
.bg-purple form textarea {
  border: 0;
}

.bg-white {
  background-color: var(--white);
}

.bg-gradient-light {
  background: -webkit-gradient(linear, left bottom, left top, from(#f2f2f2), to(#ffffff));
  background: linear-gradient(0deg, #f2f2f2 0%, #ffffff 100%);
}

/* Spacing */

.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}

/* Responsive Iframe */

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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