/* Theme base styles */

/* 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 {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * 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;  */
  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;
  -moz-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;
    -moz-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;
    -moz-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 {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 0rem;
}

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

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 1em;
  margin-bottom: 0.35rem;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* 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: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border-collapse: collapse;
  /* margin-bottom: 1.4rem; */ 
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 0.7rem;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* 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
*/

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

@charset "UTF-8";
@media (min-width: 861px) {
  .error-page .grid-display--colcount--2 {
    grid-template-columns: 1fr;
  }
}
section.error-page-content-wrapper {
  max-width: unset;
}

.error-page {
  min-height: 75vh;
  max-width: 1240px;
  margin: 0 auto;
  padding: 3em 0 5em 0;
  position: relative;
  background-image: url(https://21615947.fs1.hubspotusercontent-na1.net/hubfs/21615947/furkin_404-paws.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 0;
}
@media (max-width: 860px) {
  .error-page {
    background-position: bottom left;
    padding: 5em 0;
    padding-bottom: 0;
  }
}
.error-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1em;
  position: relative;
}
.error-page-grid h1 {
  text-align: center;
  font-size: 3em;
  color: #2F0147;
}
@media (max-width: 860px) {
  .error-page-grid h1 {
    font-size: 2em;
  }
}
.error-page-grid .text-display {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2em;
  max-width: 1000px;
}
.error-page-grid a {
  display: block;
  max-width: fit-content;
  margin: auto;
  font-size: 1.2em;
}
.error-page-grid .links {
  text-align: center;
}
.error-page-grid::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-52%, -50%);
  padding: 2em;
  height: 100%;
  width: 100%;
  box-sizing: content-box;
  background-image: url("https://21615947.fs1.hubspotusercontent-na1.net/hubfs/21615947/furkin_dotted-border.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: -1;
}
@media (max-width: 860px) {
  .error-page-grid::before {
    padding: 1em;
  }
}
.error-page-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}
.error-page-grid-wrapper h1 {
  text-align: center;
  font-size: 1.8em;
  color: #2F0147;
}
.error-page__link-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 860px) {
  .error-page__link-grid {
    display: grid;
    gap: 0.5em;
  }
}
@media (min-width: 861px) {
  .error-page__link-grid .link-grid--dash {
    padding: 0 0.2em;
  }
}
@media (max-width: 860px) {
  .error-page__link-grid .link-grid--dash {
    display: none;
  }
}
.error-page__link-grid a {
  font-weight: bold;
  color: #2f0147;
  text-decoration: none;
  transition: 0.2s;
  border-bottom: 2px solid transparent;
}
.error-page__link-grid a:hover {
  border-color: #2f0147;
}
@media (max-width: 860px) {
  .error-page__link-grid a {
    font-size: 1.2em;
  }
}
.error-page .grid-display--colcount--2 {
  grid-template-columns: 1.5fr 2fr;
}
@media (min-width: 861px) {
  .error-page .grid-display--colcount--2 {
    gap: 10em;
  }
}
@media (max-width: 860px) {
  .error-page .grid-display--colcount--2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .error-page .grid-wrapper--render--visuals-width-large .grid-display__item__visual {
    max-width: 75%;
  }
}
.error-page .grid-wrapper__content {
  border-radius: 1em;
  position: relative;
}
.error-page .grid-wrapper__content::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  height: 100%;
  width: 100%;
  box-sizing: content-box;
  background-image: url("https://21615947.fs1.hubspotusercontent-na1.net/hubfs/21615947/furkin_dotted-border.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: -1;
}
@media (max-width: 860px) {
  .error-page .grid-wrapper__content::before {
    padding: 1em;
  }
}
.error-page .text-404 {
  color: #F3F6F9;
  font-size: 15em;
  position: relative;
  position: absolute;
  text-align: center;
  font-weight: 700;
  line-height: 0.7;
}
@media (max-width: 860px) {
  .error-page .text-404 {
    font-size: 10em;
    display: none;
  }
}
@media (min-width: 861px) {
  .error-page .text-404 {
    text-align: right;
    bottom: 0;
    right: 0;
  }
}
.error-page .image-display {
  order: 1;
}
@media (min-width: 861px) {
  .error-page .image-display {
    left: 0;
    max-width: 50%;
  }
}
@media (min-width: 861px) {
  .error-page .image-display.error--cat {
    bottom: 0;
    display: flex;
  }
}
@media (min-width: 861px) {
  .error-page .image-display.error--dog {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 860px) {
  .error-page .grid-display__item__text {
    text-align: center;
  }
}
.error-page .grid-wrapper {
  padding: 5em 0;
  padding: 0;
}
@media (max-width: 860px) {
  .error-page .grid-wrapper {
    padding: 0;
  }
}
.error-page .grid-wrapper::before {
  color: #F3F6F9;
  content: attr(data-error);
  font-size: 40vw;
  font-weight: bold;
  left: 50%;
  position: absolute;
  top: 0%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}
.error-page .grid-wrapper__inner {
  border-radius: 1em;
}
.error-page .grid-wrapper .grid-display .text-display {
  color: #2f0147;
}
.error-page .grid-wrapper .grid-display .text-display__header {
  font-size: 3em;
  line-height: 1.1em;
  margin-bottom: 0.25em;
}
.error-page .grid-wrapper .grid-display .text-display__subheader {
  margin-bottom: 0.5em;
}
@media (max-width: 860px) {
  .error-page .cat-reverse {
    padding-bottom: 0;
  }
}
@media (max-width: 860px) {
  .error-page .cat-reverse .grid-display {
    grid-template-rows: 1fr 200px;
    gap: 3.5em;
  }
}
@media (max-width: 860px) {
  .error-page .cat-reverse .grid-display__item:nth-of-type(1) {
    display: flex;
    align-items: flex-end;
    grid-row: 2;
  }
}
@media (max-width: 860px) {
  .error-page .cat-reverse .grid-display__item__visual {
    margin: 0 auto;
    max-width: 80%;
  }
}
@media (max-width: 860px) {
  .error-page .cat-reverse .grid-display__item__visual .image-display {
    display: flex;
  }
}

@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
h1 {
  font-size: 4em;
  line-height: 1.2;
  font-family: "rooney-sans", sans-serif;
  font-weight: 800;
  margin: 0 0 0.25em;
}
@media (max-width: 860px) {
  h1 {
    font-size: 2.5em;
    line-height: 1.2;
  }
}
.h1 {
  font-size: 4em;
  line-height: 1.2;
  font-family: "rooney-sans", sans-serif;
  font-weight: 800;
  margin: 0 0 0.25em;
}
@media (max-width: 860px) {
  .h1 {
    font-size: 2.5em;
    line-height: 1.2;
  }
}
.type-scale-h1 {
  font-size: 4em;
  line-height: 1.2;
  font-family: "rooney-sans", sans-serif;
  font-weight: 800;
  margin: 0 0 0.25em;
}
@media (max-width: 860px) {
  .type-scale-h1 {
    font-size: 2.5em;
    line-height: 1.2;
  }
}
h2 {
  font-size: 2.5em;
  line-height: 1.2;
  font-family: "rooney-sans", sans-serif;
  font-weight: 800;
  margin: 0 0 0.25em;
}
@media (max-width: 860px) {
  h2 {
    font-size: 2.2em;
    line-height: 1.2;
  }
}
.h2 {
  font-size: 2.5em;
  line-height: 1.2;
  font-family: "rooney-sans", sans-serif;
  font-weight: 800;
  margin: 0 0 0.25em;
}
@media (max-width: 860px) {
  .h2 {
    font-size: 2.2em;
    line-height: 1.2;
  }
}
.type-scale-h2 {
  font-size: 2.5em;
  line-height: 1.2;
  font-family: "rooney-sans", sans-serif;
  font-weight: 800;
  margin: 0 0 0.25em;
}
@media (max-width: 860px) {
  .type-scale-h2 {
    font-size: 2.2em;
    line-height: 1.2;
  }
}
h3, .text-display__header {
  font-size: 2em;
  line-height: 1.3;
  font-weight: 700;
  font-family: "rooney-sans", sans-serif;
  margin: 0 0 0.25em;
}
@media (max-width: 860px) {
  h3, .text-display__header {
    font-size: 1.8em;
    line-height: 1.3;
  }
}
.h3 {
  font-size: 2em;
  line-height: 1.3;
  font-weight: 700;
  font-family: "rooney-sans", sans-serif;
  margin: 0 0 0.25em;
}
@media (max-width: 860px) {
  .h3 {
    font-size: 1.8em;
    line-height: 1.3;
  }
}
.type-scale-h3 {
  font-size: 2em;
  line-height: 1.3;
  font-weight: 700;
  font-family: "rooney-sans", sans-serif;
  margin: 0 0 0.25em;
}
@media (max-width: 860px) {
  .type-scale-h3 {
    font-size: 1.8em;
    line-height: 1.3;
  }
}
h4 {
  font-size: 1.4em;
  line-height: 1.4;
  font-family: "rooney-sans", sans-serif;
  font-weight: 700;
  margin: 0 0 0.25em;
}

.h4 {
  font-size: 1.4em;
  line-height: 1.4;
  font-family: "rooney-sans", sans-serif;
  font-weight: 700;
  margin: 0 0 0.25em;
}

.type-scale-h4 {
  font-size: 1.4em;
  line-height: 1.4;
  font-family: "rooney-sans", sans-serif;
  font-weight: 700;
  margin: 0 0 0.25em;
}

h5 {
  font-size: 1.2em;
  line-height: 1.5;
  font-family: "proxima-nova", sans-serif;
  margin: 0px;
  margin-bottom: 0.25em;
}

.h5 {
  font-size: 1.2em;
  line-height: 1.5;
  font-family: "proxima-nova", sans-serif;
  margin: 0px;
  margin-bottom: 0.25em;
}

.type-scale-h5 {
  font-size: 1.2em;
  line-height: 1.5;
  font-family: "proxima-nova", sans-serif;
  margin: 0px;
  margin-bottom: 0.25em;
}

body {
  font-size: 18px;
  line-height: 1.6;
  font-family: "proxima-nova", sans-serif;
}
@media (max-width: 860px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 860px) {
  body {
    font-family: "proxima-nova", sans-serif;
  }
}

.body {
  font-size: 18px;
  line-height: 1.6;
  font-family: "proxima-nova", sans-serif;
}
@media (max-width: 860px) {
  .body {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 860px) {
  .body {
    font-family: "proxima-nova", sans-serif;
  }
}

.type-scale-body {
  font-size: 18px;
  line-height: 1.6;
  font-family: "proxima-nova", sans-serif;
}
@media (max-width: 860px) {
  .type-scale-body {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 860px) {
  .type-scale-body {
    font-family: "proxima-nova", sans-serif;
  }
}

small {
  font-size: 0.9em;
  line-height: 1.5;
}

.small {
  font-size: 0.9em;
  line-height: 1.5;
}

.type-scale-small {
  font-size: 0.9em;
  line-height: 1.5;
}

disclaimer {
  font-size: 0.8em;
  line-height: 1.5;
}

.disclaimer {
  font-size: 0.8em;
  line-height: 1.5;
}

.type-scale-disclaimer {
  font-size: 0.8em;
  line-height: 1.5;
}

.type-scale-0 {
  font-size: 0.8em;
  line-height: 1.5;
}

.type-scale-1 {
  font-size: 0.9em;
  line-height: 1.5;
}

.type-scale-2 {
  font-size: 18px;
  line-height: 1.6;
}

.type-scale-3 {
  font-size: 1.2em;
  line-height: 1.5;
}

.type-scale-4 {
  font-size: 1.4em;
  line-height: 1.4;
}

.type-scale-5 {
  font-size: 2em;
  line-height: 1.3;
}

.type-scale-6 {
  font-size: 2.5em;
  line-height: 1.2;
}

.type-scale-7 {
  font-size: 4em;
  line-height: 1.2;
}

.type-scale-8 {
  font-size: 3.5em;
  line-height: 1.1;
}

.type-scale-9 {
  font-size: 4em;
  line-height: 1.05;
}

@font-face {
  font-family: "Muli";
  src: url("/assets/fonts/muli/subset-Muli-Regular.woff2") format("woff2"), url("/assets/fonts/muli/subset-Muli-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Muli";
  src: url("/assets/fonts/muli/subset-Muli-Bold.woff2") format("woff2"), url("/assets/fonts/subset-Muli-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Muli";
  src: url("/assets/fonts/muli/subset-Muli-Italic.woff2") format("woff2"), url("/assets/fonts/muli/subset-Muli-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Mont";
  src: url("/assets/fonts/mont/subset-Mont-Bold.woff2") format("woff2"), url("/assets/fonts/mont/subset-Mont-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mont";
  src: url("/assets/fonts/mont/subset-Mont-Heavy.woff2") format("woff2"), url("/assets/fonts/mont/subset-Mont-Heavy.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mont";
  src: url("/assets/fonts/mont/subset-Mont-BoldItalic.woff2") format("woff2"), url("/assets/fonts/mont/subset-Mont-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/assets/fonts/fontawesome/fa-duotone-900.woff2") format("woff2"), url("/assets/fonts/fontawesome/fa-solid-900.woff") format("woff"), url("/assets/fonts/fontawesome/fa-solid-900.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 6 Duotone";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/assets/fonts/fontawesome/fa-duotone-900.woff2") format("woff2"), url("/assets/fonts/fontawesome/webfonts/fa-duotone-900.woff") format("woff"), url("/assets/fonts/fontawesome/fa-duotone-900.ttf") format("truetype");
}
.fa {
  font-family: "Font Awesome 6 Pro";
  font-family: var(--fa-style-family, "Font Awesome 6 Pro");
  font-weight: 900;
  font-weight: var(--fa-style, 900);
}

.fad,
.fa-duotone {
  position: relative;
  font-family: "Font Awesome 6 Duotone";
  font-weight: 900;
}

.fa,
.fas,
.fa-solid,
.far,
.fa-regular,
.fal,
.fa-light,
.fat,
.fa-thin,
.fad,
.fa-duotone,
.fab,
.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fas,
.fa-solid {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}

.fa-pull-left {
  float: left;
  margin-right: 0.3em;
  margin-right: var(--fa-pull-margin, 0.3em);
}

.fa-pull-right {
  float: right;
  margin-left: 0.3em;
  margin-left: var(--fa-pull-margin, 0.3em);
}

.fad,
.fa-duotone {
  position: relative;
  font-family: "Font Awesome 6 Duotone";
  font-weight: 900;
}

.fad:before,
.fa-duotone:before {
  color: inherit;
  color: var(--fa-primary-color, inherit);
  opacity: 1;
  opacity: var(--fa-primary-opacity, 1);
}

.fad:after,
.fa-duotone:after {
  color: inherit;
  color: var(--fa-secondary-color, inherit);
  opacity: 0.4;
  opacity: var(--fa-secondary-opacity, 0);
}

.fa-swap-opacity .fad:before,
.fa-swap-opacity .fa-duotone:before,
.fad.fa-swap-opacity:before,
.fa-duotone.fa-swap-opacity:before {
  opacity: 0.4;
  opacity: var(--fa-secondary-opacity, 0.4);
}

.fa-swap-opacity .fad:after,
.fa-swap-opacity .fa-duotone:after,
.fad.fa-swap-opacity:after,
.fa-duotone.fa-swap-opacity:after {
  opacity: 1;
  opacity: var(--fa-primary-opacity, 1);
}

.fad.fa-inverse,
.fa-duotone.fa-inverse {
  color: #fff;
  color: var(--fa-inverse, #fff);
}

.fad.fa-stack-1x,
.fad.fa-stack-2x,
.fa-duotone.fa-stack-1x,
.fa-duotone.fa-stack-2x {
  position: absolute;
}

.fad.fa-stack-1x:before,
.fa-duotone.fa-stack-1x:before,
.fad.fa-stack-2x:before,
.fa-duotone.fa-stack-2x:before,
.fad.fa-fw:before,
.fa-duotone.fa-fw:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.fad.fa-chevron-right:before,
.fa-duotone.fa-chevron-right:before {
  content: "〉︁";
}

.fad.fa-chevron-right:after,
.fa-duotone.fa-chevron-right:after {
  content: "〉︂";
}

.fad.fa-download:before,
.fa-duotone.fa-download:before {
  content: "\f019︁";
}

.fad.fa-download:after,
.fa-duotone.fa-download:after {
  content: "\f019︂";
}

.fad.fa-calendar-star:before,
.fa-duotone.fa-calendar-star:before {
  content: "\f736︁";
}

.fad.fa-calendar-star:after,
.fa-duotone.fa-calendar-star:after {
  content: "\f736︂";
}

.fad.fa-eye:before, .fa-duotone.fa-eye:before {
  content: "\f06e";
}

.fad.fa-eye:after, .fa-duotone.fa-eye:after {
  content: "\10f06e";
}

.fad.fa-money-bill-wave:before, .fa-duotone.fa-money-bill-wave:before {
  content: "\f53a︁";
}

.fad.fa-money-bill-wave:after, .fa-duotone.fa-money-bill-wave:after {
  content: "\f53a︂";
}

body {
  margin: 0;
}

.red {
  color: red;
}

* {
  box-sizing: border-box;
}

.eyebrow, .text-display__eyebrow {
  opacity: 0.8;
  font-size: 0.9em;
  font-weight: 700;
}

@media (max-width: 860px) {
  .util--desktop-only {
    display: none;
  }
}
@media (min-width: 861px) {
  .util--mobile-only {
    display: none;
  }
}

.stylized--hr {
  border-bottom: 1px solid #ddd;
}

.question-wrapper {
  padding: 0.5em 0;
}

.qa-container {
  display: grid;
  grid-template-columns: 35px 10fr;
}
.qa-container .question-icon,
.qa-container .answer-icon {
  text-align: center;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  font-family: Mont, sans-serif;
  border-radius: 50%;
}

.form-container__section {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-container__section__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  padding: 1em 0 !important;
}
.form-container__section .qa-container {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 0.5em;
}
.form-container__section .qa-container .question-icon,
.form-container__section .qa-container .answer-icon {
  text-align: center;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  border-radius: 50%;
}
.form-container__section .button {
  padding: 1rem 2rem;
  border-radius: 3rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: #fff;
  color: #54a485;
  font-size: 19px;
  transition: background-color 0.3s;
  text-decoration: none;
  transition: all 0.5s;
  text-align: center;
  font-family: "rooney-sans", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.form-container__section .button:hover {
  background: #3e8459;
  color: #fff;
}

.animation__fade-in {
  opacity: 0;
  transform: translateY(40%);
  transition: all 1s ease-out;
}
.animation__fade-in.active {
  opacity: 4;
  transform: translateY(0);
}
.animation__roll-ball {
  transition: all 1s ease;
  animation: spin 1000ms linear infinite, moveLeftToRight 5s linear infinite;
  position: absolute;
  width: 50px;
  bottom: 0;
}
@media (max-width: 860px) {
  .animation__roll-ball {
    width: 35px;
    bottom: -3em;
  }
}

.zoom-in-0_1 {
  animation: zoom_2_to_1 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both, opacity_0_to_0_1 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes moveLeftToRight {
  0% {
    left: -100px;
  }
  100% {
    left: 100%;
  }
}
@keyframes opacity_0_to_0_1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.1;
  }
}
@keyframes zoom_2_to_1 {
  0% {
    transform: scale(2);
    filter: blur(4px);
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
  }
}
@keyframes zoom-in-0_1 {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 0.1;
  }
}
.slide-in-top {
  -webkit-animation: slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-in-fwd-center {
  -webkit-animation: slide-in-fwd-center 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-fwd-center 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@-webkit-keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
    transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
    transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.slide-in-left {
  -webkit-animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.4s;
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.texture--tex-1, .texture-1 .background-display__middleground {
  background-image: url(/assets/img/white-pattern-2.png);
  background-size: cover;
  opacity: 0.1;
}

.texture-1 .background-display__middleground {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

body p {
  margin: 0;
  padding: 0;
}

.text-display {
  max-width: 780px;
  margin: 0 auto;
}
.text-display--contained {
  max-width: 780px;
}
.text-display__header {
  font-family: "rooney-sans", sans-serif;
  font-weight: 700;
  color: #2F0147;
  margin: 0 0 0.25em;
}
@media (min-width: 861px) {
  .text-display__header {
    line-height: 1.1em;
  }
}
@media (max-width: 860px) {
  .text-display__header {
    line-height: 1.2em;
  }
}
.text-display__header-alt--light-purple .text-display__header {
  color: #725578;
}
.text-display__header-alt--pink .text-display__header {
  color: #c656a1;
  color: #953274;
}
.text-display__subheader {
  font-weight: 400;
  font-size: 1.5em;
  line-height: 1.2em;
  margin: 0 0 0.25em;
}
@media (max-width: 860px) {
  .text-display__subheader {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 0.25em;
  }
}
.text-display__subheader--2 {
  font-weight: 400px;
  font-size: 1.5em;
  line-height: 32px;
}
@media (max-width: 860px) {
  .text-display__subheader--2 {
    font-size: 18px;
    line-height: 26px;
  }
}
.text-display__subheader--1 {
  font-weight: 400px;
  font-size: 1.9em;
  line-height: 1.2em;
}
@media (max-width: 860px) {
  .text-display__subheader--1 {
    font-size: 18px;
    line-height: 26px;
  }
}
.text-display__subheader--alt {
  font-size: 1.5em;
  line-height: 1.4em;
  font-weight: bold;
  font-family: "rooney-sans", sans-serif;
}
@media (max-width: 860px) {
  .text-display__subheader--alt {
    font-size: 1.3em;
    line-height: 1.4em;
  }
}
.text-display__subsubheader {
  font-family: proxima-nova, sans-serif;
  font-size: 1.5em;
  line-height: 1.3em;
  font-weight: normal;
  margin: 0 0 0.25em;
}
@media (max-width: 860px) {
  .text-display__subsubheader {
    font-size: 18px;
    line-height: 1.4em;
  }
}
.text-display__body, .text-display__body p {
  font-weight: 400;
  line-height: 1.4em;
}
.text-display__body--emphasis, .text-display__body p--emphasis {
  font-size: 1.3em;
  line-height: 1.35em;
}
@media (max-width: 860px) {
  .text-display__body--emphasis, .text-display__body p--emphasis {
    font-size: 16px;
    line-height: 22px;
  }
}
.text-display__ctas {
  margin-top: 2em;
  display: grid;
  justify-content: start;
  grid-auto-flow: column;
  gap: 1em;
}
@media (max-width: 860px) {
  .text-display__ctas {
    margin-top: 1em;
  }
}
.text-display__ctas--margin--no {
  margin: 0;
}
.text-display__cta {
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.2em;
  text-align: center;
  white-space: nowrap;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.15s linear;
}
@media (min-width: 861px) {
  .text-display__cta {
    font-size: 1.3em;
    font-weight: 700;
    line-height: 1.2em;
    padding: 0.8em 1.7em;
  }
}
@media (max-width: 860px) {
  .text-display__cta {
    font-size: 16px;
    line-height: 20px;
    padding: 1em 1.2em;
  }
}
.text-display__cta--default-yellow {
  color: #000000;
  background: #FEBF01;
}
.text-display__cta--default-yellow:hover {
  background-color: #4a2d50;
  border-color: #4a2d50;
  color: #fff;
}
.text-display__cta--white {
  color: #2F0147;
  background: #fff;
  border: 1px solid transparent;
}
.text-display__cta--white:hover {
  border: 1px solid #2F0147;
}
.text-display__cta--alternate-purple {
  background-color: #fff;
  border: 1px solid #2F0147;
  color: #2F0147;
}
.text-display__cta--alternate-purple:hover {
  border-bottom: 1px solid #2F0147;
  background-color: #EDEAEF;
  background-color: #2F0147;
  color: #fff;
}
/* Added by Chuck for more CTA Button color options - Oct 20 2025 */
.text-display__cta--pink-w-purple-hover {
  background-color: #C656A1;
  color: #FFF;
}
.text-display__cta--teal-w-purple-hover {
  background-color: #41C0BD;
  color: #FFF;
}
.text-display__cta--pink-w-purple-hover:hover,
.text-display__cta--teal-w-purple-hover:hover {
  background-color: #2F0147;
  color: #fff;
}
/* End Chuck Addition */
.text-display--accent {
  color: #953274;
  font-weight: bold;
}
.text-display--accent--link {
  color: #c656a1;
  text-decoration: none;
  border-bottom: 2px solid #c656a1;
}
.text-display--accent--bold {
  font-weight: 700;
}
.text-display--text--center {
  text-align: center;
  max-width: 900px;
}
.text-display--text--center .text-display__ctas {
  justify-content: center;
}
@media (min-width: 861px) {
  .text-display--desktop--text--center {
    text-align: center;
    max-width: 900px;
    margin: 0px auto;
  }
  .text-display--desktop--text--center .text-display__ctas {
    justify-content: center;
  }
}
.text-display--highlight {
  background-color: #FEBF01;
  padding: 0 0.1em;
}
.text-display__disclaimer {
  margin-top: 1em;
  font-size: 0.9em;
  order: 7;
  line-height: 1.4em;
}
.text-display h1 {
  text-transform: capitalize;
}
.text-display--render--larger-header .text-display__header {
  font-size: 3em;
  line-height: 1.1em;
}

.standard-text-anchor, .text-display__body, .text-display__header {
  text-decoration: none;
  color: inherit;
}
.standard-text-anchor[href]:hover, [href].text-display__body:hover, [href].text-display__header:hover {
  text-decoration: underline;
}

.text-display {
  max-width: 900px;
}
.text-display__eyebrow {
  color: #c656a1;
  color: #953274;
}
.text-display__header {
  color: #2f0147;
}
.text-display--full-width {
  max-width: unset;
}
@media (max-width: 860px) {
  .text-display--full-width--mobile {
    max-width: unset;
  }
}
@media (min-width: 861px) {
  .text-display--full-width--desktop {
    max-width: unset;
  }
}
.text-display__body__blockquote {
  padding: 2em;
  border-radius: 8px;
  background: #eee;
  border: 1px solid #ddd;
  font-weight: bold;
  margin: 0px;
  margin-top: 2em;
}
.text-display__disclaimer {
  margin-top: 1em;
  font-size: 0.75em;
  order: 7;
}
.text-display__ctas {
  margin-top: 2em;
  display: grid;
  gap: 1em;
}
@media (min-width: 861px) {
  .text-display__ctas {
    justify-content: start;
    justify-content: start;
    grid-auto-flow: column;
  }
  .text-display--text--center .text-display__ctas, .text-wrapper--text--center .text-display__ctas {
    justify-content: center;
    align-content: center;
  }
}
.text-display__cta__icon {
  text-decoration: none;
}
.text-display__cta--render--flipped .text-display__ctas {
  flex-direction: row-reverse;
}
.text-display__cta--render--flipped .text-display__ctas {
  flex-direction: row-reverse;
}
.text-display__cta--render--button {
  text-transform: uppercase;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  border-radius: 3rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: #fff;
  color: #54a485;
  font-size: 19px;
  transition: background-color 0.3s;
  text-decoration: none;
  transition: all 0.5s;
  text-align: center;
  font-family: "rooney-sans", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.text-display__cta--render--button:hover {
  background: #3e8459;
  color: #fff;
}
.text-display__cta--render--button .text-display__cta__text {
  text-decoration: none;
}
.text-display__cta--render--button-accent {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  border-radius: 3rem;
  font-weight: 700;
  border: none;
  font-family: "rooney-sans", sans-serif;
  cursor: pointer;
  font-size: 19px;
  background-image: linear-gradient(160deg, #FFBB05 20%, #FF6D55 80%);
  color: #4d4d4d;
  transition: background-color 0.3s;
  text-decoration: none;
  transition: all 0.5s;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-transform: uppercase;
}
.text-display__cta--render--button-accent:hover {
  background: #3e8459;
  color: #fff;
}
.text-display__cta--render--button-accent .text-display__cta__text {
  text-decoration: none;
}
.text-display--ordering--disclaimer-after-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5em;
}
.text-display--ordering--disclaimer-after-cta .text-display__body p:last-of-type {
  margin-bottom: 0;
}
.text-display--ordering--disclaimer-after-cta .text-display__disclaimer {
  margin-top: 0;
  order: 7;
}
.text-display--ordering--disclaimer-after-cta .text-display__ctas {
  margin-top: 1em;
  order: 6;
}
.text-display--text--center {
  text-align: center;
  max-width: 900px;
  margin: 0px auto;
}
@media (min-width: 861px) {
  .text-display--desktop--text--center {
    text-align: center;
    max-width: 900px;
    margin: 0px auto;
  }
}
.text-display--color--header-purple {
  color: #2f0147;
}
.text-display--color--light-purple {
  color: #EDEAEF;
}
.text-display--color--pink {
  color: #c656a1;
}
.text-display--color--yellow {
  color: #FEBF01;
}
.text-display--color--near-white {
  color: #EDEDED;
}
.text-display--color--black {
  color: #000000;
}

.image-display img {
  max-width: 100%;
  height: auto;
}
.image-display__caption {
  text-align: center;
}
.image-display--standard {
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
}

.background-display__background {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

.background-display__middleground {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
.background-display__middleground img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.background-display__foreground {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
.background-display__foreground img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

.grid-display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  gap: 4em;
}
@media (max-width: 860px) {
  .grid-display {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
}
.grid-display--text-left .grid-display__item {
  text-align: left;
}
.grid-display__item--bgcolor--light-purple {
  background-color: #EDEAEF;
  padding: 1.5em;
  border-radius: 1em;
}
.grid-display__item--bgcolor--white {
  padding: 1.5em;
  background-color: white;
  border-radius: 1em;
}
.grid-display__item--bgcolor--header-purple {
  padding: 1.5em;
  background-color: #2f0147;
  border-radius: 1em;
}
.grid-display__item--bgcolor--header-purple .text-display__header,
.grid-display__item--bgcolor--header-purple .text-display__subheader,
.grid-display__item--bgcolor--header-purple .text-display__subsubheader,
.grid-display__item--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.grid-display__item--render--visual--large .grid-display__item__visual {
  max-width: 100%;
}
.grid-display__item--render--center--image {
  text-align: center;
}
.grid-display__item__visual {
  max-width: 35%;
  margin: 0px auto 1em;
}
.grid-display__item--text-left {
  text-align: left;
}
.grid-display .grid-display__item .text-display__ctas {
  margin-top: 1em;
}
.grid-display--availability {
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 860px) {
  .grid-display--availability {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 861px) {
  .grid-display--availability .disclaimer {
    padding-bottom: 3em;
  }
}
.grid-display--availability .image-display {
  overflow: hidden;
}
.grid-display--availability .image-display img {
  position: relative;
  bottom: -10px;
}
.grid-display--colcount--1 {
  grid-template-columns: 1fr;
}
.grid-display--colcount--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 860px) {
  .grid-display--colcount--2 {
    grid-template-columns: 1fr;
  }
}
.grid-display--colcount--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 860px) {
  .grid-display--colcount--3 {
    grid-template-columns: 1fr;
  }
}
.grid-display--colcount--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
}
@media (max-width: 860px) {
  .grid-display--colcount--4 {
    grid-template-columns: 1fr;
  }
}
.grid-display--colcount--4--special {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1em;
}
@media (max-width: 860px) {
  .grid-display--colcount--4--special {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .grid-display--colcount--4--special + .grid-wrapper__content__text-post {
    padding: 1.5em 2em;
  }
}
.grid-display--colcount--4--special .grid-display__item:nth-of-type(1) {
  display: flex;
  align-items: center;
}
@media (max-width: 860px) {
  .grid-display--colcount--4--special .grid-display__item:nth-of-type(1) {
    background: radial-gradient(100% 100% at 50% 50%, #c656a1 50%, rgba(0, 0, 0, 0) 51%) 55% 0%/10em 10em;
    background-repeat: no-repeat;
  }
}
@media (max-width: 860px) {
  .grid-display--colcount--4--special .grid-display__item:nth-of-type(1) .grid-display__item__text {
    display: none;
  }
}
.grid-display--colcount--4--special .grid-display__item:nth-of-type(1) .grid-display__item__visual {
  margin: 0;
  max-width: 100%;
  min-width: 80%;
}
@media (max-width: 860px) {
  .grid-display--colcount--4--special .grid-display__item:nth-of-type(1) .grid-display__item__visual {
    margin: 0 auto;
  }
}
.grid-display--colcount--4--special .grid-display__item:nth-of-type(1) .grid-display__item__visual__value {
  height: 100%;
}
.grid-display--colcount--4--special .grid-display__item:nth-of-type(1) .image-display {
  height: 100%;
  display: flex;
}
.grid-display--colcount--4--special .grid-display__item:nth-of-type(1) .image-display img {
  width: 100%;
}
@media (max-width: 860px) {
  .grid-display--colcount--4--special .grid-display__item:nth-of-type(1) .image-display img {
    max-width: 300px;
    margin: auto;
  }
}
@media (max-width: 860px) {
  .grid-display--colcount--4--special .grid-display__item:not(:nth-of-type(1)) {
    position: relative;
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    padding-left: 3em;
    text-align: left;
  }
}
@media (max-width: 860px) {
  .grid-display--colcount--4--special .grid-display__item:not(:nth-of-type(1)) .grid-display__item__visual {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    max-width: 60px;
    left: 0;
  }
}
.grid-display--furkin-time {
  grid-template-columns: 2fr 1fr;
}
.grid-display--icon-large i {
  font-size: 2em;
}
.grid-display--rowcount--5 {
  grid-template-rows: repeat(5, 1fr);
}
@media (max-width: 860px) {
  .grid-display--rowcount--5 {
    display: block;
    grid-template-rows: unset;
  }
}
@media (max-width: 860px) {
  .grid-display--render--checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, 1fr);
    grid-auto-flow: unset;
    grid-auto-columns: unset;
  }
  .grid-display--render--checklist .grid-display__item {
    padding: 0;
  }
  .grid-display--render--checklist .text-display__body {
    align-items: flex-start;
  }
}
.grid-display--render--checklist .text-display__body {
  display: flex;
  align-items: center;
}
.grid-display--render--checklist i {
  padding-right: 0.3em;
  font-size: 1.9em;
  color: #C656A1;
  margin-right: 0.2em;
}
@media (max-width: 860px) {
  .grid-display--render--checklist i {
    font-size: 1.4em;
  }
}
.grid-display__item__text.text-display--render--larger--header .text-display .text-display__header {
  margin: 0 0 0.15em;
  line-height: 1.1em;
}
@media (min-width: 861px) {
  .grid-display__item__text.text-display--render--larger--header .text-display .text-display__header {
    font-size: 3em;
    line-height: 1.2em;
  }
}
.grid-display__item .text-display__header {
  font-weight: 700;
}
@media (min-width: 861px) {
  .grid-display__item .text-display__header {
    font-size: 1.9em;
    line-height: 1.2em;
    margin: 0 0 0.75em;
  }
}
@media (max-width: 860px) {
  .grid-display__item .text-display__header {
    font-size: 22px;
    line-height: 28px;
    margin: 0 0 0.5em;
  }
}

.form-display {
  padding: 1.5em;
}

video {
  max-width: 100%;
}

.form-wrapper {
  background-color: #fff;
}
.form-wrapper form label {
  color: #000;
}
.form-wrapper input[type=text],
.form-wrapper input[type=email],
.form-wrapper input[type=password],
.form-wrapper input[type=tel],
.form-wrapper input[type=number],
.form-wrapper input[type=file],
.form-wrapper textarea {
  border: 1px solid #AA9AAD;
  border-radius: 0.5em;
}
.form-wrapper .inputs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.form-wrapper .disclaimer {
  margin-top: 1em;
}
.form-wrapper input[type=submit] {
  font-weight: 700;
  line-height: 1.2em;
  text-align: center;
  font-size: 1em;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
  border: none;
  color: #000000;
  background: #FEBF01;
}
@media (min-width: 861px) {
  .form-wrapper input[type=submit] {
    font-size: 1em;
    font-weight: 700;
    line-height: 1.2em;
    padding: 0.8em 1.7em;
  }
}
@media (max-width: 860px) {
  .form-wrapper input[type=submit] {
    font-size: 16px;
    line-height: 20px;
    padding: 1em 1.2em;
  }
}
.form-wrapper input[type=submit]:hover {
  background-color: #4a2d50;
  border-color: #4a2d50;
  color: #fff;
}
.form-wrapper .hs-error-msg {
  font-size: 0.9em;
}
.form-wrapper__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}
.form-wrapper__action__reset, .form-wrapper__action__submit {
  padding: 1rem 2rem;
  border-radius: 3rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: #fff;
  color: #54a485;
  font-size: 19px;
  transition: background-color 0.3s;
  text-decoration: none;
  transition: all 0.5s;
  text-align: center;
  font-family: "rooney-sans", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: inherit;
}
.form-wrapper__action__reset:hover, .form-wrapper__action__submit:hover {
  background: #3e8459;
  color: #fff;
}
.form-wrapper__action--submit {
  justify-self: end;
}
.form-wrapper__field {
  margin: 1em 0;
}
.form-wrapper__field__data {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
}
.form-wrapper__field__data__label {
  padding: 0 0.5em;
  font-size: 0.8em;
  display: none;
}
.form-wrapper__field__data__icon {
  position: absolute;
  top: 0.75em;
  left: 0.5em;
  z-index: 5;
}
.form-wrapper__field__data__control, .form-wrapper__field__data__select, .form-wrapper__field__data__textarea {
  border-radius: 8px;
  border: 0;
  position: relative;
  border-bottom: 1px solid #ddd;
  font: inherit;
  padding: 0.5em 0.5em 0.5em 2.5em;
  font-weight: 700;
  font-family: Muli;
  line-height: 1.5;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.form-wrapper__field__data__control:required:placeholder-shown, .form-wrapper__field__data__control:placeholder-shown, .form-wrapper__field__data__select:required:placeholder-shown, .form-wrapper__field__data__select:placeholder-shown, .form-wrapper__field__data__textarea:required:placeholder-shown, .form-wrapper__field__data__textarea:placeholder-shown {
  background-color: inherit;
  color: inherit;
  font-weight: 400;
  font-family: Muli;
}
.form-wrapper__field__data__control:required:placeholder-shown, .form-wrapper__field__data__select:required:placeholder-shown, .form-wrapper__field__data__textarea:required:placeholder-shown {
  border-color: #aaa;
}
.form-wrapper__field__data__select:invalid {
  font-weight: 400;
  font-family: Muli;
  color: rgba(0, 0, 0, 0.6);
}
.form-wrapper__field__data__control:invalid {
  background: rgba(255, 0, 0, 0.2);
  border-color: #912;
}
.form-wrapper__field__data__textarea {
  border-radius: 8px;
  border: 1px solid #eee;
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
  }
}
.nav * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.nav__top-bar {
  color: #000;
  font-size: 0.7em;
  padding: 0.5em;
  background-color: #EDEAEF;
}
.nav__top-bar a {
  color: #000;
  text-decoration: none;
}
.nav__top-bar .separator {
  width: 2.5em;
  height: 1.6em;
}
.nav__top-bar .separator .line {
  margin: auto;
  width: 0.05em;
  border-left: 1px solid #fff;
  height: 100%;
}
.nav__top-bar__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav__top-bar__item i {
  padding-right: 0.5em;
}
.nav__top-bar__item .flag {
  padding-left: 0.5em;
  max-height: 12px;
}
.nav__top-bar__wrapper {
  margin: 0 auto;
  max-width: 1500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav__main {
  background-color: #EDEAEF;
  background-color: #2F0147;
}
.nav__wrapper {
  padding: 1em;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 6fr;
}
@media (min-width: 861px) {
  .nav__wrapper {
    gap: 2em;
  }
}
@media (max-width: 860px) {
  .nav__wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.7em;
  }
}
.nav__icon-button {
  top: 50%;
  transform: translateY(-50%);
}
.nav__phone {
  right: 1em;
  position: absolute;
}
.nav__phone a {
  background: #fff;
  color: #000;
  color: #2f0147;
  width: 35px;
  height: 35px;
  display: block;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5em;
}
.nav__phone a i {
  font-size: 1.4em;
}
.nav__hamburger {
  position: absolute;
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
}
@media (min-width: 861px) {
  .nav__hamburger {
    display: none;
  }
}
.nav__hamburger .toggle-btn {
  font-size: 1.7em;
  border: 0;
  color: #fff;
  background-color: transparent;
}
.nav__main {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4em;
}
.nav__main a {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4em;
  text-decoration: none;
}
.nav__main .nav__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 860px) {
  .nav__main .nav__logo svg {
    max-height: 50px;
    width: auto;
  }
}
.nav__links {
  padding: 1.5em;
  display: flex;
  align-items: center;
  gap: 2.5em;
}
.nav__links button:focus-visible, .nav__links a:focus-visible {
  border: 1px solid blue;
}
.nav__links li {
  list-style-type: none;
}
@media (max-width: 860px) {
  .nav__links {
    padding: 2em 1em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }
}
@media (max-width: 860px) {
  .nav__links li {
    width: 100%;
  }
}
.nav__content {
  transition: 0.4s;
  display: grid;
  grid-template-columns: 4fr 1fr;
  position: relative;
}
@media (max-width: 860px) {
  .nav__content {
    overflow: hidden;
    background-color: #fff;
    position: absolute;
    top: 100%;
    width: 90%;
    left: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    max-height: 0;
  }
}
@media (max-width: 860px) {
  .nav__content.active {
    max-height: 1000px;
  }
}
.nav__content--underlay {
  max-height: 0;
  transition: 0.4s;
  position: absolute;
}
.nav__content--underlay.active {
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  top: 100%;
}
.nav__close {
  top: 1em;
  right: 1em;
  border: 0;
  position: absolute;
  background: transparent;
}
@media (min-width: 861px) {
  .nav__close {
    display: none;
  }
}
.nav__cta-wrapper {
  display: flex;
  align-items: center;
}
@media (min-width: 861px) {
  .nav__cta-wrapper {
    justify-content: flex-end;
  }
}
@media (max-width: 860px) {
  .nav__cta-wrapper {
    background-color: #EDEAEF;
    padding: 1.5em 1em;
  }
}
.nav__link {
  display: block;
  font-family: proxima-nova, sans-serif;
  border: 0;
  padding: 0;
  outline: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4em;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  transition: 0.4s;
  text-decoration: none;
}
.nav__link:hover {
  color: #C656A1;
}
@media (max-width: 860px) {
  .nav__link {
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    padding: 0.5em 0;
    width: 100%;
    text-align: left;
  }
}
.nav__link i {
  transition: 0.4s;
}
.nav__link[aria-expanded=true] i {
  color: #C656A1;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(180deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.nav__link[aria-expanded=true] + .subnav {
  opacity: 1;
  max-height: 500px;
  visibility: visible;
}
@media (max-width: 860px) {
  .nav__link[aria-expanded=true] + .subnav {
    padding: 1em;
  }
}
.nav__cta--btn {
  text-decoration: none;
  background-color: #FEBF01;
  padding: 0.5em 1.5em;
  border-radius: 2em;
  color: #2F0147;
  transition: all 0.15s linear;
}
.nav__cta--btn:hover {
  background-color: #EDEAEF;
}
.nav .subnav {
  transition: 0.4s;
  overflow: hidden;
  z-index: 99;
  background-color: #fff;
  top: 100%;
  display: grid;
  grid-auto-columns: 200px;
  grid-auto-flow: column;
  border-bottom-left-radius: 1.5em;
  border-bottom-right-radius: 1.5em;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  left: 0;
}
@media (min-width: 861px) {
  .nav .subnav {
    position: absolute;
    padding: 2em;
    top: 123%;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
  }
}
@media (max-width: 860px) {
  .nav .subnav {
    display: flex;
    flex-direction: column;
    gap: 1em;
    overflow: hidden;
  }
}
@media screen and (min-width: 861px) and (max-width: 1070px) {
  .nav .subnav {
    grid-auto-columns: 150px;
    padding: 1em;
    top: 116%;
  }
}
.nav .subnav img {
  max-height: 71px;
}
@media (max-width: 860px) {
  .nav .subnav__wrapper {
    display: grid;
    grid-template-columns: 70px 3fr;
    gap: 1em;
    align-items: center;
  }
}
.nav .subnav li {
  list-style-type: none;
  position: relative;
}
@media (min-width: 861px) {
  .nav .subnav li {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    padding-left: 1.5em;
    padding: 0 1em;
  }
  .nav .subnav li:last-of-type {
    border-right: none;
  }
}
.nav .subnav li a {
  color: #000;
}
@media (min-width: 861px) {
  .nav .subnav li a {
    display: inline-block;
    height: 100%;
  }
}
.nav .subnav__text-display {
  max-width: 200px;
}
.nav .subnav__title {
  padding-bottom: 0.5em;
}
.nav .subnav__body {
  font-size: 12px;
  line-height: 16px;
  font-weight: normal;
}
@media (max-width: 860px) {
  .nav .hide--mobile {
    display: none;
  }
}
@media (min-width: 861px) {
  .nav .hide--desktop {
    display: none;
  }
}

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header--no-navigation {
  padding: 2em;
}
@media (max-width: 860px) {
  .header--no-navigation {
    padding: 1em;
  }
}
.header--no-navigation__logo {
  max-width: 200px;
}
.header--no-navigation__logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-furkin--bgcolor--header-purple {
  background-color: #edeaef;
}
.footer-furkin--bgcolor--header-purple .footer-furkin__top__content__col__links .footer-furkin__link-col a, .footer-furkin--bgcolor--header-purple .footer-furkin__top__content__col__links .footer-furkin__link-col .link--header {
  color: #000;
}
.footer-furkin--bgcolor--header-purple .footer-furkin__bottom {
  background-color: #2f0147;
  color: #fff;
}
@media (max-width: 860px) {
  .footer-furkin {
    padding-top: 2em;
  }
}
@media (max-width: 860px) {
  .footer-furkin__top {
    max-width: 95%;
    margin: 0 auto;
  }
}
@media (min-width: 861px) {
  .footer-furkin__top__inner {
    margin: 0 auto;
    max-width: 1500px;
  }
}
@media (min-width: 861px) and (max-width: 1280px) {
  .footer-furkin__top__inner {
    width: 1024px;
  }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .footer-furkin__top__inner {
    width: 100%;
  }
}
@media (min-width: 861px) {
  .footer-furkin__top__content {
    padding: 5em 3em;
  }
}
@media (min-width: 861px) and (max-width: 860px) {
  .footer-furkin__top__content {
    padding: 2em 1.5em;
  }
}
@media (min-width: 861px) {
  .footer-furkin__top--padding--min .footer-furkin__top__content {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .footer-furkin__top--padding--min-top .footer-furkin__top__content {
    padding-top: 1em;
  }
  .footer-furkin__top--padding--min-bottom .footer-furkin__top__content {
    padding-bottom: 1em;
  }
  .footer-furkin__top--padding--med .footer-furkin__top__content {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .footer-furkin__top--padding--med-top .footer-furkin__top__content {
    padding-top: 2em;
  }
  .footer-furkin__top--padding--med-bottom .footer-furkin__top__content {
    padding-bottom: 2em;
  }
  .footer-furkin__top--padding--no .footer-furkin__top__content {
    padding-top: 0;
    padding-bottom: 0;
  }
  .footer-furkin__top--padding--no-top .footer-furkin__top__content {
    padding-top: 0;
  }
  .footer-furkin__top--padding--no-bottom .footer-furkin__top__content {
    padding-bottom: 0;
  }
}
@media (min-width: 861px) {
  .footer-furkin__top--margin--min .footer-furkin__top__content {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .footer-furkin__top--margin--min-top .footer-furkin__top__content {
    padding-top: 1em;
  }
  .footer-furkin__top--margin--min-bottom .footer-furkin__top__content {
    padding-bottom: 1em;
  }
  .footer-furkin__top--margin--med .footer-furkin__top__content {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .footer-furkin__top--margin--med-top .footer-furkin__top__content {
    padding-top: 2em;
  }
  .footer-furkin__top--margin--med-bottom .footer-furkin__top__content {
    padding-bottom: 2em;
  }
  .footer-furkin__top--margin--no .footer-furkin__top__content {
    padding-top: 0;
    padding-bottom: 0;
  }
  .footer-furkin__top--margin--no-top .footer-furkin__top__content {
    padding-top: 0;
  }
  .footer-furkin__top--margin--no-bottom .footer-furkin__top__content {
    padding-bottom: 0;
  }
}
@media (min-width: 861px) {
  .footer-furkin__top--inner-bgcolor--darker-white .footer-furkin__top__inner {
    background-color: #E7E7E7;
  }
  .footer-furkin__top--inner-bgcolor--light-purple .footer-furkin__top__inner {
    background-color: #EDEAEF;
  }
  .footer-furkin__top--inner-bgcolor--light-purple .footer-furkin__top__inner .text-display__body {
    color: #000;
  }
  .footer-furkin__top--inner-bgcolor--near-white .footer-furkin__top__inner {
    background-color: #EDEDED;
  }
  .footer-furkin__top--inner-bgcolor--white .footer-furkin__top__inner {
    background-color: #fff;
  }
  .footer-furkin__top--inner-bgcolor--header-purple .footer-furkin__top__inner {
    color: #fff;
    background: #2f0147;
  }
  .footer-furkin__top--inner-bgcolor--header-purple .footer-furkin__top__inner .text-display__header {
    color: #fff;
  }
  .footer-furkin__top--inner-bgcolor--header-purple .footer-furkin__top__inner .text-display__subheader {
    color: #fff;
  }
  .footer-furkin__top--inner-bgcolor--header-purple .footer-furkin__top__inner .text-display__subsubheader {
    color: #fff;
  }
  .footer-furkin__top--inner-bgcolor--header-purple .footer-furkin__top__inner .text-display__body {
    color: #fff;
  }
}
@media (min-width: 861px) {
  .footer-furkin__top--bgcolor--darker-white {
    background-color: #E7E7E7;
  }
  .footer-furkin__top--bgcolor--light-purple {
    background-color: #EDEAEF;
  }
  .footer-furkin__top--bgcolor--near-white {
    background-color: #EDEDED;
  }
  .footer-furkin__top--bgcolor--header-purple {
    background: #2f0147;
    color: #fff;
  }
  .footer-furkin__top--bgcolor--header-purple .text-display__header {
    color: #fff;
  }
  .footer-furkin__top--bgcolor--header-purple .text-display__subheader {
    color: #fff;
  }
  .footer-furkin__top--bgcolor--header-purple .text-display__subsubheader {
    color: #fff;
  }
  .footer-furkin__top--bgcolor--header-purple .text-display__body {
    color: #fff;
  }
  .footer-furkin__top--bgcolor--split--near-white {
    background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
  }
  .footer-furkin__top--bgcolor--split--light-purple {
    background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
  }
}
.footer-furkin__top__content {
  display: grid;
  grid-template-columns: min-content 4fr;
  gap: 10em;
}
@media (max-width: 860px) {
  .footer-furkin__top__content {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 3em;
    padding-bottom: 2em;
  }
}
.footer-furkin__top__content__col--logo-social {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
  text-align: center;
}
@media (max-width: 860px) {
  .footer-furkin__top__content__col--logo-social {
    justify-items: center;
  }
}
.footer-furkin__top__content__col--logo-social .social {
  display: flex;
  gap: 0.5em;
  align-items: center;
}
.footer-furkin__top__content__col__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 861px) {
  .footer-furkin__top__content__col__links {
    gap: 1em;
  }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .footer-furkin__top__content__col__links {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 860px) {
  .footer-furkin__top__content__col__links {
    justify-items: center;
    grid-template-columns: repeat(2, 1fr);
    max-width: 90%;
    margin: 0 auto;
    row-gap: 2em;
    column-gap: 4em;
  }
}
@media only screen and (min-width: 650px) and (max-width: 834px) {
  .footer-furkin__top__content__col__links {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-furkin__top__content__col__links .footer-furkin__link-col--special a.link--header {
  padding-bottom: 0;
  margin-bottom: 0;
  width: fit-content;
  border-bottom: 1px solid #c656a1;
}
.footer-furkin__top__content__col__links .link--header {
  font-weight: bold;
  margin-bottom: 1em;
  font-size: 1.1em;
}
@media (max-width: 860px) {
  .footer-furkin__top__content__col__links .footer-furkin__link-col {
    width: 100%;
  }
}
@media (max-width: 860px) {
  .footer-furkin__top__content__col__links .footer-furkin__link-col:nth-of-type(4) {
    order: 4;
  }
}
@media (max-width: 860px) {
  .footer-furkin__top__content__col__links .footer-furkin__link-col:nth-of-type(2) {
    order: 3;
  }
}
.footer-furkin__top__content__col__links .footer-furkin__link-col a {
  display: block;
  padding-bottom: 0.3em;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}
@media (max-width: 860px) {
  .footer-furkin__top__content__col__links .footer-furkin__link-col a {
    padding: 0.5em 0;
  }
}
.footer-furkin__top__content__col__links .footer-furkin__link-col a:hover {
  color: #c656a1;
}
.footer-furkin__bottom {
  padding: 2em;
  background-color: #EDEDED;
}
@media (min-width: 861px) {
  .footer-furkin__bottom__inner {
    margin: 0 auto;
    max-width: 1500px;
  }
}
@media (min-width: 861px) and (max-width: 1280px) {
  .footer-furkin__bottom__inner {
    width: 1024px;
  }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .footer-furkin__bottom__inner {
    width: 100%;
  }
}
@media (min-width: 861px) {
  .footer-furkin__bottom__content {
    padding: 5em 3em;
  }
}
@media (min-width: 861px) and (max-width: 860px) {
  .footer-furkin__bottom__content {
    padding: 2em 1.5em;
  }
}
@media (min-width: 861px) {
  .footer-furkin__bottom--padding--min .footer-furkin__bottom__content {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .footer-furkin__bottom--padding--min-top .footer-furkin__bottom__content {
    padding-top: 1em;
  }
  .footer-furkin__bottom--padding--min-bottom .footer-furkin__bottom__content {
    padding-bottom: 1em;
  }
  .footer-furkin__bottom--padding--med .footer-furkin__bottom__content {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .footer-furkin__bottom--padding--med-top .footer-furkin__bottom__content {
    padding-top: 2em;
  }
  .footer-furkin__bottom--padding--med-bottom .footer-furkin__bottom__content {
    padding-bottom: 2em;
  }
  .footer-furkin__bottom--padding--no .footer-furkin__bottom__content {
    padding-top: 0;
    padding-bottom: 0;
  }
  .footer-furkin__bottom--padding--no-top .footer-furkin__bottom__content {
    padding-top: 0;
  }
  .footer-furkin__bottom--padding--no-bottom .footer-furkin__bottom__content {
    padding-bottom: 0;
  }
}
@media (min-width: 861px) {
  .footer-furkin__bottom--margin--min .footer-furkin__bottom__content {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .footer-furkin__bottom--margin--min-top .footer-furkin__bottom__content {
    padding-top: 1em;
  }
  .footer-furkin__bottom--margin--min-bottom .footer-furkin__bottom__content {
    padding-bottom: 1em;
  }
  .footer-furkin__bottom--margin--med .footer-furkin__bottom__content {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .footer-furkin__bottom--margin--med-top .footer-furkin__bottom__content {
    padding-top: 2em;
  }
  .footer-furkin__bottom--margin--med-bottom .footer-furkin__bottom__content {
    padding-bottom: 2em;
  }
  .footer-furkin__bottom--margin--no .footer-furkin__bottom__content {
    padding-top: 0;
    padding-bottom: 0;
  }
  .footer-furkin__bottom--margin--no-top .footer-furkin__bottom__content {
    padding-top: 0;
  }
  .footer-furkin__bottom--margin--no-bottom .footer-furkin__bottom__content {
    padding-bottom: 0;
  }
}
@media (min-width: 861px) {
  .footer-furkin__bottom--inner-bgcolor--darker-white .footer-furkin__bottom__inner {
    background-color: #E7E7E7;
  }
  .footer-furkin__bottom--inner-bgcolor--light-purple .footer-furkin__bottom__inner {
    background-color: #EDEAEF;
  }
  .footer-furkin__bottom--inner-bgcolor--light-purple .footer-furkin__bottom__inner .text-display__body {
    color: #000;
  }
  .footer-furkin__bottom--inner-bgcolor--near-white .footer-furkin__bottom__inner {
    background-color: #EDEDED;
  }
  .footer-furkin__bottom--inner-bgcolor--white .footer-furkin__bottom__inner {
    background-color: #fff;
  }
  .footer-furkin__bottom--inner-bgcolor--header-purple .footer-furkin__bottom__inner {
    color: #fff;
    background: #2f0147;
  }
  .footer-furkin__bottom--inner-bgcolor--header-purple .footer-furkin__bottom__inner .text-display__header {
    color: #fff;
  }
  .footer-furkin__bottom--inner-bgcolor--header-purple .footer-furkin__bottom__inner .text-display__subheader {
    color: #fff;
  }
  .footer-furkin__bottom--inner-bgcolor--header-purple .footer-furkin__bottom__inner .text-display__subsubheader {
    color: #fff;
  }
  .footer-furkin__bottom--inner-bgcolor--header-purple .footer-furkin__bottom__inner .text-display__body {
    color: #fff;
  }
}
@media (min-width: 861px) {
  .footer-furkin__bottom--bgcolor--darker-white {
    background-color: #E7E7E7;
  }
  .footer-furkin__bottom--bgcolor--light-purple {
    background-color: #EDEAEF;
  }
  .footer-furkin__bottom--bgcolor--near-white {
    background-color: #EDEDED;
  }
  .footer-furkin__bottom--bgcolor--header-purple {
    background: #2f0147;
    color: #fff;
  }
  .footer-furkin__bottom--bgcolor--header-purple .text-display__header {
    color: #fff;
  }
  .footer-furkin__bottom--bgcolor--header-purple .text-display__subheader {
    color: #fff;
  }
  .footer-furkin__bottom--bgcolor--header-purple .text-display__subsubheader {
    color: #fff;
  }
  .footer-furkin__bottom--bgcolor--header-purple .text-display__body {
    color: #fff;
  }
  .footer-furkin__bottom--bgcolor--split--near-white {
    background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
  }
  .footer-furkin__bottom--bgcolor--split--light-purple {
    background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
  }
}
.footer-furkin__bottom .footer-furkin__bottom__content {
  padding: 0;
}
@media (max-width: 860px) {
  .footer-furkin__bottom .footer-furkin__bottom__content {
    max-width: 95%;
    margin: 0 auto;
    padding: 2em 0;
  }
}
.footer-furkin__bottom .disclaimer {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.social-sharing--vertical {
  display: flex;
  flex-direction: column;
}
@media (max-width: 860px) {
  .social-sharing--vertical {
    flex-direction: row;
  }
}

.jumbotron {
  position: relative;
}
.jumbotron__inner {
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1280px) {
  .jumbotron__inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .jumbotron__inner {
    width: 100%;
  }
}
.jumbotron__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .jumbotron__content {
    padding: 2em 1.5em;
  }
}
.jumbotron--padding--min .jumbotron__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.jumbotron--padding--min-top .jumbotron__content {
  padding-top: 1em;
}
.jumbotron--padding--min-bottom .jumbotron__content {
  padding-bottom: 1em;
}
.jumbotron--padding--med .jumbotron__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.jumbotron--padding--med-top .jumbotron__content {
  padding-top: 2em;
}
.jumbotron--padding--med-bottom .jumbotron__content {
  padding-bottom: 2em;
}
.jumbotron--padding--no .jumbotron__content {
  padding-top: 0;
  padding-bottom: 0;
}
.jumbotron--padding--no-top .jumbotron__content {
  padding-top: 0;
}
.jumbotron--padding--no-bottom .jumbotron__content {
  padding-bottom: 0;
}
.jumbotron--margin--min .jumbotron__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.jumbotron--margin--min-top .jumbotron__content {
  padding-top: 1em;
}
.jumbotron--margin--min-bottom .jumbotron__content {
  padding-bottom: 1em;
}
.jumbotron--margin--med .jumbotron__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.jumbotron--margin--med-top .jumbotron__content {
  padding-top: 2em;
}
.jumbotron--margin--med-bottom .jumbotron__content {
  padding-bottom: 2em;
}
.jumbotron--margin--no .jumbotron__content {
  padding-top: 0;
  padding-bottom: 0;
}
.jumbotron--margin--no-top .jumbotron__content {
  padding-top: 0;
}
.jumbotron--margin--no-bottom .jumbotron__content {
  padding-bottom: 0;
}
.jumbotron--inner-bgcolor--darker-white .jumbotron__inner {
  background-color: #E7E7E7;
}
.jumbotron--inner-bgcolor--light-purple .jumbotron__inner {
  background-color: #EDEAEF;
}
.jumbotron--inner-bgcolor--light-purple .jumbotron__inner .text-display__body {
  color: #000;
}
.jumbotron--inner-bgcolor--near-white .jumbotron__inner {
  background-color: #EDEDED;
}
.jumbotron--inner-bgcolor--white .jumbotron__inner {
  background-color: #fff;
}
.jumbotron--inner-bgcolor--header-purple .jumbotron__inner {
  color: #fff;
  background: #2f0147;
}
.jumbotron--inner-bgcolor--header-purple .jumbotron__inner .text-display__header {
  color: #fff;
}
.jumbotron--inner-bgcolor--header-purple .jumbotron__inner .text-display__subheader {
  color: #fff;
}
.jumbotron--inner-bgcolor--header-purple .jumbotron__inner .text-display__subsubheader {
  color: #fff;
}
.jumbotron--inner-bgcolor--header-purple .jumbotron__inner .text-display__body {
  color: #fff;
}
.jumbotron--bgcolor--darker-white {
  background-color: #E7E7E7;
}
.jumbotron--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.jumbotron--bgcolor--near-white {
  background-color: #EDEDED;
}
.jumbotron--bgcolor--header-purple {
  background: #2f0147;
  color: #fff;
}
.jumbotron--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.jumbotron--bgcolor--header-purple .text-display__subheader {
  color: #fff;
}
.jumbotron--bgcolor--header-purple .text-display__subsubheader {
  color: #fff;
}
.jumbotron--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.jumbotron--bgcolor--split--near-white {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
}
.jumbotron--bgcolor--split--light-purple {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
}
.jumbotron--bg-color--light-purple {
  background-color: #edeaef;
}
@media (max-width: 860px) {
  .jumbotron--plain-text-jumbo .jumbotron__content {
    grid-template-columns: 1fr;
    grid-template-rows: max-content 0em;
    align-items: center;
  }
}
@media (max-width: 860px) {
  .jumbotron--mobile--hide--background-display__image .jumbotron__content__background .background-display__image {
    display: none;
  }
}
@media (max-width: 860px) {
  .jumbotron--mobile--full-width-pattern .jumbotron__content__background {
    position: absolute;
  }
}
@media (max-width: 860px) {
  .jumbotron--height--shorter .jumbotron__content {
    grid-template-columns: 1fr;
    grid-template-rows: max-content 5em;
  }
}
@media (max-width: 860px) {
  .jumbotron--plain-text-jumbo .jumbotron__content {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(200px, auto);
    align-items: center;
  }
}
@media (min-width: 861px) {
  .jumbotron--background--bottom--right .jumbotron__content__background .background-display__image img {
    top: unset;
    bottom: 0;
    min-height: unset;
    height: unset;
    width: 100%;
  }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .jumbotron.jumbotron--background--xl .jumbotron__content__background .background-display__image img {
    height: unset;
    bottom: 0;
    top: unset;
  }
}
@media (min-width: 1025px) {
  .jumbotron.jumbotron--background--xl .jumbotron__content__background .background-display__image img {
    max-width: 50vw;
    left: unset;
    width: auto;
    min-height: 130%;
    right: 0;
  }
}
@media (min-width: 861px) {
  .jumbotron.jumbotron--background--xl .jumbotron__content__background .background-display__image img {
    max-width: 50vw;
  }
}
@media (min-width: 861px) {
  .jumbotron.jumbotron--background--xl.jumbotron--background--bottom--right .jumbotron__content__background .background-display__image img {
    top: unset;
    bottom: 0;
    min-height: unset;
    height: unset;
    width: unset;
    min-height: unset;
    bottom: 0;
    min-width: 40vw;
  }
}
@media (min-width: 861px) {
  .jumbotron---desktop--text--center {
    text-align: center;
  }
}
.jumbotron--text--center {
  text-align: center;
}
.jumbotron__content {
  display: grid;
}
@media (min-width: 861px) {
  .jumbotron__content {
    padding: 5em 3em;
    max-width: 1500px;
    margin: 0 auto;
    min-height: 500px;
  }
}
@media (max-width: 860px) {
  .jumbotron__content {
    grid-template-columns: 1fr;
    grid-template-rows: max-content 22em;
    grid-template-areas: "text" "image";
    padding: 0;
  }
}
@media (min-width: 861px) {
  .jumbotron__content--single-column {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 861px) {
  .jumbotron__content--1-1 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 861px) {
  .jumbotron__content--2-3 {
    grid-template-columns: 2fr 3fr;
  }
}
@media (min-width: 861px) {
  .jumbotron__content--3-4 {
    grid-template-columns: 3fr 4fr;
  }
}
@media (min-width: 861px) {
  .jumbotron__content--3-2 {
    grid-template-columns: 3fr 2fr;
  }
}
@media (min-width: 861px) {
  .jumbotron__content--4-3 {
    grid-template-columns: 4fr 3fr;
  }
}
@media (min-width: 861px) {
  .jumbotron__content--1-1 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 861px) {
  .jumbotron__content--2-3 {
    grid-template-columns: 2fr 3fr;
  }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .jumbotron__content--2-3 {
    grid-template-columns: 2fr 1fr;
  }
}
@media (min-width: 861px) {
  .jumbotron__content--3-4 {
    grid-template-columns: 3fr 4fr;
  }
}
@media (min-width: 861px) {
  .jumbotron__content--3-2 {
    grid-template-columns: 3fr 2fr;
  }
}
@media (min-width: 861px) {
  .jumbotron__content--4-3 {
    grid-template-columns: 4fr 3fr;
  }
}
.jumbotron__content__background {
  top: 0px;
  right: 0px;
  left: 0;
  bottom: 0px;
}
@media (min-width: 861px) {
  .jumbotron__content__background {
    position: absolute;
  }
}
@media (max-width: 860px) {
  .jumbotron__content__background {
    grid-area: image;
    position: relative;
    margin-top: -50px;
  }
}
.jumbotron__content__foreground {
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) {
  .jumbotron__content__foreground {
    grid-area: text;
  }
}
.jumbotron .background-display {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.jumbotron .background-display img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}
@media (max-width: 1280px) {
  .jumbotron .background-display img {
    max-width: 50%;
    object-position: bottom right;
  }
}
@media (max-width: 860px) {
  .jumbotron .background-display img {
    max-width: unset;
  }
}
.jumbotron .background-display__pattern img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}
@media (max-width: 860px) {
  .jumbotron .background-display__pattern img {
    top: auto;
    right: 0;
    width: auto;
    height: 100%;
    left: unset;
  }
}
.jumbotron .background-display__animated img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}
@media (max-width: 860px) {
  .jumbotron .background-display__animated img {
    top: auto;
    right: 0;
    width: auto;
    height: 100%;
    left: unset;
  }
}
.jumbotron .background-display__image--contained img {
  max-height: 500px;
}
@media (max-width: 860px) {
  .jumbotron .background-display__image--contained img {
    max-width: 100%;
    max-width: 45vw;
  }
}
.jumbotron--has--reviews {
  margin-bottom: 2em;
}
@media (max-width: 860px) {
  .jumbotron--has--callout {
    margin-bottom: 9em;
  }
}
@media (min-width: 861px) {
  .jumbotron--has--callout {
    margin-bottom: 6em;
  }
}
.jumbotron #badge-ribbon {
  max-width: fit-content;
  border-top-right-radius: 3em;
  border-bottom-right-radius: 3em;
  position: relative;
}
@media (min-width: 861px) {
  .jumbotron #badge-ribbon {
    z-index: 999;
    padding-left: 2em;
  }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .jumbotron #badge-ribbon {
    position: absolute;
    bottom: 0;
  }
}
@media (max-width: 860px) {
  .jumbotron #badge-ribbon {
    margin: 0 auto;
    border-radius: 3em;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.jumbotron #badge-ribbon.badge-ribbon--bgcolor--white {
  background-color: white;
}
.jumbotron #badge-ribbon.badge-ribbon--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.jumbotron #badge-ribbon.badge-ribbon--bgcolor--header-purple {
  background-color: #2F0147;
}
.jumbotron #badge-ribbon.badge-ribbon--bgcolor--pink {
  background-color: #C656A1;
}
.jumbotron__callout {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  max-width: 780px;
  max-width: 45%;
  min-width: 700px;
  color: #fff;
  background-color: #2f0147;
  border-radius: 3em;
}
@media (max-width: 860px) {
  .jumbotron__callout {
    display: flex;
    flex-direction: column;
    max-width: unset;
    min-width: unset;
    width: 200px;
    height: 200px;
    text-align: center;
    padding: 1em;
    border-radius: 50%;
  }
}
.jumbotron__callout .jumbotron__callout__copy--idx-1 {
  text-align: right;
}
@media (max-width: 860px) {
  .jumbotron__callout .jumbotron__callout__copy--idx-1 {
    text-align: center;
  }
}
@media (min-width: 861px) {
  .jumbotron__callout .jumbotron__callout__copy--idx-1 {
    display: flex;
    flex-direction: column;
  }
  .jumbotron__callout .jumbotron__callout__copy--idx-1 span {
    display: block;
  }
}
@media (min-width: 861px) {
  .jumbotron__callout .jumbotron__callout__copy--idx-2 {
    text-align: center;
  }
}
.jumbotron__callout .text-display__header {
  color: #fff;
}
@media (min-width: 861px) {
  .jumbotron__callout .text-display__header {
    text-align: center;
  }
}
.jumbotron__callout__body {
  font-size: 1.9em;
  line-height: 1em;
}
@media (max-width: 860px) {
  .jumbotron__callout__body {
    font-size: 1.4em;
    line-height: 1.3em;
  }
}
.jumbotron__callout__wrapper {
  justify-content: center;
  align-items: center;
  display: grid;
  padding: 1em 3em;
  grid-template-columns: 1fr 1.5fr 3fr;
  gap: 0.2em;
}
@media (max-width: 860px) {
  .jumbotron__callout__wrapper {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
.jumbotron__callout__wrapper .text-display__header {
  margin: 0;
}
@media (min-width: 861px) {
  .jumbotron .text-display {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 860px) {
  .jumbotron .text-display {
    padding: 2em 3em 2em 2em;
  }
}
@media only screen and (max-width: 480px) {
  .jumbotron .text-display__ctas {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}
.jumbotron .text-display__header {
  font-weight: 700;
}
@media (min-width: 861px) {
  .jumbotron .text-display__header {
    font-size: 4.6em;
    line-height: 1.1em;
  }
}
@media (max-width: 860px) {
  .jumbotron .text-display__header {
    font-size: 38px;
    line-height: 45px;
  }
}
.jumbotron .text-display__subheader {
  font-family: "rooney-sans", sans-serif;
  color: #c656a1;
  font-size: 30px;
  line-height: 36px;
}
@media (max-width: 860px) {
  .jumbotron .text-display__subheader {
    font-size: 30px;
    line-height: 36px;
  }
}
.jumbotron .text-display__subheader--color--black {
  color: #000;
}
.jumbotron .text-display__body {
  font-weight: 400;
  font-size: 1.3em;
  line-height: 1.5em;
}
@media (max-width: 860px) {
  .jumbotron .text-display__body {
    font-size: 16px;
    line-height: 22px;
  }
}

.jumbo {
  position: relative;
}
.jumbo__inner {
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1280px) {
  .jumbo__inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .jumbo__inner {
    width: 100%;
  }
}
.jumbo__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .jumbo__content {
    padding: 2em 1.5em;
  }
}
.jumbo--padding--min .jumbo__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.jumbo--padding--min-top .jumbo__content {
  padding-top: 1em;
}
.jumbo--padding--min-bottom .jumbo__content {
  padding-bottom: 1em;
}
.jumbo--padding--med .jumbo__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.jumbo--padding--med-top .jumbo__content {
  padding-top: 2em;
}
.jumbo--padding--med-bottom .jumbo__content {
  padding-bottom: 2em;
}
.jumbo--padding--no .jumbo__content {
  padding-top: 0;
  padding-bottom: 0;
}
.jumbo--padding--no-top .jumbo__content {
  padding-top: 0;
}
.jumbo--padding--no-bottom .jumbo__content {
  padding-bottom: 0;
}
.jumbo--margin--min .jumbo__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.jumbo--margin--min-top .jumbo__content {
  padding-top: 1em;
}
.jumbo--margin--min-bottom .jumbo__content {
  padding-bottom: 1em;
}
.jumbo--margin--med .jumbo__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.jumbo--margin--med-top .jumbo__content {
  padding-top: 2em;
}
.jumbo--margin--med-bottom .jumbo__content {
  padding-bottom: 2em;
}
.jumbo--margin--no .jumbo__content {
  padding-top: 0;
  padding-bottom: 0;
}
.jumbo--margin--no-top .jumbo__content {
  padding-top: 0;
}
.jumbo--margin--no-bottom .jumbo__content {
  padding-bottom: 0;
}
.jumbo--inner-bgcolor--darker-white .jumbo__inner {
  background-color: #E7E7E7;
}
.jumbo--inner-bgcolor--light-purple .jumbo__inner {
  background-color: #EDEAEF;
}
.jumbo--inner-bgcolor--light-purple .jumbo__inner .text-display__body {
  color: #000;
}
.jumbo--inner-bgcolor--near-white .jumbo__inner {
  background-color: #EDEDED;
}
.jumbo--inner-bgcolor--white .jumbo__inner {
  background-color: #fff;
}
.jumbo--inner-bgcolor--header-purple .jumbo__inner {
  color: #fff;
  background: #2f0147;
}
.jumbo--inner-bgcolor--header-purple .jumbo__inner .text-display__header {
  color: #fff;
}
.jumbo--inner-bgcolor--header-purple .jumbo__inner .text-display__subheader {
  color: #fff;
}
.jumbo--inner-bgcolor--header-purple .jumbo__inner .text-display__subsubheader {
  color: #fff;
}
.jumbo--inner-bgcolor--header-purple .jumbo__inner .text-display__body {
  color: #fff;
}
.jumbo--bgcolor--darker-white {
  background-color: #E7E7E7;
}
.jumbo--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.jumbo--bgcolor--near-white {
  background-color: #EDEDED;
}
.jumbo--bgcolor--header-purple {
  background: #2f0147;
  color: #fff;
}
.jumbo--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.jumbo--bgcolor--header-purple .text-display__subheader {
  color: #fff;
}
.jumbo--bgcolor--header-purple .text-display__subsubheader {
  color: #fff;
}
.jumbo--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.jumbo--bgcolor--split--near-white {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
}
.jumbo--bgcolor--split--light-purple {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
}
@media (max-width: 860px) {
  .jumbo {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content 300px;
  }
}
@media (max-width: 860px) {
  .jumbo--has-review {
    min-height: 250px;
  }
}
.jumbo--render--shorter-height {
  grid-template-rows: max-content;
}
@media (max-width: 860px) {
  .jumbo--render--shorter-height {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
@media (max-width: 860px) {
  .jumbo--render--shorter-height .jumbo__background-container {
    position: absolute;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 861px) {
  .jumbo--render--shorter-height .text-display {
    max-width: 1200px;
  }
}
.jumbo .text-display__placeholder {
  max-width: 50vw;
}
.jumbo__background-display {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
@media (max-width: 860px) {
  .jumbo__background-display {
    position: relative;
  }
}
@media (min-width: 861px) {
  .jumbo__background-display {
    max-width: 50vw;
  }
}
.jumbo__background-display img {
  display: block;
  object-fit: contain;
}
.jumbo__background-display__pattern {
  height: 100%;
}
@media (max-width: 860px) {
  .jumbo__background-display__pattern {
    position: absolute;
    max-height: 100%;
  }
}
.jumbo__background-display__pattern img {
  height: 100%;
}
@media (max-width: 860px) {
  .jumbo__background-display__pattern img {
    object-fit: cover;
    object-position: bottom right;
    height: auto;
  }
}
.jumbo__background-display__pattern--animated-confetti .jumbo__background-container .jumbo__background-displays {
  position: unset;
}
.jumbo__background-display__pattern--animated-confetti .jumbo__background-container .jumbo__background-display__pattern {
  max-width: unset;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.jumbo__background-display__foreground {
  width: 100%;
  z-index: 1;
}
@media (min-width: 861px) {
  .jumbo__background-display__foreground img {
    max-width: 45vw;
    height: auto;
  }
}
@media (max-width: 860px) {
  .jumbo__background-display__foreground img {
    max-height: 300px;
  }
}
@media (min-width: 861px) {
  .jumbo__background-display__foreground--align--top-right {
    position: relative;
  }
}
.jumbo__background-display__foreground--align--top-right img {
  width: 100%;
  object-position: top right;
}
@media (min-width: 861px) {
  .jumbo__background-display__foreground--align--top-right img {
    position: absolute;
    right: 0;
  }
}
@media (min-width: 861px) {
  .jumbo__background-display__foreground--align--center-right {
    position: relative;
  }
}
.jumbo__background-display__foreground--align--center-right img {
  object-position: center right;
}
@media (min-width: 861px) {
  .jumbo__background-display__foreground--align--center-right img {
    position: absolute;
    right: 0;
  }
}
.jumbo__background-display__foreground--align--bottom-right .jumbo__background-display__foreground {
  height: 100%;
}
@media (min-width: 861px) {
  .jumbo__background-display__foreground--align--bottom-right .jumbo__background-display__foreground {
    position: relative;
  }
}
.jumbo__background-display__foreground--align--bottom-right .jumbo__background-display__foreground img {
  width: 100%;
  height: 100%;
  object-position: bottom right;
}
@media (min-width: 861px) {
  .jumbo__background-display__foreground--align--bottom-right .jumbo__background-display__foreground img {
    position: absolute;
    right: 0;
  }
}
.jumbo__background-container {
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
}
@media (min-width: 861px) and (max-width: 1024px) {
  .jumbo__background-container {
    grid-template-columns: 2fr 1fr;
  }
}
@media (max-width: 860px) {
  .jumbo__background-container {
    position: relative;
    order: 2;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .jumbo__background-container .text-display__placeholder {
    display: none;
  }
}
.jumbo__background-container--full-width {
  grid-template-columns: 1fr;
}
.jumbo__background-container--full-width .text-display__placeholder {
  display: none;
}
.jumbo__background-container .jumbo__background-displays {
  position: relative;
}
@media only screen and (max-width: 950px) {
  .jumbo .text-display__ctas {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 860px) {
  .jumbo .text-display__ctas {
    display: flex;
    flex-direction: column;
  }
}
.jumbo__content {
  display: grid;
  position: relative;
  z-index: 2;
}
@media (min-width: 861px) {
  .jumbo__content--single-column {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 861px) {
  .jumbo__content--single-column .jumbo__inner .jumbo__content {
    grid-template-columns: 1fr;
  }
}
.jumbo__content--single-column .jumbo__background-display__pattern {
  overflow: hidden;
  display: block;
}
@media (min-width: 861px) {
  .jumbo__content--single-column .jumbo__background-display {
    max-width: unset;
  }
}
.jumbo__content--single-column .jumbo__background-container {
  grid-template-columns: 1fr;
}
.jumbo__content--single-column .text-display__placeholder {
  display: none;
}
@media (min-width: 861px) {
  .jumbo__content--1-1 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .jumbo__content--1-1 {
    grid-template-columns: 2fr 1.5fr;
  }
}
@media (min-width: 861px) {
  .jumbo__content--2-3 {
    grid-template-columns: 2fr 3fr;
  }
}
@media (min-width: 861px) {
  .jumbo__content--3-4 {
    grid-template-columns: 3fr 4fr;
  }
}
@media (min-width: 861px) {
  .jumbo__content--3-2 {
    grid-template-columns: 3fr 2fr;
  }
}
@media (min-width: 861px) {
  .jumbo__content--4-3 {
    grid-template-columns: 4fr 3fr;
  }
}
@media (max-width: 860px) {
  .jumbo--mobile--text-center {
    text-align: center;
  }
  .jumbo--mobile--text-center .text-display__ctas {
    justify-content: center;
  }
}
@media (min-width: 861px) {
  .jumbo--desktop--text-center {
    text-align: center;
  }
  .jumbo--desktop--text-center .text-display__ctas {
    justify-content: center;
  }
}
.jumbo--text-center {
  text-align: center;
}
.jumbo--text-center .text-display__ctas {
  justify-content: center;
}
@media (min-width: 861px) {
  .jumbo .text-display {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 860px) {
  .jumbo .text-display {
    padding: 0em;
  }
}
.jumbo .text-display__header {
  font-weight: 700;
}
@media (max-width: 860px) {
  .jumbo .text-display__header {
    font-size: 38px;
    line-height: 45px;
  }
}
@media (min-width: 861px) {
  .jumbo .text-display__header--smaller {
    font-size: 0.8em;
    line-height: 1em;
  }
}
@media (max-width: 860px) {
  .jumbo .text-display__header--smaller {
    font-size: 0.8em;
    line-height: 1em;
  }
}
.jumbo .text-display__subheader {
  font-family: "rooney-sans", sans-serif;
  color: #c656a1;
}
@media (min-width: 861px) {
  .jumbo .text-display__subheader {
    line-height: 36px;
  }
}
.jumbo .text-display__subheader--color--black {
  color: #000;
}
.jumbo .text-display__body, .jumbo .text-display p {
  font-weight: 400;
  line-height: 1.5em;
}
@media (max-width: 860px) {
  .jumbo .text-display__body, .jumbo .text-display p {
    line-height: 1.4em;
  }
}
.jumbo--has--reviews {
  margin-bottom: 2em;
}
@media (max-width: 860px) {
  .jumbo--has--callout {
    margin-bottom: 9em;
  }
}
@media (min-width: 861px) {
  .jumbo--has--callout {
    margin-bottom: 6em;
  }
}
.jumbo__callout {
  z-index: 3;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  max-width: 780px;
  max-width: 45%;
  min-width: 700px;
  color: #fff;
  background-color: #2f0147;
  border-radius: 3em;
}
@media (max-width: 860px) {
  .jumbo__callout {
    display: flex;
    max-width: unset;
    min-width: unset;
    width: 200px;
    height: 200px;
    text-align: center;
    padding: 1em;
    border-radius: 50%;
  }
}
.jumbo__callout .jumbotron__callout__copy--idx-1 {
  text-align: right;
}
@media (max-width: 860px) {
  .jumbo__callout .jumbotron__callout__copy--idx-1 {
    text-align: center;
  }
}
@media (min-width: 861px) {
  .jumbo__callout .jumbotron__callout__copy--idx-1 {
    display: flex;
    flex-direction: column;
  }
  .jumbo__callout .jumbotron__callout__copy--idx-1 span {
    display: block;
  }
}
@media (min-width: 861px) {
  .jumbo__callout .jumbotron__callout__copy--idx-2 {
    text-align: center;
  }
}
.jumbo__callout .text-display__header {
  color: #fff;
}
@media (min-width: 861px) {
  .jumbo__callout .text-display__header {
    text-align: center;
  }
}
.jumbo__callout__body {
  font-size: 30px;
  line-height: 1.1em;
}
@media (max-width: 860px) {
  .jumbo__callout__body {
    font-size: 18px;
    line-height: 26px;
  }
}
.jumbo__callout__wrapper {
  justify-content: center;
  align-items: center;
  display: grid;
  padding: 1em 3em;
  grid-template-columns: 1fr;
  gap: 0.2em;
  text-align: center;
}
.jumbo__callout__wrapper--simple {
  padding: 0;
  font-size: 30px;
  grid-template-columns: 1fr;
}
@media (max-width: 860px) {
  .jumbo__callout__wrapper--simple {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 860px) {
  .jumbo__callout__wrapper {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
.jumbo__callout__wrapper .text-display__header {
  margin: 0;
}
.jumbo #badge-ribbon {
  max-width: fit-content;
  z-index: 9;
  border-top-right-radius: 3em;
  border-bottom-right-radius: 3em;
  position: relative;
  transition: all 1s linear;
}
.jumbo #badge-ribbon.no-show {
  height: 0;
  opacity: 0;
}
@media (min-width: 861px) {
  .jumbo #badge-ribbon {
    z-index: 999;
    padding-left: 2em;
  }
}
@media (max-width: 860px) {
  .jumbo #badge-ribbon {
    max-width: 95vw;
    overflow: hidden;
  }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .jumbo #badge-ribbon {
    position: absolute;
    bottom: 0;
  }
}
@media (max-width: 860px) {
  .jumbo #badge-ribbon {
    margin: 0 auto;
    border-radius: 3em;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.jumbo #badge-ribbon.badge-ribbon--bgcolor--white {
  background-color: white;
}
.jumbo #badge-ribbon.badge-ribbon--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.jumbo #badge-ribbon.badge-ribbon--bgcolor--header-purple {
  background-color: #2F0147;
}
.jumbo #badge-ribbon.badge-ribbon--bgcolor--pink {
  background-color: #C656A1;
}
@media (min-width: 861px) {
  .jumbo.home-banner-margin-bottom {
    margin-bottom: 10em;
  }
}
@media (max-width: 860px) {
  .jumbo.home-banner-margin-bottom {
    overflow: hidden;
  }
}
@media (max-width: 860px) {
  .jumbo.home-banner-margin-bottom .jumbo__background-display__foreground {
    right: -50px;
  }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .jumbo .jumbo__background-display {
    max-width: unset;
  }
  .jumbo .jumbo__background-displays {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .jumbo.jumbo--background-display--height--100 .jumbo__background-display__foreground {
    right: 0;
  }
}
@media (max-width: 860px) {
  .jumbo .jumbo__background-display__pattern {
    overflow: hidden;
  }
  .jumbo #svg-confetti-container {
    scale: 2;
  }
}

.media-text {
  position: relative;
}
.media-text__inner {
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1280px) {
  .media-text__inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .media-text__inner {
    width: 100%;
  }
}
.media-text__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .media-text__content {
    padding: 2em 1.5em;
  }
}
.media-text--padding--min .media-text__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.media-text--padding--min-top .media-text__content {
  padding-top: 1em;
}
.media-text--padding--min-bottom .media-text__content {
  padding-bottom: 1em;
}
.media-text--padding--med .media-text__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.media-text--padding--med-top .media-text__content {
  padding-top: 2em;
}
.media-text--padding--med-bottom .media-text__content {
  padding-bottom: 2em;
}
.media-text--padding--no .media-text__content {
  padding-top: 0;
  padding-bottom: 0;
}
.media-text--padding--no-top .media-text__content {
  padding-top: 0;
}
.media-text--padding--no-bottom .media-text__content {
  padding-bottom: 0;
}
.media-text--margin--min .media-text__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.media-text--margin--min-top .media-text__content {
  padding-top: 1em;
}
.media-text--margin--min-bottom .media-text__content {
  padding-bottom: 1em;
}
.media-text--margin--med .media-text__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.media-text--margin--med-top .media-text__content {
  padding-top: 2em;
}
.media-text--margin--med-bottom .media-text__content {
  padding-bottom: 2em;
}
.media-text--margin--no .media-text__content {
  padding-top: 0;
  padding-bottom: 0;
}
.media-text--margin--no-top .media-text__content {
  padding-top: 0;
}
.media-text--margin--no-bottom .media-text__content {
  padding-bottom: 0;
}
.media-text--inner-bgcolor--darker-white .media-text__inner {
  background-color: #E7E7E7;
}
.media-text--inner-bgcolor--light-purple .media-text__inner {
  background-color: #EDEAEF;
}
.media-text--inner-bgcolor--light-purple .media-text__inner .text-display__body {
  color: #000;
}
.media-text--inner-bgcolor--near-white .media-text__inner {
  background-color: #EDEDED;
}
.media-text--inner-bgcolor--white .media-text__inner {
  background-color: #fff;
}
.media-text--inner-bgcolor--header-purple .media-text__inner {
  color: #fff;
  background: #2f0147;
}
.media-text--inner-bgcolor--header-purple .media-text__inner .text-display__header {
  color: #fff;
}
.media-text--inner-bgcolor--header-purple .media-text__inner .text-display__subheader {
  color: #fff;
}
.media-text--inner-bgcolor--header-purple .media-text__inner .text-display__subsubheader {
  color: #fff;
}
.media-text--inner-bgcolor--header-purple .media-text__inner .text-display__body {
  color: #fff;
}
.media-text--bgcolor--darker-white {
  background-color: #E7E7E7;
}
.media-text--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.media-text--bgcolor--near-white {
  background-color: #EDEDED;
}
.media-text--bgcolor--header-purple {
  background: #2f0147;
  color: #fff;
}
.media-text--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.media-text--bgcolor--header-purple .text-display__subheader {
  color: #fff;
}
.media-text--bgcolor--header-purple .text-display__subsubheader {
  color: #fff;
}
.media-text--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.media-text--bgcolor--split--near-white {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
}
.media-text--bgcolor--split--light-purple {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
}
.media-text__content {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 4rem;
}
@media (max-width: 860px) {
  .media-text__content {
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    gap: 0.5em;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .media-text--mobile--text-align--center {
    text-align: center;
  }
}
@media (min-width: 861px) {
  .media-text--contained {
    padding: 2em 4em;
  }
}
@media (max-width: 860px) {
  .media-text--contained {
    padding: 1.5em;
  }
}
.media-text .media-text--test {
  position: absolute;
  background-image: url("/assets/img/furkin__media-text--1.png");
}
.media-text__image--full-height {
  position: absolute;
  right: 0;
  height: 100%;
}
@media (max-width: 860px) {
  .media-text__image--full-height {
    grid-area: image;
    position: relative;
  }
}
.media-text__image--full-height img {
  max-width: 100%;
  height: 100%;
}
.media-text--padding--min-top .media-text__content {
  padding-top: 0;
}
.media-text--bgcolor--near-white {
  background-color: #f8f8f8;
}
.media-text__pre {
  grid-row: 1;
  grid-column: 1/span 2;
}
.media-text__caption {
  text-align: center;
}
.media-text__column {
  grid-row: 1;
}
.media-text__column--col-media {
  grid-column: 1;
}
.media-text__column--col-media--align--right {
  text-align: right;
}
.media-text__column--col-media--align--left {
  text-align: left;
}
.media-text__column--col-media--full-height {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}
.media-text__column--col-media--full-height img {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  object-position: center left;
}
.media-text__column--col-text {
  grid-column: 2;
}
.media-text--padding--min .media-text__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.media-text--padding--min-top .media-text__content {
  padding-top: 1em;
}
.media-text--padding--min-bottom .media-text__content {
  padding-bottom: 1em;
}
.media-text--padding--med .media-text__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.media-text--padding--med-top .media-text__content {
  padding-top: 2em;
}
.media-text--padding--med-bottom .media-text__content {
  padding-bottom: 2em;
}
.media-text--padding--no .media-text__content {
  padding-top: 0;
  padding-bottom: 0;
}
.media-text--padding--no-top .media-text__content {
  padding-top: 0;
}
.media-text--padding--no-bottom .media-text__content {
  padding-bottom: 0;
}
.media-text--rounded-corners video {
  border-radius: 8px;
  overflow: hidden;
}
.media-text--render--rounded-wrapper .media-text__content {
  color: #000;
  margin-top: 4em;
  border-radius: 4em;
  min-height: 250px;
  padding: 3em 4em;
}
@media (max-width: 860px) {
  .media-text--render--rounded-wrapper .media-text__content {
    border-radius: 0;
    margin-top: 0;
    padding: 1.5em;
    min-height: auto;
    display: block;
  }
}
.media-text--render--rounded-wrapper .media-text__content a {
  color: inherit;
}
.media-text--render--rounded-wrapper .media-text__content .text-display__subheader {
  font-weight: 300;
}
.media-text--flip-img .image-display {
  transform: scaleX(-1);
}
@media (max-width: 860px) {
  .media-text--text-pre--order-1 .media-text__pre {
    order: 1;
  }
}
.media-text--text-display--cta--center .text-display__ctas {
  justify-content: center;
  align-content: center;
}
@media (max-width: 860px) {
  .media-text--text-display--cta--center--mobile .text-display__ctas {
    justify-content: center;
    align-content: center;
  }
}
.media-text--layout--as-aside .media-text__content {
  grid-template-columns: 6fr 6fr;
  align-items: start;
  gap: 2em;
}
.media-text--layout--as-aside .media-text__column--col-text {
  grid-column: 1;
}
.media-text--layout--as-aside .media-text__column--col-media {
  grid-column: 2;
}
.media-text--layout--text-pre .media-text__content {
  grid-template-columns: 4fr 5fr;
}
.media-text--layout--text-pre .media-text__column--col-media {
  grid-row: 2;
}
.media-text--layout--text-pre .media-text__column--col-text {
  grid-row: 2;
}
.media-text--layout--v-center .media-text__column {
  align-self: center;
}
.media-text--layout--flipped .media-text__content {
  grid-template-columns: 6fr 6fr;
}
@media (min-width: 861px) {
  .media-text--layout--flipped .media-text__column--col-text {
    grid-column: 1;
  }
  .media-text--layout--flipped .media-text__column--col-media {
    grid-column: 2;
  }
}
@media (max-width: 860px) {
  .media-text--layout--flipped--mobile .media-text__content {
    flex-direction: column-reverse;
  }
}
.media-text--layout--2-1 .media-text__content {
  grid-template-columns: 2fr 1fr;
}
.media-text--layout--1-2 .media-text__content {
  grid-template-columns: 1fr 2fr;
}
.media-text--layout--2-5 .media-text__content {
  grid-template-columns: 2fr 5fr;
}
.media-text--layout--4-5 .media-text__content {
  grid-template-columns: 4fr 5fr;
}
.media-text--layout--3-5 .media-text__content {
  grid-template-columns: 3fr 5fr;
}
.media-text--layout--5-4 .media-text__content {
  grid-template-columns: 5fr 4fr;
}
.media-text--layout--5-3 .media-text__content {
  grid-template-columns: 5fr 3fr;
}
.media-text--1-1 .media-text__content {
  grid-template-columns: 1fr;
  gap: 0;
  text-align: center;
}
@media (max-width: 860px) {
  .media-text--1-1 .media-text__content {
    display: grid;
  }
}
.media-text--banner {
  overflow: hidden;
}
@media (max-width: 860px) {
  .media-text--banner .media-text__content {
    display: flex;
    grid-template-columns: 1fr;
    grid-template-rows: max-content 300px;
    grid-template-columns: 1fr;
    grid-template-areas: "text" "image";
    gap: 0;
    padding: 0;
  }
}
@media (max-width: 860px) {
  .media-text--banner .media-text__column--col-media {
    grid-area: image;
    position: relative;
  }
}
@media (max-width: 860px) {
  .media-text--banner .media-text__column--col-text {
    padding: 2em;
    grid-area: column;
  }
}
@media (min-width: 861px) {
  .media-text--banner.media-text--layout--flipped .image-display {
    width: 40%;
    height: 100%;
    right: 0;
  }
}
@media (max-width: 860px) {
  .media-text--banner .media-text__column--col-media {
    min-height: 250px;
  }
}
.media-text--banner .media-text__column--col-media .image-display {
  position: absolute;
  z-index: 1;
  top: 0;
  background-image: url(/assets/img/furkin__banner-cat.png), url("/assets/img/patterns/paws.png");
  background-position: 50% 100%, 50% 50%;
  background-size: auto;
  background-repeat: no-repeat;
  background-size: contain, cover;
}
@media (min-width: 861px) {
  .media-text--banner .media-text__column--col-media .image-display {
    width: 38%;
    height: 100%;
  }
}
@media (max-width: 860px) {
  .media-text--banner .media-text__column--col-media .image-display {
    background-size: contain, cover;
    width: 100%;
    height: 100%;
  }
}
.media-text--banner .col-media {
  top: 0;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 861px) {
  .media-text--banner .col-media {
    position: absolute;
  }
}
@media (max-width: 860px) {
  .media-text--banner .col-media {
    min-height: 250px;
  }
}
@media (min-width: 861px) {
  .media-text--banner .col-media {
    max-height: 100%;
    width: 50%;
  }
}
.media-text--banner .col-media__pattern-display {
  position: absolute;
  top: 0;
  background-image: url("/assets/img/patterns/paws.png");
  background-size: cover;
}
@media (min-width: 861px) {
  .media-text--banner .col-media__pattern-display {
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
  }
}
@media (max-width: 860px) {
  .media-text--banner .col-media__pattern-display {
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    width: 100%;
  }
}
.media-text--banner .col-media__image-display {
  z-index: 1;
  background-image: url(/assets/img/furkin__banner-cat.png), url("/assets/img/patterns/paws.png");
  background-position: 50% 100%;
  background-size: auto;
  background-repeat: no-repeat;
}
@media (min-width: 861px) {
  .media-text--banner .col-media__image-display {
    width: 50%;
    height: 100%;
    left: 0;
  }
}
@media (max-width: 860px) {
  .media-text--banner .col-media__image-display {
    position: relative;
    background-size: contain cover;
  }
}
.media-text--banner .col-media__image-display img {
  height: 100%;
  width: auto;
}
.media-text--banner-with-background {
  overflow: hidden;
  background-image: url(/assets/img/furkin-confetti-xl.svg);
  position: relative;
}
@media (min-width: 861px) {
  .media-text--banner-with-background {
    padding: 2em 4em;
  }
}
@media (max-width: 860px) {
  .media-text--banner-with-background {
    padding: 1.5em;
  }
}
.media-text--banner-with-background .media-text__inner {
  border-radius: 1.5em;
}
@media (min-width: 1025px) {
  .media-text--banner-with-background.media-text--layout--1-2 .image-display {
    max-width: 30%;
  }
}
@media (min-width: 861px) {
  .media-text--banner-with-background.media-text--layout--2-5 .image-display {
    max-width: 30%;
  }
}
@media (min-width: 861px) {
  .media-text--banner-with-background.media-text--layout--3-5 .image-display {
    max-width: 30%;
  }
}
@media (min-width: 861px) {
  .media-text--banner-with-background.media-text--layout--flipped .image-display {
    left: unset;
    right: 10%;
  }
}
.media-text--banner-with-background .media-text__background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.media-text--banner-with-background .media-text__background .background-display__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.media-text--banner-with-background .media-text__background .background-display__pattern img {
  object-fit: cover;
}
.media-text--banner-with-background .media-text__background .background-display__image {
  display: flex;
  position: absolute;
  bottom: 0;
}
.media-text--banner-with-background .media-text__content {
  border-radius: 1.5em;
}
@media (min-width: 861px) {
  .media-text--banner-with-background .media-text__content {
    padding: 5em;
  }
}
.media-text--banner-with-background .media-text__column--col-text {
  position: relative;
  z-index: 2;
}
@media (max-width: 860px) {
  .media-text--banner-with-background .media-text__column--col-media {
    position: relative;
  }
}
@media (min-width: 861px) {
  .media-text--banner-with-background .image-display {
    position: absolute;
    bottom: 0;
    display: flex;
    left: 10%;
    max-width: 35%;
  }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .media-text--banner-with-background .image-display {
    left: 0;
    max-width: 55%;
  }
}
@media (max-width: 860px) {
  .media-text--banner-with-background .image-display {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #C656A1;
    border: 2px solid #C656A1;
    position: relative;
  }
  .media-text--banner-with-background .image-display::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 50px 0 3vmax #fff;
    z-index: 1;
  }
}
@media (max-width: 860px) and (max-width: 860px) {
  .media-text--banner-with-background .image-display img {
    max-width: 140%;
    right: 10%;
    position: relative;
  }
}
@media (max-width: 860px) {
  .media-text--banner-with-background .media-text__content {
    flex-direction: column;
    text-align: center;
  }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .media-text--banner-with-background .media-text__content {
    grid-template-columns: 1fr 1fr;
  }
}
.text-wrapper__inner {
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1280px) {
  .text-wrapper__inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .text-wrapper__inner {
    width: 100%;
  }
}
.text-wrapper__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .text-wrapper__content {
    padding: 2em 1.5em;
  }
}
.text-wrapper--padding--min .text-wrapper__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.text-wrapper--padding--min-top .text-wrapper__content {
  padding-top: 1em;
}
.text-wrapper--padding--min-bottom .text-wrapper__content {
  padding-bottom: 1em;
}
.text-wrapper--padding--med .text-wrapper__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.text-wrapper--padding--med-top .text-wrapper__content {
  padding-top: 2em;
}
.text-wrapper--padding--med-bottom .text-wrapper__content {
  padding-bottom: 2em;
}
.text-wrapper--padding--no .text-wrapper__content {
  padding-top: 0;
  padding-bottom: 0;
}
.text-wrapper--padding--no-top .text-wrapper__content {
  padding-top: 0;
}
.text-wrapper--padding--no-bottom .text-wrapper__content {
  padding-bottom: 0;
}
.text-wrapper--margin--min .text-wrapper__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.text-wrapper--margin--min-top .text-wrapper__content {
  padding-top: 1em;
}
.text-wrapper--margin--min-bottom .text-wrapper__content {
  padding-bottom: 1em;
}
.text-wrapper--margin--med .text-wrapper__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.text-wrapper--margin--med-top .text-wrapper__content {
  padding-top: 2em;
}
.text-wrapper--margin--med-bottom .text-wrapper__content {
  padding-bottom: 2em;
}
.text-wrapper--margin--no .text-wrapper__content {
  padding-top: 0;
  padding-bottom: 0;
}
.text-wrapper--margin--no-top .text-wrapper__content {
  padding-top: 0;
}
.text-wrapper--margin--no-bottom .text-wrapper__content {
  padding-bottom: 0;
}
.text-wrapper--inner-bgcolor--darker-white .text-wrapper__inner {
  background-color: #E7E7E7;
}
.text-wrapper--inner-bgcolor--light-purple .text-wrapper__inner {
  background-color: #EDEAEF;
}
.text-wrapper--inner-bgcolor--light-purple .text-wrapper__inner .text-display__body {
  color: #000;
}
.text-wrapper--inner-bgcolor--near-white .text-wrapper__inner {
  background-color: #EDEDED;
}
.text-wrapper--inner-bgcolor--white .text-wrapper__inner {
  background-color: #fff;
}
.text-wrapper--inner-bgcolor--header-purple .text-wrapper__inner {
  color: #fff;
  background: #2f0147;
}
.text-wrapper--inner-bgcolor--header-purple .text-wrapper__inner .text-display__header {
  color: #fff;
}
.text-wrapper--inner-bgcolor--header-purple .text-wrapper__inner .text-display__subheader {
  color: #fff;
}
.text-wrapper--inner-bgcolor--header-purple .text-wrapper__inner .text-display__subsubheader {
  color: #fff;
}
.text-wrapper--inner-bgcolor--header-purple .text-wrapper__inner .text-display__body {
  color: #fff;
}
.text-wrapper--bgcolor--darker-white {
  background-color: #E7E7E7;
}
.text-wrapper--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.text-wrapper--bgcolor--near-white {
  background-color: #EDEDED;
}
.text-wrapper--bgcolor--header-purple {
  background: #2f0147;
  color: #fff;
}
.text-wrapper--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.text-wrapper--bgcolor--header-purple .text-display__subheader {
  color: #fff;
}
.text-wrapper--bgcolor--header-purple .text-display__subsubheader {
  color: #fff;
}
.text-wrapper--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.text-wrapper--bgcolor--split--near-white {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
}
.text-wrapper--bgcolor--split--light-purple {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
}
.text-wrapper--bg-color--light-purple {
  border: 3px solid palegreen;
  background-color: #EDEAEF;
}
.text-wrapper--extra-wide .text-display {
  max-width: 1400px;
}
.text-wrapper__inner {
  margin: 0 auto;
  max-width: 1500px;
}
.text-wrapper__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .text-wrapper__content {
    padding: 2em 1em;
  }
}
.text-wrapper--render--rounded-wrapper {
  max-width: 1145px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .text-wrapper--render--rounded-wrapper {
    padding: 2em 1.5em;
  }
}
.text-wrapper--render--rounded-wrapper .text-wrapper__inner {
  border-radius: 1em;
}
@media (min-width: 861px) {
  .text-wrapper--desktop--text--center {
    text-align: center;
  }
  .text-wrapper--desktop--text--center .text-display {
    margin: 0px auto;
  }
}
.text-wrapper--text--center {
  text-align: center;
}
.text-wrapper--text--center .text-display {
  margin: 0px auto;
}
.text-wrapper--render--callout {
  margin-top: 6em;
  position: relative;
}
.text-wrapper--render--callout--jumbo {
  display: grid;
  font-size: 14px;
  padding: 0 1em;
  gap: 0.4em;
}
@media (max-width: 860px) {
  .text-wrapper--render--callout--jumbo {
    gap: 1em;
  }
}
@media (min-width: 861px) {
  .text-wrapper--render--callout--jumbo {
    padding: 0 6em;
    width: 780px;
    border-radius: 100px;
    grid-template-columns: 1fr max-content 3fr;
  }
}
@media (min-width: 861px) {
  .text-wrapper--render--callout--jumbo .jumbotron__callout__copy--idx-1,
.text-wrapper--render--callout--jumbo .jumbotron__callout__copy--idx-3 {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 860px) {
  .text-wrapper--render--callout--jumbo .jumbotron__callout__copy--idx-1,
.text-wrapper--render--callout--jumbo .jumbotron__callout__copy--idx-3 {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 861px) {
  .text-wrapper--render--callout--jumbo .jumbotron__callout__copy--idx-1 {
    display: flex;
    flex-direction: column;
    text-align: right;
  }
}
.text-wrapper--render--callout--jumbo .jumbotron__callout__copy--idx-2.text-display__header {
  font-size: clamp(3.75rem, 3.2145rem + 2.38vw, 4.6875rem);
  margin-bottom: 0;
}
@media (max-width: 860px) {
  .text-wrapper--render--callout--jumbo .jumbotron__callout__copy--idx-2.text-display__header {
    line-height: 28px;
  }
}
.text-wrapper--render--callout--jumbo .jumbotron__callout__copy--idx-3 {
  word-breaK: break-all;
}
@media (min-width: 861px) {
  .text-wrapper--render--callout--jumbo .jumbotron__callout__copy--idx-3 {
    text-align: left;
  }
}
@media (max-width: 860px) {
  .text-wrapper--render--callout--normal {
    margin-top: 120px;
  }
}
.text-wrapper--render--callout--normal .text-wrapper__content {
  padding-top: 6em;
}
@media (max-width: 860px) {
  .text-wrapper--render--callout--normal .text-wrapper__content {
    padding-top: 130px;
  }
}
.text-wrapper--render--callout--normal .text-display__callout {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  position: absolute;
  background-color: #2F0147;
  padding: 1em 3em;
  color: #fff;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100px;
}
@media (max-width: 860px) {
  .text-wrapper--render--callout--normal .text-display__callout {
    padding: 1em 1em;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
.text-wrapper--render--callout {
  margin-top: 6em;
  position: relative;
}
@media (max-width: 860px) {
  .text-wrapper--render--callout {
    margin-top: 120px;
  }
}
.text-wrapper--render--callout .text-wrapper__content {
  padding-top: 6em;
}
@media (max-width: 860px) {
  .text-wrapper--render--callout .text-wrapper__content {
    padding-top: 130px;
  }
}
.text-wrapper--render--callout .text-display__callout {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  position: absolute;
  background-color: #2F0147;
  padding: 1em 3em;
  color: #fff;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100px;
}
@media (max-width: 860px) {
  .text-wrapper--render--callout .text-display__callout {
    padding: 1em 1em;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
.text-wrapper--render--callout--normal {
  margin-top: 6em;
  position: relative;
}
@media (max-width: 860px) {
  .text-wrapper--render--callout--normal {
    margin-top: 120px;
  }
}
.text-wrapper--render--callout--normal .text-wrapper__content {
  padding-top: 6em;
}
@media (max-width: 860px) {
  .text-wrapper--render--callout--normal .text-wrapper__content {
    padding-top: 130px;
  }
}
.text-wrapper--render--callout--normal .text-display__callout {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  position: absolute;
  background-color: #2F0147;
  padding: 1em 3em;
  color: #fff;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100px;
}
@media (max-width: 860px) {
  .text-wrapper--render--callout--normal .text-display__callout {
    padding: 1em 1em;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
.text-wrapper--render--callout--jumbo .jumbotron__callout__wrapper {
  font-size: 14px;
  padding: 0 1em;
  gap: 0.4em;
}
@media (max-width: 860px) {
  .text-wrapper--render--callout--jumbo .jumbotron__callout__wrapper {
    gap: 1em;
  }
}
@media (min-width: 861px) {
  .text-wrapper--render--callout--jumbo .jumbotron__callout__wrapper {
    padding: 0 6em;
    width: 780px;
    border-radius: 100px;
    grid-template-columns: 1fr max-content 3fr;
  }
}
@media (min-width: 861px) {
  .text-wrapper--render--callout--jumbo .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-1,
.text-wrapper--render--callout--jumbo .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-3 {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 860px) {
  .text-wrapper--render--callout--jumbo .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-1,
.text-wrapper--render--callout--jumbo .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-3 {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 861px) {
  .text-wrapper--render--callout--jumbo .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-1 {
    display: flex;
    flex-direction: column;
    text-align: right;
  }
}
.text-wrapper--render--callout--jumbo .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-2.text-display__header {
  font-size: clamp(3.75rem, 3.2145rem + 2.38vw, 4.6875rem);
}
@media (max-width: 860px) {
  .text-wrapper--render--callout--jumbo .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-2.text-display__header {
    line-height: 28px;
  }
}
.text-wrapper--render--callout--jumbo .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-3 {
  word-breaK: break-all;
}
@media (min-width: 861px) {
  .text-wrapper--render--callout--jumbo .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-3 {
    text-align: left;
  }
}
.text-wrapper--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.text-wrapper .jumbotron__callout__wrapper {
  font-size: 14px;
  padding: 0 1em;
  gap: 0.4em;
}
@media (max-width: 860px) {
  .text-wrapper .jumbotron__callout__wrapper {
    gap: 1em;
  }
}
@media (min-width: 861px) {
  .text-wrapper .jumbotron__callout__wrapper {
    padding: 0 6em;
    width: 780px;
    border-radius: 100px;
    grid-template-columns: 1fr max-content 3fr;
  }
}
@media (min-width: 861px) {
  .text-wrapper .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-1,
.text-wrapper .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-3 {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 860px) {
  .text-wrapper .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-1,
.text-wrapper .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-3 {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 861px) {
  .text-wrapper .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-1 {
    display: flex;
    flex-direction: column;
    text-align: right;
  }
}
.text-wrapper .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-2.text-display__header {
  font-size: clamp(3.75rem, 3.2145rem + 2.38vw, 4.6875rem);
}
@media (max-width: 860px) {
  .text-wrapper .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-2.text-display__header {
    line-height: 28px;
  }
}
.text-wrapper .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-3 {
  word-breaK: break-all;
}
@media (min-width: 861px) {
  .text-wrapper .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-3 {
    text-align: left;
  }
}
@media (max-width: 860px) {
  .text-wrapper .jumbotron__callout__wrapper .jumbotron__callout__copy--idx-3--no-word-break {
    word-break: unset;
  }
}

@keyframes animate {
  from {
    background-position: 0 1000%;
  }
  to {
    background-position: 0;
  }
}
.grid-wrapper {
  position: relative;
}
.grid-wrapper__inner {
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1280px) {
  .grid-wrapper__inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .grid-wrapper__inner {
    width: 100%;
  }
}
.grid-wrapper__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .grid-wrapper__content {
    padding: 2em 1.5em;
  }
}
.grid-wrapper--padding--min .grid-wrapper__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.grid-wrapper--padding--min-top .grid-wrapper__content {
  padding-top: 1em;
}
.grid-wrapper--padding--min-bottom .grid-wrapper__content {
  padding-bottom: 1em;
}
.grid-wrapper--padding--med .grid-wrapper__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.grid-wrapper--padding--med-top .grid-wrapper__content {
  padding-top: 2em;
}
.grid-wrapper--padding--med-bottom .grid-wrapper__content {
  padding-bottom: 2em;
}
.grid-wrapper--padding--no .grid-wrapper__content {
  padding-top: 0;
  padding-bottom: 0;
}
.grid-wrapper--padding--no-top .grid-wrapper__content {
  padding-top: 0;
}
.grid-wrapper--padding--no-bottom .grid-wrapper__content {
  padding-bottom: 0;
}
.grid-wrapper--margin--min .grid-wrapper__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.grid-wrapper--margin--min-top .grid-wrapper__content {
  padding-top: 1em;
}
.grid-wrapper--margin--min-bottom .grid-wrapper__content {
  padding-bottom: 1em;
}
.grid-wrapper--margin--med .grid-wrapper__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.grid-wrapper--margin--med-top .grid-wrapper__content {
  padding-top: 2em;
}
.grid-wrapper--margin--med-bottom .grid-wrapper__content {
  padding-bottom: 2em;
}
.grid-wrapper--margin--no .grid-wrapper__content {
  padding-top: 0;
  padding-bottom: 0;
}
.grid-wrapper--margin--no-top .grid-wrapper__content {
  padding-top: 0;
}
.grid-wrapper--margin--no-bottom .grid-wrapper__content {
  padding-bottom: 0;
}
.grid-wrapper--inner-bgcolor--darker-white .grid-wrapper__inner {
  background-color: #E7E7E7;
}
.grid-wrapper--inner-bgcolor--light-purple .grid-wrapper__inner {
  background-color: #EDEAEF;
}
.grid-wrapper--inner-bgcolor--light-purple .grid-wrapper__inner .text-display__body {
  color: #000;
}
.grid-wrapper--inner-bgcolor--near-white .grid-wrapper__inner {
  background-color: #EDEDED;
}
.grid-wrapper--inner-bgcolor--white .grid-wrapper__inner {
  background-color: #fff;
}
.grid-wrapper--inner-bgcolor--header-purple .grid-wrapper__inner {
  color: #fff;
  background: #2f0147;
}
.grid-wrapper--inner-bgcolor--header-purple .grid-wrapper__inner .text-display__header {
  color: #fff;
}
.grid-wrapper--inner-bgcolor--header-purple .grid-wrapper__inner .text-display__subheader {
  color: #fff;
}
.grid-wrapper--inner-bgcolor--header-purple .grid-wrapper__inner .text-display__subsubheader {
  color: #fff;
}
.grid-wrapper--inner-bgcolor--header-purple .grid-wrapper__inner .text-display__body {
  color: #fff;
}
.grid-wrapper--bgcolor--darker-white {
  background-color: #E7E7E7;
}
.grid-wrapper--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.grid-wrapper--bgcolor--near-white {
  background-color: #EDEDED;
}
.grid-wrapper--bgcolor--header-purple {
  background: #2f0147;
  color: #fff;
}
.grid-wrapper--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.grid-wrapper--bgcolor--header-purple .text-display__subheader {
  color: #fff;
}
.grid-wrapper--bgcolor--header-purple .text-display__subsubheader {
  color: #fff;
}
.grid-wrapper--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.grid-wrapper--bgcolor--split--near-white {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
}
.grid-wrapper--bgcolor--split--light-purple {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
}
@media (min-width: 861px) {
  .grid-wrapper.grid-wrapper--contained-background-image.grid-wrapper--contained-background-image--animated {
    animation: animate 100s;
    animation-fill-mode: forwards;
    animation-duration: infinite;
  }
}
.grid-wrapper.grid-wrapper--contained-background-image.grid-wrapper--contained-background-image--fixed {
  background-attachment: fixed;
}
.grid-wrapper--contained .grid-wrapper__inner {
  max-width: 1145px;
}
.grid-wrapper--boxed .grid-wrapper__inner {
  padding: 3em 0;
  border-radius: 1em;
}
@media (max-width: 860px) {
  .grid-wrapper--boxed .grid-wrapper__inner {
    padding: 1.5em 0;
  }
}
.grid-wrapper--boxed .grid-wrapper__content {
  border-radius: 1em;
}
@media (max-width: 1024px) {
  .grid-wrapper--render--rounded-wrapper {
    margin: 0em 3em;
  }
}
@media (max-width: 860px) {
  .grid-wrapper--render--rounded-wrapper {
    padding: 0.5em;
    margin: 0em 1.5em;
  }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .grid-wrapper--render--rounded-wrapper .grid-display {
    gap: 1em;
  }
}
@media (max-width: 860px) {
  .grid-wrapper--render--rounded-wrapper .grid-display__item {
    padding: 0;
  }
}
.grid-wrapper--render--rounded-wrapper .grid-wrapper__inner {
  border-radius: 2.8em;
  max-width: 1145px;
}
.grid-wrapper--render--rounded-wrapper .grid-wrapper__content {
  background-repeat: no-repeat;
  background-position: center 60% !important;
  background-size: 34%;
  background-size: auto;
}
@media (max-width: 860px) {
  .grid-wrapper--render--rounded-wrapper .grid-wrapper__content {
    background: unset !important;
  }
}
@media (max-width: 860px) {
  .grid-wrapper--render--rounded-wrapper .text-display {
    text-align: center;
  }
}
@media (max-width: 860px) {
  .grid-wrapper--render--rounded-wrapper .text-display__body {
    text-align: center;
  }
}
@media (max-width: 860px) {
  .grid-wrapper--render--rounded-wrapper .text-display__ctas {
    justify-content: center;
  }
}
.grid-wrapper--render--rounded-wrapper ul {
  margin: 0;
  padding: 0;
}
@media (max-width: 860px) {
  .grid-wrapper--render--rounded-wrapper ul {
    display: inline-block;
  }
}
.grid-wrapper--render--rounded-wrapper ul li {
  list-style-type: none;
}
@media (max-width: 860px) {
  .grid-wrapper--render--rounded-wrapper ul li {
    text-align: left;
  }
}
.grid-wrapper--render--rounded-wrapper ul li i {
  padding-right: 0.5em;
}
.grid-wrapper--render--rounded-wrapper .text-display__subheader, .grid-wrapper--render--rounded-wrapper .text-display__subsubheader {
  margin-bottom: 1em;
}
.grid-wrapper--render--rounded-wrapper.grid-wrapper--render--rounded-wrapper--add-dotted-border .grid-wrapper__inner {
  position: relative;
}
.grid-wrapper--render--rounded-wrapper.grid-wrapper--render--rounded-wrapper--add-dotted-border .grid-wrapper__inner::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  height: 100%;
  width: 100%;
  box-sizing: content-box;
  background-image: url("https://21615947.fs1.hubspotusercontent-na1.net/hubfs/21615947/furkin_dotted-border-top-right.svg");
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
}
@media (max-width: 860px) {
  .grid-wrapper--render--rounded-wrapper.grid-wrapper--render--rounded-wrapper--add-dotted-border .grid-wrapper__inner::before {
    padding: 1em;
  }
}
@media (max-width: 860px) {
  .grid-wrapper--render--checked .grid-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, 1fr);
    grid-auto-flow: unset;
    grid-auto-columns: unset;
    padding: 1.5em;
  }
}
@media only screen and (max-width: 860px) and (max-width: 861px) and (min-width: 640px) {
  .grid-wrapper--render--checked .grid-display {
    grid-template-columns: max-content max-content;
    justify-content: space-around;
  }
}
@media (max-width: 860px) {
  .grid-wrapper--render--checked .grid-display .grid-display__item {
    padding: 0;
  }
}
@media (max-width: 860px) {
  .grid-wrapper--render--checked .grid-display .text-display__body {
    align-items: flex-start;
  }
}
.grid-wrapper--render--col--max-width--xs .grid-display__item .grid-display__item__visual {
  max-width: 15%;
}
.grid-wrapper--render--largevisuals .grid-display__item__visual {
  max-width: 80%;
}
.grid-wrapper--render--fullvisuals .grid-display__item__visual {
  max-width: 100%;
}
.grid-wrapper--render--shadowed .grid-wrapper__content {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #fff;
}
.grid-wrapper--render--columns .grid-wrapper__content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
}
@media (max-width: 860px) {
  .grid-wrapper--render--columns .grid-wrapper__content {
    grid-template-columns: 1fr;
  }
}
.grid-wrapper--render--padded .grid-display {
  padding: 0 4em;
}
@media (max-width: 860px) {
  .grid-wrapper--render--padded .grid-display {
    padding: 0 1em;
  }
}
.grid-wrapper--render--visuals-align-left .grid-display__item__visual {
  margin: 0 0 1em;
}
.grid-wrapper--render--visuals-width-med .grid-display__item__visual {
  max-width: 50%;
}
@media (max-width: 860px) {
  .grid-wrapper--render--visuals-width-med .grid-display__item__visual {
    max-width: 80%;
  }
}
.grid-wrapper--render--visuals-width-large .grid-display__item__visual {
  max-width: 80%;
}
@media (max-width: 860px) {
  .grid-wrapper--render--visuals-width-large .grid-display__item__visual {
    max-width: 100%;
  }
}
.grid-wrapper--render--visuals-width-full .grid-display__item__visual {
  max-width: 100%;
}
.grid-wrapper--render--text-align-left {
  text-align: left;
}
.grid-wrapper--render--text-align-left--column-1 .grid-display__item--idx-1 .grid-display__item__text {
  text-align: left;
}
.grid-wrapper--split-text .grid-display {
  gap: 2em;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 860px) {
  .grid-wrapper--split-text .grid-display {
    grid-template-columns: 1fr;
  }
}
.grid-wrapper--split-text .grid-display__item__text {
  text-align: left;
}
.grid-wrapper--colcount--1 {
  grid-template-columns: 1fr;
}
.grid-wrapper__background {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  z-index: -1;
}
@media (max-width: 860px) {
  .grid-wrapper__background {
    display: none;
  }
}
.grid-wrapper__background img {
  display: block;
}
.grid-wrapper__content {
  display: grid;
}
.grid-wrapper__content__text-pre {
  padding-bottom: 2em;
}
.grid-wrapper__content__text-post {
  padding-top: 2em;
}
.grid-wrapper__content__text-post__max-width--small {
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .grid-wrapper__content__text-post__max-width--small {
    max-width: 280px;
  }
}
.grid-wrapper--grid-item--contained .grid-display__item {
  padding-right: 4em;
  padding-left: 4em;
}
@media (max-width: 860px) {
  .grid-wrapper--grid-item--contained .grid-display__item {
    padding: 2em 1.5em;
  }
}
.grid-wrapper--render--images--top .grid-display {
  margin-top: 3em;
  row-gap: 8em;
}
.grid-wrapper--render--images--top .grid-display__item {
  position: relative;
  padding-top: 6.5em;
  padding-bottom: 3em;
}
.grid-wrapper--render--images--top .grid-display__item__visual {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.grid-wrapper--id--dog-food {
  margin-top: 5em;
  background-image: url(https://22338740.fs1.hubspotusercontent-na1.net/hubfs/22338740/furkin_arrow.svg), url(https://22338740.fs1.hubspotusercontent-na1.net/hubfs/22338740/furkin_arrow--left.svg);
  background-position: 32% 0%, 68% 0%;
  background-repeat: no-repeat;
}
@media (min-width: 861px) and (max-width: 1024px) {
  .grid-wrapper--id--dog-food {
    background-position: 25% -5%, 75% -5%;
  }
}
@media (max-width: 860px) {
  .grid-wrapper--id--dog-food {
    grid-template-columns: 1fr;
    background-image: none;
    margin-top: 0;
    margin-bottom: 3em;
  }
}
@media (min-width: 861px) {
  .grid-wrapper--id--dog-food .grid-display__item__visual {
    max-width: 100%;
  }
}
@media (max-width: 860px) {
  .grid-wrapper--id--dog-food .grid-display__item__visual {
    max-width: 80%;
  }
}
.grid-wrapper--id--dog-food .grid-display {
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 860px) {
  .grid-wrapper--id--dog-food .grid-display {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 861px) {
  .grid-wrapper--id--dog-food .grid-display .grid-display__item:nth-of-type(1) {
    text-align: right;
  }
}
.grid-wrapper--id--dog-food .grid-display .grid-display__item:nth-of-type(2) {
  background-image: url(https://22338740.fs1.hubspotusercontent-na1.net/hubfs/22338740/furkin__arrow--mobile--down.svg), url(https://22338740.fs1.hubspotusercontent-na1.net/hubfs/22338740/furkin__arrow--mobile--up.svg);
  background-position: 5% 5%, 95% 95%;
  background-repeat: no-repeat;
}
@media (min-width: 861px) {
  .grid-wrapper--id--dog-food .grid-display .grid-display__item:nth-of-type(2) {
    background-image: none;
  }
}
@media (min-width: 861px) {
  .grid-wrapper--id--dog-food .grid-display .grid-display__item:nth-of-type(3) {
    text-align: left;
  }
}
.grid-wrapper--id--dog-food .grid-display .grid-display__item__text .text-display__header {
  margin: 0;
  color: #000;
}
@media (min-width: 861px) {
  .grid-wrapper--id--dog-food .grid-display .grid-display__item__text .text-display__header {
    font-size: 7em;
  }
}
@media (max-width: 860px) {
  .grid-wrapper--id--dog-food .grid-display .grid-display__item__text .text-display__header {
    font-size: 48px;
    line-height: 56px;
  }
}
.grid-wrapper.margin-bottom {
  margin-bottom: 4em;
}
@media (max-width: 860px) {
  .grid-wrapper.margin-bottom {
    margin-bottom: 2em;
  }
}

.aside__inner {
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1280px) {
  .aside__inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .aside__inner {
    width: 100%;
  }
}
.aside__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .aside__content {
    padding: 2em 1.5em;
  }
}
.aside--padding--min .aside__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.aside--padding--min-top .aside__content {
  padding-top: 1em;
}
.aside--padding--min-bottom .aside__content {
  padding-bottom: 1em;
}
.aside--padding--med .aside__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.aside--padding--med-top .aside__content {
  padding-top: 2em;
}
.aside--padding--med-bottom .aside__content {
  padding-bottom: 2em;
}
.aside--padding--no .aside__content {
  padding-top: 0;
  padding-bottom: 0;
}
.aside--padding--no-top .aside__content {
  padding-top: 0;
}
.aside--padding--no-bottom .aside__content {
  padding-bottom: 0;
}
.aside--margin--min .aside__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.aside--margin--min-top .aside__content {
  padding-top: 1em;
}
.aside--margin--min-bottom .aside__content {
  padding-bottom: 1em;
}
.aside--margin--med .aside__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.aside--margin--med-top .aside__content {
  padding-top: 2em;
}
.aside--margin--med-bottom .aside__content {
  padding-bottom: 2em;
}
.aside--margin--no .aside__content {
  padding-top: 0;
  padding-bottom: 0;
}
.aside--margin--no-top .aside__content {
  padding-top: 0;
}
.aside--margin--no-bottom .aside__content {
  padding-bottom: 0;
}
.aside--inner-bgcolor--darker-white .aside__inner {
  background-color: #E7E7E7;
}
.aside--inner-bgcolor--light-purple .aside__inner {
  background-color: #EDEAEF;
}
.aside--inner-bgcolor--light-purple .aside__inner .text-display__body {
  color: #000;
}
.aside--inner-bgcolor--near-white .aside__inner {
  background-color: #EDEDED;
}
.aside--inner-bgcolor--white .aside__inner {
  background-color: #fff;
}
.aside--inner-bgcolor--header-purple .aside__inner {
  color: #fff;
  background: #2f0147;
}
.aside--inner-bgcolor--header-purple .aside__inner .text-display__header {
  color: #fff;
}
.aside--inner-bgcolor--header-purple .aside__inner .text-display__subheader {
  color: #fff;
}
.aside--inner-bgcolor--header-purple .aside__inner .text-display__subsubheader {
  color: #fff;
}
.aside--inner-bgcolor--header-purple .aside__inner .text-display__body {
  color: #fff;
}
.aside--bgcolor--darker-white {
  background-color: #E7E7E7;
}
.aside--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.aside--bgcolor--near-white {
  background-color: #EDEDED;
}
.aside--bgcolor--header-purple {
  background: #2f0147;
  color: #fff;
}
.aside--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.aside--bgcolor--header-purple .text-display__subheader {
  color: #fff;
}
.aside--bgcolor--header-purple .text-display__subsubheader {
  color: #fff;
}
.aside--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.aside--bgcolor--split--near-white {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
}
.aside--bgcolor--split--light-purple {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
}
.aside__content {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 3em;
  grid-auto-rows: min-content;
  position: relative;
}
@media (max-width: 860px) {
  .aside__content {
    grid-template-columns: 1fr;
  }
}
.aside .def .text-display__subsubheader {
  font-weight: 700;
}
.aside__column {
  grid-auto-rows: min-content;
}
.aside__column--sidebar--sticky .sticky {
  position: sticky;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
}
.aside__column--sidebar--sticky .sticky a {
  width: 35px;
  height: 35px;
  font-family: rooney-sans, sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: #c656a1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 861px) {
  .aside__column--sidebar--sticky .sticky a {
    font-size: 1.5em;
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 860px) {
  .aside__column--main {
    order: 2;
  }
}
.aside__column--col-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}
@media (max-width: 860px) {
  .aside__column--col-main {
    grid-template-columns: 1fr;
  }
}
.aside__column--col-main > .text-display {
  grid-column: span 2;
}
.aside__column--col-sidebar .aside__column__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  gap: 1em;
  position: relative;
}
.aside--render--over-previous .aside__column--col-sidebar {
  margin-top: -8em;
}
.aside--render--sidebar-shadow-boxed .aside__column--col-sidebar .aside__column__inner {
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 2em;
}
.aside .def:not(:first-of-type) {
  padding-top: 1.5em;
}
.aside--layout-6-4 .aside__content {
  grid-template-columns: 6fr 4fr;
}
@media (max-width: 860px) {
  .aside--layout-6-4 .aside__content {
    grid-template-columns: 1fr;
  }
}
.aside--layout--2-1 .aside__content {
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 860px) {
  .aside--layout--2-1 .aside__content {
    grid-template-columns: 1fr;
  }
}
.aside--layout--1-1 .aside__content {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 860px) {
  .aside--layout--1-1 .aside__content {
    grid-template-columns: 1fr;
  }
}
.aside--layout-1-col .aside__column--col-main {
  grid-template-columns: 1fr;
}
.aside--layout-1-col .aside__column--col-main > .text-display {
  grid-column: unset;
}
.aside--layout-2-col .aside__column--col-main {
  grid-template-columns: repeat(2, 1fr);
}
.aside--layout-3-col .aside__column--col-main {
  grid-template-columns: repeat(2, 1fr);
}
.aside--layout-3-col .aside__column--col-main > .text-display {
  grid-column: span 3;
}

.articles-wrapper__inner {
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1280px) {
  .articles-wrapper__inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .articles-wrapper__inner {
    width: 100%;
  }
}
.articles-wrapper__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .articles-wrapper__content {
    padding: 2em 1.5em;
  }
}
.articles-wrapper--padding--min .articles-wrapper__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.articles-wrapper--padding--min-top .articles-wrapper__content {
  padding-top: 1em;
}
.articles-wrapper--padding--min-bottom .articles-wrapper__content {
  padding-bottom: 1em;
}
.articles-wrapper--padding--med .articles-wrapper__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.articles-wrapper--padding--med-top .articles-wrapper__content {
  padding-top: 2em;
}
.articles-wrapper--padding--med-bottom .articles-wrapper__content {
  padding-bottom: 2em;
}
.articles-wrapper--padding--no .articles-wrapper__content {
  padding-top: 0;
  padding-bottom: 0;
}
.articles-wrapper--padding--no-top .articles-wrapper__content {
  padding-top: 0;
}
.articles-wrapper--padding--no-bottom .articles-wrapper__content {
  padding-bottom: 0;
}
.articles-wrapper--margin--min .articles-wrapper__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.articles-wrapper--margin--min-top .articles-wrapper__content {
  padding-top: 1em;
}
.articles-wrapper--margin--min-bottom .articles-wrapper__content {
  padding-bottom: 1em;
}
.articles-wrapper--margin--med .articles-wrapper__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.articles-wrapper--margin--med-top .articles-wrapper__content {
  padding-top: 2em;
}
.articles-wrapper--margin--med-bottom .articles-wrapper__content {
  padding-bottom: 2em;
}
.articles-wrapper--margin--no .articles-wrapper__content {
  padding-top: 0;
  padding-bottom: 0;
}
.articles-wrapper--margin--no-top .articles-wrapper__content {
  padding-top: 0;
}
.articles-wrapper--margin--no-bottom .articles-wrapper__content {
  padding-bottom: 0;
}
.articles-wrapper--inner-bgcolor--darker-white .articles-wrapper__inner {
  background-color: #E7E7E7;
}
.articles-wrapper--inner-bgcolor--light-purple .articles-wrapper__inner {
  background-color: #EDEAEF;
}
.articles-wrapper--inner-bgcolor--light-purple .articles-wrapper__inner .text-display__body {
  color: #000;
}
.articles-wrapper--inner-bgcolor--near-white .articles-wrapper__inner {
  background-color: #EDEDED;
}
.articles-wrapper--inner-bgcolor--white .articles-wrapper__inner {
  background-color: #fff;
}
.articles-wrapper--inner-bgcolor--header-purple .articles-wrapper__inner {
  color: #fff;
  background: #2f0147;
}
.articles-wrapper--inner-bgcolor--header-purple .articles-wrapper__inner .text-display__header {
  color: #fff;
}
.articles-wrapper--inner-bgcolor--header-purple .articles-wrapper__inner .text-display__subheader {
  color: #fff;
}
.articles-wrapper--inner-bgcolor--header-purple .articles-wrapper__inner .text-display__subsubheader {
  color: #fff;
}
.articles-wrapper--inner-bgcolor--header-purple .articles-wrapper__inner .text-display__body {
  color: #fff;
}
.articles-wrapper--bgcolor--darker-white {
  background-color: #E7E7E7;
}
.articles-wrapper--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.articles-wrapper--bgcolor--near-white {
  background-color: #EDEDED;
}
.articles-wrapper--bgcolor--header-purple {
  background: #2f0147;
  color: #fff;
}
.articles-wrapper--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.articles-wrapper--bgcolor--header-purple .text-display__subheader {
  color: #fff;
}
.articles-wrapper--bgcolor--header-purple .text-display__subsubheader {
  color: #fff;
}
.articles-wrapper--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.articles-wrapper--bgcolor--split--near-white {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
}
.articles-wrapper--bgcolor--split--light-purple {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
}
.articles-wrapper__content {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 1.5em;
}
.articles-wrapper__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}

.media-wrapper__inner {
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1280px) {
  .media-wrapper__inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .media-wrapper__inner {
    width: 100%;
  }
}
.media-wrapper__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .media-wrapper__content {
    padding: 2em 1.5em;
  }
}
.media-wrapper--padding--min .media-wrapper__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.media-wrapper--padding--min-top .media-wrapper__content {
  padding-top: 1em;
}
.media-wrapper--padding--min-bottom .media-wrapper__content {
  padding-bottom: 1em;
}
.media-wrapper--padding--med .media-wrapper__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.media-wrapper--padding--med-top .media-wrapper__content {
  padding-top: 2em;
}
.media-wrapper--padding--med-bottom .media-wrapper__content {
  padding-bottom: 2em;
}
.media-wrapper--padding--no .media-wrapper__content {
  padding-top: 0;
  padding-bottom: 0;
}
.media-wrapper--padding--no-top .media-wrapper__content {
  padding-top: 0;
}
.media-wrapper--padding--no-bottom .media-wrapper__content {
  padding-bottom: 0;
}
.media-wrapper--margin--min .media-wrapper__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.media-wrapper--margin--min-top .media-wrapper__content {
  padding-top: 1em;
}
.media-wrapper--margin--min-bottom .media-wrapper__content {
  padding-bottom: 1em;
}
.media-wrapper--margin--med .media-wrapper__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.media-wrapper--margin--med-top .media-wrapper__content {
  padding-top: 2em;
}
.media-wrapper--margin--med-bottom .media-wrapper__content {
  padding-bottom: 2em;
}
.media-wrapper--margin--no .media-wrapper__content {
  padding-top: 0;
  padding-bottom: 0;
}
.media-wrapper--margin--no-top .media-wrapper__content {
  padding-top: 0;
}
.media-wrapper--margin--no-bottom .media-wrapper__content {
  padding-bottom: 0;
}
.media-wrapper--inner-bgcolor--darker-white .media-wrapper__inner {
  background-color: #E7E7E7;
}
.media-wrapper--inner-bgcolor--light-purple .media-wrapper__inner {
  background-color: #EDEAEF;
}
.media-wrapper--inner-bgcolor--light-purple .media-wrapper__inner .text-display__body {
  color: #000;
}
.media-wrapper--inner-bgcolor--near-white .media-wrapper__inner {
  background-color: #EDEDED;
}
.media-wrapper--inner-bgcolor--white .media-wrapper__inner {
  background-color: #fff;
}
.media-wrapper--inner-bgcolor--header-purple .media-wrapper__inner {
  color: #fff;
  background: #2f0147;
}
.media-wrapper--inner-bgcolor--header-purple .media-wrapper__inner .text-display__header {
  color: #fff;
}
.media-wrapper--inner-bgcolor--header-purple .media-wrapper__inner .text-display__subheader {
  color: #fff;
}
.media-wrapper--inner-bgcolor--header-purple .media-wrapper__inner .text-display__subsubheader {
  color: #fff;
}
.media-wrapper--inner-bgcolor--header-purple .media-wrapper__inner .text-display__body {
  color: #fff;
}
.media-wrapper--bgcolor--darker-white {
  background-color: #E7E7E7;
}
.media-wrapper--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.media-wrapper--bgcolor--near-white {
  background-color: #EDEDED;
}
.media-wrapper--bgcolor--header-purple {
  background: #2f0147;
  color: #fff;
}
.media-wrapper--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.media-wrapper--bgcolor--header-purple .text-display__subheader {
  color: #fff;
}
.media-wrapper--bgcolor--header-purple .text-display__subsubheader {
  color: #fff;
}
.media-wrapper--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.media-wrapper--bgcolor--split--near-white {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
}
.media-wrapper--bgcolor--split--light-purple {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
}
.media-wrapper--layout--align--center .media-wrapper__content {
  text-align: center;
}
.media-wrapper--layout--80-percent .media-wrapper__content {
  max-width: 80%;
  margin: 0px auto;
}
.media-wrapper--layout--desktop--75-percent {
  border: 2px solid red;
}
@media (min-width: 861px) {
  .media-wrapper--layout--desktop--75-percent .media-wrapper__content {
    max-width: 75%;
    margin: 0px auto;
  }
}
@media (min-width: 861px) {
  .media-wrapper--layout--desktop--50-percent .media-wrapper__content {
    max-width: 50%;
    margin: 0px auto;
  }
}
@media (min-width: 861px) {
  .media-wrapper--layout--desktop--35-percent .media-wrapper__content {
    max-width: 35%;
    margin: 0px auto;
  }
}
@media (min-width: 861px) {
  .media-wrapper--layout--desktop--25-percent .media-wrapper__content {
    max-width: 25%;
    margin: 0px auto;
  }
}

.split-text__inner {
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1280px) {
  .split-text__inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .split-text__inner {
    width: 100%;
  }
}
.split-text__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .split-text__content {
    padding: 2em 1.5em;
  }
}
.split-text--padding--min .split-text__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.split-text--padding--min-top .split-text__content {
  padding-top: 1em;
}
.split-text--padding--min-bottom .split-text__content {
  padding-bottom: 1em;
}
.split-text--padding--med .split-text__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.split-text--padding--med-top .split-text__content {
  padding-top: 2em;
}
.split-text--padding--med-bottom .split-text__content {
  padding-bottom: 2em;
}
.split-text--padding--no .split-text__content {
  padding-top: 0;
  padding-bottom: 0;
}
.split-text--padding--no-top .split-text__content {
  padding-top: 0;
}
.split-text--padding--no-bottom .split-text__content {
  padding-bottom: 0;
}
.split-text--margin--min .split-text__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.split-text--margin--min-top .split-text__content {
  padding-top: 1em;
}
.split-text--margin--min-bottom .split-text__content {
  padding-bottom: 1em;
}
.split-text--margin--med .split-text__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.split-text--margin--med-top .split-text__content {
  padding-top: 2em;
}
.split-text--margin--med-bottom .split-text__content {
  padding-bottom: 2em;
}
.split-text--margin--no .split-text__content {
  padding-top: 0;
  padding-bottom: 0;
}
.split-text--margin--no-top .split-text__content {
  padding-top: 0;
}
.split-text--margin--no-bottom .split-text__content {
  padding-bottom: 0;
}
.split-text--inner-bgcolor--darker-white .split-text__inner {
  background-color: #E7E7E7;
}
.split-text--inner-bgcolor--light-purple .split-text__inner {
  background-color: #EDEAEF;
}
.split-text--inner-bgcolor--light-purple .split-text__inner .text-display__body {
  color: #000;
}
.split-text--inner-bgcolor--near-white .split-text__inner {
  background-color: #EDEDED;
}
.split-text--inner-bgcolor--white .split-text__inner {
  background-color: #fff;
}
.split-text--inner-bgcolor--header-purple .split-text__inner {
  color: #fff;
  background: #2f0147;
}
.split-text--inner-bgcolor--header-purple .split-text__inner .text-display__header {
  color: #fff;
}
.split-text--inner-bgcolor--header-purple .split-text__inner .text-display__subheader {
  color: #fff;
}
.split-text--inner-bgcolor--header-purple .split-text__inner .text-display__subsubheader {
  color: #fff;
}
.split-text--inner-bgcolor--header-purple .split-text__inner .text-display__body {
  color: #fff;
}
.split-text--bgcolor--darker-white {
  background-color: #E7E7E7;
}
.split-text--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.split-text--bgcolor--near-white {
  background-color: #EDEDED;
}
.split-text--bgcolor--header-purple {
  background: #2f0147;
  color: #fff;
}
.split-text--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.split-text--bgcolor--header-purple .text-display__subheader {
  color: #fff;
}
.split-text--bgcolor--header-purple .text-display__subsubheader {
  color: #fff;
}
.split-text--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.split-text--bgcolor--split--near-white {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
}
.split-text--bgcolor--split--light-purple {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
}
.split-text--colcount-3 {
  bordeR: 1px solid red;
}
.split-text--colcount-3 .split-text__grid {
  grid-template-columns: repeat(3, 1fr);
}
.split-text__grid {
  display: grid;
}

.review-wrapper {
  position: relative;
}
.review-wrapper__inner {
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1280px) {
  .review-wrapper__inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .review-wrapper__inner {
    width: 100%;
  }
}
.review-wrapper__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .review-wrapper__content {
    padding: 2em 1.5em;
  }
}
.review-wrapper--padding--min .review-wrapper__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.review-wrapper--padding--min-top .review-wrapper__content {
  padding-top: 1em;
}
.review-wrapper--padding--min-bottom .review-wrapper__content {
  padding-bottom: 1em;
}
.review-wrapper--padding--med .review-wrapper__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.review-wrapper--padding--med-top .review-wrapper__content {
  padding-top: 2em;
}
.review-wrapper--padding--med-bottom .review-wrapper__content {
  padding-bottom: 2em;
}
.review-wrapper--padding--no .review-wrapper__content {
  padding-top: 0;
  padding-bottom: 0;
}
.review-wrapper--padding--no-top .review-wrapper__content {
  padding-top: 0;
}
.review-wrapper--padding--no-bottom .review-wrapper__content {
  padding-bottom: 0;
}
.review-wrapper--margin--min .review-wrapper__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.review-wrapper--margin--min-top .review-wrapper__content {
  padding-top: 1em;
}
.review-wrapper--margin--min-bottom .review-wrapper__content {
  padding-bottom: 1em;
}
.review-wrapper--margin--med .review-wrapper__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.review-wrapper--margin--med-top .review-wrapper__content {
  padding-top: 2em;
}
.review-wrapper--margin--med-bottom .review-wrapper__content {
  padding-bottom: 2em;
}
.review-wrapper--margin--no .review-wrapper__content {
  padding-top: 0;
  padding-bottom: 0;
}
.review-wrapper--margin--no-top .review-wrapper__content {
  padding-top: 0;
}
.review-wrapper--margin--no-bottom .review-wrapper__content {
  padding-bottom: 0;
}
.review-wrapper--inner-bgcolor--darker-white .review-wrapper__inner {
  background-color: #E7E7E7;
}
.review-wrapper--inner-bgcolor--light-purple .review-wrapper__inner {
  background-color: #EDEAEF;
}
.review-wrapper--inner-bgcolor--light-purple .review-wrapper__inner .text-display__body {
  color: #000;
}
.review-wrapper--inner-bgcolor--near-white .review-wrapper__inner {
  background-color: #EDEDED;
}
.review-wrapper--inner-bgcolor--white .review-wrapper__inner {
  background-color: #fff;
}
.review-wrapper--inner-bgcolor--header-purple .review-wrapper__inner {
  color: #fff;
  background: #2f0147;
}
.review-wrapper--inner-bgcolor--header-purple .review-wrapper__inner .text-display__header {
  color: #fff;
}
.review-wrapper--inner-bgcolor--header-purple .review-wrapper__inner .text-display__subheader {
  color: #fff;
}
.review-wrapper--inner-bgcolor--header-purple .review-wrapper__inner .text-display__subsubheader {
  color: #fff;
}
.review-wrapper--inner-bgcolor--header-purple .review-wrapper__inner .text-display__body {
  color: #fff;
}
.review-wrapper--bgcolor--darker-white {
  background-color: #E7E7E7;
}
.review-wrapper--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.review-wrapper--bgcolor--near-white {
  background-color: #EDEDED;
}
.review-wrapper--bgcolor--header-purple {
  background: #2f0147;
  color: #fff;
}
.review-wrapper--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.review-wrapper--bgcolor--header-purple .text-display__subheader {
  color: #fff;
}
.review-wrapper--bgcolor--header-purple .text-display__subsubheader {
  color: #fff;
}
.review-wrapper--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.review-wrapper--bgcolor--split--near-white {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
}
.review-wrapper--bgcolor--split--light-purple {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
}
.review-wrapper__inner {
  max-width: 90%;
}
.review-wrapper .swiper-slide {
  height: auto;
  padding-top: 2em;
  background-color: #EDEAEF;
  border-radius: 1.5em;
  margin-top: 2em;
}
.review-wrapper__reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transition: all 1s ease-in-out;
  gap: 1em;
}
@media (min-width: 861px) and (max-width: 1024px) {
  .review-wrapper__reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .review-wrapper__reviews {
    grid-template-columns: repeat(1, 1fr);
    gap: 3em;
  }
}
.review-wrapper .swiper-pagination-bullet-active {
  background-color: #c656a1;
}
.review-wrapper .review-swiper-button-next,
.review-wrapper .review-swiper-button-prev {
  position: absolute;
  top: 42%;
  font-size: 2.5em;
  color: #2f0147;
  z-index: 1;
}
@media (max-width: 860px) {
  .review-wrapper .review-swiper-button-next,
.review-wrapper .review-swiper-button-prev {
    top: 45%;
  }
}
.review-wrapper .review-swiper-button-prev {
  left: 0.25em;
}
.review-wrapper .review-swiper-button-next {
  right: 0.25em;
}

.review-card__wrapper {
  padding-top: 2em;
  background-color: #EDEAEF;
  border-radius: 1.5em;
  margin-top: 1em;
}
.review-card__card {
  position: relative;
  padding: 2em 2em 2em 2em;
  text-align: center;
}
@media (max-width: 860px) {
  .review-card__card {
    padding: 1em 1.5em;
  }
}
.review-card__icon-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  top: -3.5em;
  display: grid;
  grid-template-columns: repeat(5, max-content);
  justify-content: center;
  gap: 0.5em;
  background-color: #C656A1;
  width: fit-content;
  margin: auto;
  padding: 0.5em 2.8em;
  border-radius: 1.5em;
}
@media (max-width: 860px) {
  .review-card__icon-wrapper {
    gap: 0.3em;
  }
}
.review-card__icon-item {
  font-size: 1.2em;
}
@media (max-width: 860px) {
  .review-card__icon-item {
    font-size: 1em;
  }
}
.review-card__icon-item i {
  color: #FEBF01;
}
.review-card__image-caption {
  padding: 2em 0;
  padding-bottom: 1em;
}
.review-card__image {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  object-fit: cover;
  border: 1px solid transparent;
  margin-bottom: 2em;
}
.review-card__image img {
  background-color: #fff;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card__caption--name {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.3em;
}
.review-card__caption--location {
  font-size: 0.9em;
  line-height: 1.4em;
}

.cta-wrapper__inner {
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1280px) {
  .cta-wrapper__inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .cta-wrapper__inner {
    width: 100%;
  }
}
.cta-wrapper__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .cta-wrapper__content {
    padding: 2em 1.5em;
  }
}
.cta-wrapper--padding--min .cta-wrapper__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.cta-wrapper--padding--min-top .cta-wrapper__content {
  padding-top: 1em;
}
.cta-wrapper--padding--min-bottom .cta-wrapper__content {
  padding-bottom: 1em;
}
.cta-wrapper--padding--med .cta-wrapper__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.cta-wrapper--padding--med-top .cta-wrapper__content {
  padding-top: 2em;
}
.cta-wrapper--padding--med-bottom .cta-wrapper__content {
  padding-bottom: 2em;
}
.cta-wrapper--padding--no .cta-wrapper__content {
  padding-top: 0;
  padding-bottom: 0;
}
.cta-wrapper--padding--no-top .cta-wrapper__content {
  padding-top: 0;
}
.cta-wrapper--padding--no-bottom .cta-wrapper__content {
  padding-bottom: 0;
}
.cta-wrapper--margin--min .cta-wrapper__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.cta-wrapper--margin--min-top .cta-wrapper__content {
  padding-top: 1em;
}
.cta-wrapper--margin--min-bottom .cta-wrapper__content {
  padding-bottom: 1em;
}
.cta-wrapper--margin--med .cta-wrapper__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.cta-wrapper--margin--med-top .cta-wrapper__content {
  padding-top: 2em;
}
.cta-wrapper--margin--med-bottom .cta-wrapper__content {
  padding-bottom: 2em;
}
.cta-wrapper--margin--no .cta-wrapper__content {
  padding-top: 0;
  padding-bottom: 0;
}
.cta-wrapper--margin--no-top .cta-wrapper__content {
  padding-top: 0;
}
.cta-wrapper--margin--no-bottom .cta-wrapper__content {
  padding-bottom: 0;
}
.cta-wrapper--inner-bgcolor--darker-white .cta-wrapper__inner {
  background-color: #E7E7E7;
}
.cta-wrapper--inner-bgcolor--light-purple .cta-wrapper__inner {
  background-color: #EDEAEF;
}
.cta-wrapper--inner-bgcolor--light-purple .cta-wrapper__inner .text-display__body {
  color: #000;
}
.cta-wrapper--inner-bgcolor--near-white .cta-wrapper__inner {
  background-color: #EDEDED;
}
.cta-wrapper--inner-bgcolor--white .cta-wrapper__inner {
  background-color: #fff;
}
.cta-wrapper--inner-bgcolor--header-purple .cta-wrapper__inner {
  color: #fff;
  background: #2f0147;
}
.cta-wrapper--inner-bgcolor--header-purple .cta-wrapper__inner .text-display__header {
  color: #fff;
}
.cta-wrapper--inner-bgcolor--header-purple .cta-wrapper__inner .text-display__subheader {
  color: #fff;
}
.cta-wrapper--inner-bgcolor--header-purple .cta-wrapper__inner .text-display__subsubheader {
  color: #fff;
}
.cta-wrapper--inner-bgcolor--header-purple .cta-wrapper__inner .text-display__body {
  color: #fff;
}
.cta-wrapper--bgcolor--darker-white {
  background-color: #E7E7E7;
}
.cta-wrapper--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.cta-wrapper--bgcolor--near-white {
  background-color: #EDEDED;
}
.cta-wrapper--bgcolor--header-purple {
  background: #2f0147;
  color: #fff;
}
.cta-wrapper--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.cta-wrapper--bgcolor--header-purple .text-display__subheader {
  color: #fff;
}
.cta-wrapper--bgcolor--header-purple .text-display__subsubheader {
  color: #fff;
}
.cta-wrapper--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.cta-wrapper--bgcolor--split--near-white {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
}
.cta-wrapper--bgcolor--split--light-purple {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
}
@media (max-width: 1024px) {
  .cta-wrapper {
    padding: 1em;
  }
}
.cta-wrapper__inner {
  padding: 3em 0;
}
@media (max-width: 860px) {
  .cta-wrapper__inner {
    padding: 0;
  }
}
.cta-wrapper__content {
  background-color: #fff;
  border-radius: 1.1em;
  display: grid;
}
@media (min-width: 861px) {
  .cta-wrapper__content {
    padding: 3em 5em;
  }
}
@media (max-width: 860px) {
  .cta-wrapper__content {
    border-radius: 0.5em;
  }
}
@media (min-width: 861px) {
  .cta-wrapper .cta-wrapper__content {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
}
.cta-wrapper .grid-display {
  grid-template-columns: max-content 4fr 2fr;
  color: #000;
}
@media (min-width: 861px) and (max-width: 1024px) {
  .cta-wrapper .grid-display {
    gap: 2em;
  }
  .cta-wrapper .grid-display .text-display__ctas a {
    white-space: nowrap;
  }
}
@media (max-width: 860px) {
  .cta-wrapper .grid-display {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-wrapper .grid-display .grid-display__item:nth-of-type(1) {
    order: 2;
    text-align: center;
  }
  .cta-wrapper .grid-display .grid-display__item:nth-of-type(2) {
    order: 1;
    text-align: center;
  }
  .cta-wrapper .grid-display .grid-display__item:nth-of-type(3) {
    order: 3;
    text-align: center;
  }
}
.cta-wrapper .grid-display__item {
  display: flex;
  align-items: center;
}
@media (max-width: 860px) {
  .cta-wrapper .grid-display__item {
    justify-content: center;
    padding: 0;
  }
}
@media (min-width: 861px) {
  .cta-wrapper .grid-display__item--desktop--right {
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 1385px) and (min-width: 861px) {
  .cta-wrapper .text-display__cta {
    font-size: 1.1em;
  }
}
.cta-wrapper .text-display__ctas {
  margin: 1em 0;
}
.cta-wrapper .text-display__header {
  color: #2f0147;
}
.cta-wrapper .text-display__body {
  color: #000;
}
.cta-wrapper .text-display__ctas {
  margin-top: 0;
}
.cta-wrapper .grid-display__item__visual {
  max-width: initial;
  margin: unset;
}

.table-wrapper {
  display: grid;
  grid-template-columns: 1fr;
}
@media (max-width: 860px) {
  .table-wrapper__header-content {
    padding-bottom: 3em;
  }
}
.table-wrapper__header-content__inner {
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1280px) {
  .table-wrapper__header-content__inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .table-wrapper__header-content__inner {
    width: 100%;
  }
}
.table-wrapper__header-content__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .table-wrapper__header-content__content {
    padding: 2em 1.5em;
  }
}
.table-wrapper__header-content--padding--min .table-wrapper__header-content__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.table-wrapper__header-content--padding--min-top .table-wrapper__header-content__content {
  padding-top: 1em;
}
.table-wrapper__header-content--padding--min-bottom .table-wrapper__header-content__content {
  padding-bottom: 1em;
}
.table-wrapper__header-content--padding--med .table-wrapper__header-content__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.table-wrapper__header-content--padding--med-top .table-wrapper__header-content__content {
  padding-top: 2em;
}
.table-wrapper__header-content--padding--med-bottom .table-wrapper__header-content__content {
  padding-bottom: 2em;
}
.table-wrapper__header-content--padding--no .table-wrapper__header-content__content {
  padding-top: 0;
  padding-bottom: 0;
}
.table-wrapper__header-content--padding--no-top .table-wrapper__header-content__content {
  padding-top: 0;
}
.table-wrapper__header-content--padding--no-bottom .table-wrapper__header-content__content {
  padding-bottom: 0;
}
.table-wrapper__header-content--margin--min .table-wrapper__header-content__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.table-wrapper__header-content--margin--min-top .table-wrapper__header-content__content {
  padding-top: 1em;
}
.table-wrapper__header-content--margin--min-bottom .table-wrapper__header-content__content {
  padding-bottom: 1em;
}
.table-wrapper__header-content--margin--med .table-wrapper__header-content__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.table-wrapper__header-content--margin--med-top .table-wrapper__header-content__content {
  padding-top: 2em;
}
.table-wrapper__header-content--margin--med-bottom .table-wrapper__header-content__content {
  padding-bottom: 2em;
}
.table-wrapper__header-content--margin--no .table-wrapper__header-content__content {
  padding-top: 0;
  padding-bottom: 0;
}
.table-wrapper__header-content--margin--no-top .table-wrapper__header-content__content {
  padding-top: 0;
}
.table-wrapper__header-content--margin--no-bottom .table-wrapper__header-content__content {
  padding-bottom: 0;
}
.table-wrapper__header-content--inner-bgcolor--darker-white .table-wrapper__header-content__inner {
  background-color: #E7E7E7;
}
.table-wrapper__header-content--inner-bgcolor--light-purple .table-wrapper__header-content__inner {
  background-color: #EDEAEF;
}
.table-wrapper__header-content--inner-bgcolor--light-purple .table-wrapper__header-content__inner .text-display__body {
  color: #000;
}
.table-wrapper__header-content--inner-bgcolor--near-white .table-wrapper__header-content__inner {
  background-color: #EDEDED;
}
.table-wrapper__header-content--inner-bgcolor--white .table-wrapper__header-content__inner {
  background-color: #fff;
}
.table-wrapper__header-content--inner-bgcolor--header-purple .table-wrapper__header-content__inner {
  color: #fff;
  background: #2f0147;
}
.table-wrapper__header-content--inner-bgcolor--header-purple .table-wrapper__header-content__inner .text-display__header {
  color: #fff;
}
.table-wrapper__header-content--inner-bgcolor--header-purple .table-wrapper__header-content__inner .text-display__subheader {
  color: #fff;
}
.table-wrapper__header-content--inner-bgcolor--header-purple .table-wrapper__header-content__inner .text-display__subsubheader {
  color: #fff;
}
.table-wrapper__header-content--inner-bgcolor--header-purple .table-wrapper__header-content__inner .text-display__body {
  color: #fff;
}
.table-wrapper__header-content--bgcolor--darker-white {
  background-color: #E7E7E7;
}
.table-wrapper__header-content--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.table-wrapper__header-content--bgcolor--near-white {
  background-color: #EDEDED;
}
.table-wrapper__header-content--bgcolor--header-purple {
  background: #2f0147;
  color: #fff;
}
.table-wrapper__header-content--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.table-wrapper__header-content--bgcolor--header-purple .text-display__subheader {
  color: #fff;
}
.table-wrapper__header-content--bgcolor--header-purple .text-display__subsubheader {
  color: #fff;
}
.table-wrapper__header-content--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.table-wrapper__header-content--bgcolor--split--near-white {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
}
.table-wrapper__header-content--bgcolor--split--light-purple {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
}
@media (min-width: 861px) {
  .table-wrapper__header-content__content {
    max-width: 60%;
  }
}
@media only screen and (max-width: 1280px) and (min-width: 860px) {
  .table-wrapper__header-content__content {
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 6em;
  }
}
.table-wrapper__header-content .text-display {
  margin: unset;
}
@media (min-width: 861px) {
  .table-wrapper__header-content .text-display__body {
    max-width: 75%;
  }
}
.table-wrapper__main {
  color: #fff;
}
.table-wrapper__main__inner {
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1280px) {
  .table-wrapper__main__inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .table-wrapper__main__inner {
    width: 100%;
  }
}
.table-wrapper__main__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .table-wrapper__main__content {
    padding: 2em 1.5em;
  }
}
.table-wrapper__main--padding--min .table-wrapper__main__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.table-wrapper__main--padding--min-top .table-wrapper__main__content {
  padding-top: 1em;
}
.table-wrapper__main--padding--min-bottom .table-wrapper__main__content {
  padding-bottom: 1em;
}
.table-wrapper__main--padding--med .table-wrapper__main__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.table-wrapper__main--padding--med-top .table-wrapper__main__content {
  padding-top: 2em;
}
.table-wrapper__main--padding--med-bottom .table-wrapper__main__content {
  padding-bottom: 2em;
}
.table-wrapper__main--padding--no .table-wrapper__main__content {
  padding-top: 0;
  padding-bottom: 0;
}
.table-wrapper__main--padding--no-top .table-wrapper__main__content {
  padding-top: 0;
}
.table-wrapper__main--padding--no-bottom .table-wrapper__main__content {
  padding-bottom: 0;
}
.table-wrapper__main--margin--min .table-wrapper__main__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.table-wrapper__main--margin--min-top .table-wrapper__main__content {
  padding-top: 1em;
}
.table-wrapper__main--margin--min-bottom .table-wrapper__main__content {
  padding-bottom: 1em;
}
.table-wrapper__main--margin--med .table-wrapper__main__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.table-wrapper__main--margin--med-top .table-wrapper__main__content {
  padding-top: 2em;
}
.table-wrapper__main--margin--med-bottom .table-wrapper__main__content {
  padding-bottom: 2em;
}
.table-wrapper__main--margin--no .table-wrapper__main__content {
  padding-top: 0;
  padding-bottom: 0;
}
.table-wrapper__main--margin--no-top .table-wrapper__main__content {
  padding-top: 0;
}
.table-wrapper__main--margin--no-bottom .table-wrapper__main__content {
  padding-bottom: 0;
}
.table-wrapper__main--inner-bgcolor--darker-white .table-wrapper__main__inner {
  background-color: #E7E7E7;
}
.table-wrapper__main--inner-bgcolor--light-purple .table-wrapper__main__inner {
  background-color: #EDEAEF;
}
.table-wrapper__main--inner-bgcolor--light-purple .table-wrapper__main__inner .text-display__body {
  color: #000;
}
.table-wrapper__main--inner-bgcolor--near-white .table-wrapper__main__inner {
  background-color: #EDEDED;
}
.table-wrapper__main--inner-bgcolor--white .table-wrapper__main__inner {
  background-color: #fff;
}
.table-wrapper__main--inner-bgcolor--header-purple .table-wrapper__main__inner {
  color: #fff;
  background: #2f0147;
}
.table-wrapper__main--inner-bgcolor--header-purple .table-wrapper__main__inner .text-display__header {
  color: #fff;
}
.table-wrapper__main--inner-bgcolor--header-purple .table-wrapper__main__inner .text-display__subheader {
  color: #fff;
}
.table-wrapper__main--inner-bgcolor--header-purple .table-wrapper__main__inner .text-display__subsubheader {
  color: #fff;
}
.table-wrapper__main--inner-bgcolor--header-purple .table-wrapper__main__inner .text-display__body {
  color: #fff;
}
.table-wrapper__main--bgcolor--darker-white {
  background-color: #E7E7E7;
}
.table-wrapper__main--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.table-wrapper__main--bgcolor--near-white {
  background-color: #EDEDED;
}
.table-wrapper__main--bgcolor--header-purple {
  background: #2f0147;
  color: #fff;
}
.table-wrapper__main--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.table-wrapper__main--bgcolor--header-purple .text-display__subheader {
  color: #fff;
}
.table-wrapper__main--bgcolor--header-purple .text-display__subsubheader {
  color: #fff;
}
.table-wrapper__main--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.table-wrapper__main--bgcolor--split--near-white {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
}
.table-wrapper__main--bgcolor--split--light-purple {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
}
@media (min-width: 861px) {
  .table-wrapper__main__cta .text-display__subheader--alt {
    font-size: 1.8em;
    border-left: 5px solid #FEBF01;
    padding-left: 0.25em;
  }
}
@media (max-width: 860px) {
  .table-wrapper__main__cta .text-display__subheader--alt {
    border-top: 3px solid #FEBF01;
    padding-top: 0.25em;
    font-size: 1.5em;
  }
}
.table-wrapper__main__content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 5em;
}
@media (max-width: 860px) {
  .table-wrapper__main__content {
    grid-template-columns: 1fr;
    gap: 1em;
    padding: 1em;
    grid-template-areas: "tables" "cta";
    padding-bottom: 2em;
  }
}
@media only screen and (max-width: 1280px) and (min-width: 860px) {
  .table-wrapper__main__content {
    padding: 5em 1.5em;
    gap: 3em;
  }
}
@media (max-width: 860px) {
  .table-wrapper__main .text-display__subheader--alt {
    max-width: 95%;
    margin: 0 auto;
    text-align: center;
  }
}
.table-wrapper__main .text-display__body {
  color: #fff;
}
.table-wrapper__main .table-wrapper__main__cta {
  display: flex;
  align-items: center;
}
.table-wrapper__main__tables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1em;
}
@media (max-width: 860px) {
  .table-wrapper__main__tables {
    grid-template-areas: "table1 table2 table3" "header";
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    grid-area: tables;
  }
}
@media (min-width: 861px) {
  .table-wrapper__main__tables {
    margin-top: -11em;
  }
}
@media (max-width: 860px) {
  .table-wrapper__main__tables {
    margin-top: -4em;
  }
}
.table-wrapper__main .table-wrapper__table {
  padding: 0em;
  text-align: center;
}
.table-wrapper__main .table-wrapper__table .table-wrapper__table-items {
  display: grid;
  grid-template-rows: 120px repeat(11, 50px);
  line-height: 1em;
}
@media (max-width: 860px) {
  .table-wrapper__main .table-wrapper__table .table-wrapper__table-items {
    grid-template-rows: 70px repeat(11, 60px);
  }
}
.table-wrapper__main .table-wrapper__table .table-wrapper__table-item-text {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 860px) {
  .table-wrapper__main .table-wrapper__table .table-wrapper__table-item-text img {
    width: 25px;
    height: 25px;
  }
}
.table-wrapper__main .table-wrapper__table--large {
  border-radius: 1em;
  border-top-left-radius: 1em;
  background-color: #fff;
  color: #000;
}
@media (min-width: 861px) {
  .table-wrapper__main .table-wrapper__table--large {
    overflow: hidden;
  }
}
.table-wrapper__main .table-wrapper__table--large .table-wrapper__table-item--header {
  border-top-right-radius: 1em;
  border-top-left-radius: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.table-wrapper__main .table-wrapper__table--large .table-wrapper__table-item:nth-of-type(even) {
  background-color: #EDEAEF;
}
.table-wrapper__main .table-wrapper__table-furkin {
  font-weight: bold;
}
.table-wrapper__main .table-wrapper__table-furkin .table-wrapper__table-item--header {
  background-color: #C656A1;
  border: 0;
}
.table-wrapper__main .table-wrapper__table-furkin .table-wrapper__table-item--header img {
  max-height: 100%;
  width: auto;
  padding: 1em;
}
@media only screen and (max-width: 1280px) and (min-width: 860px) {
  .table-wrapper__main .table-wrapper__table-furkin .table-wrapper__table-item--header img {
    max-width: 100%;
    height: auto;
    padding: 0.2em;
  }
}
@media (max-width: 860px) {
  .table-wrapper__main .table-wrapper__table-furkin .table-wrapper__table-item--header img {
    max-width: 100%;
    height: auto;
    padding: 0.4em;
  }
}
@media (max-width: 860px) {
  .table-wrapper__main .table-wrapper__table-furkin .table-wrapper__table-item {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 861px) {
  .table-wrapper__main .table-wrapper__table-competitor .table-wrapper__table-item--header {
    font-size: 1.9em;
    line-height: 1.2em;
  }
}
.table-wrapper__main .table-wrapper__table-competitor .table-wrapper__table-item:nth-of-type(even) {
  background-color: #EDEAEF;
}
.table-wrapper__main .table-wrapper__legend {
  grid-row-start: 2;
  grid-column: 2/span 2;
  display: flex;
  gap: 2em;
  padding: 0.5em 0;
}
@media (max-width: 860px) {
  .table-wrapper__main .table-wrapper__legend {
    grid-column: 1/span 3;
    gap: 1em;
    justify-content: center;
  }
}
.table-wrapper__main .table-wrapper__legend__key {
  display: flex;
  justify-content: center;
  align-items: center;
}
.table-wrapper__main .table-wrapper__legend__key__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
}
.table-wrapper__main .table-wrapper__legend__key--icon img {
  width: 30px;
}
@media (max-width: 860px) {
  .table-wrapper__main .table-wrapper__legend__key--icon img {
    width: 25px;
    height: 25px;
  }
}
.table-wrapper__main .table-wrapper__legend__key--dot {
  width: 0.4em;
  background-color: #fff;
  height: 0.4em;
  border-radius: 50%;
}
.table-wrapper__main .table-wrapper__table-item {
  padding: 0.5em;
}
.table-wrapper__main .table-wrapper__side-table {
  text-align: right;
}
@media (max-width: 860px) {
  .table-wrapper__main .table-wrapper__side-table .table-wrapper__table-item {
    background-color: #fff;
    color: #000;
  }
  .table-wrapper__main .table-wrapper__side-table .table-wrapper__table-item:nth-of-type(even) {
    background-color: #EDEAEF;
  }
}
@media (max-width: 860px) {
  .table-wrapper__main .table-wrapper__side-table .table-wrapper__table-item--header {
    border: 0;
    background-color: transparent;
  }
}
.table-wrapper__main .table-wrapper__side-table .table-wrapper__table-item-text {
  justify-content: flex-end;
}
@media (max-width: 860px) {
  .table-wrapper .text-display__ctas {
    justify-content: center;
  }
}

.accordion-wrapper__inner {
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1280px) {
  .accordion-wrapper__inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .accordion-wrapper__inner {
    width: 100%;
  }
}
.accordion-wrapper__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .accordion-wrapper__content {
    padding: 2em 1.5em;
  }
}
.accordion-wrapper--padding--min .accordion-wrapper__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.accordion-wrapper--padding--min-top .accordion-wrapper__content {
  padding-top: 1em;
}
.accordion-wrapper--padding--min-bottom .accordion-wrapper__content {
  padding-bottom: 1em;
}
.accordion-wrapper--padding--med .accordion-wrapper__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.accordion-wrapper--padding--med-top .accordion-wrapper__content {
  padding-top: 2em;
}
.accordion-wrapper--padding--med-bottom .accordion-wrapper__content {
  padding-bottom: 2em;
}
.accordion-wrapper--padding--no .accordion-wrapper__content {
  padding-top: 0;
  padding-bottom: 0;
}
.accordion-wrapper--padding--no-top .accordion-wrapper__content {
  padding-top: 0;
}
.accordion-wrapper--padding--no-bottom .accordion-wrapper__content {
  padding-bottom: 0;
}
.accordion-wrapper--margin--min .accordion-wrapper__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.accordion-wrapper--margin--min-top .accordion-wrapper__content {
  padding-top: 1em;
}
.accordion-wrapper--margin--min-bottom .accordion-wrapper__content {
  padding-bottom: 1em;
}
.accordion-wrapper--margin--med .accordion-wrapper__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.accordion-wrapper--margin--med-top .accordion-wrapper__content {
  padding-top: 2em;
}
.accordion-wrapper--margin--med-bottom .accordion-wrapper__content {
  padding-bottom: 2em;
}
.accordion-wrapper--margin--no .accordion-wrapper__content {
  padding-top: 0;
  padding-bottom: 0;
}
.accordion-wrapper--margin--no-top .accordion-wrapper__content {
  padding-top: 0;
}
.accordion-wrapper--margin--no-bottom .accordion-wrapper__content {
  padding-bottom: 0;
}
.accordion-wrapper--inner-bgcolor--darker-white .accordion-wrapper__inner {
  background-color: #E7E7E7;
}
.accordion-wrapper--inner-bgcolor--light-purple .accordion-wrapper__inner {
  background-color: #EDEAEF;
}
.accordion-wrapper--inner-bgcolor--light-purple .accordion-wrapper__inner .text-display__body {
  color: #000;
}
.accordion-wrapper--inner-bgcolor--near-white .accordion-wrapper__inner {
  background-color: #EDEDED;
}
.accordion-wrapper--inner-bgcolor--white .accordion-wrapper__inner {
  background-color: #fff;
}
.accordion-wrapper--inner-bgcolor--header-purple .accordion-wrapper__inner {
  color: #fff;
  background: #2f0147;
}
.accordion-wrapper--inner-bgcolor--header-purple .accordion-wrapper__inner .text-display__header {
  color: #fff;
}
.accordion-wrapper--inner-bgcolor--header-purple .accordion-wrapper__inner .text-display__subheader {
  color: #fff;
}
.accordion-wrapper--inner-bgcolor--header-purple .accordion-wrapper__inner .text-display__subsubheader {
  color: #fff;
}
.accordion-wrapper--inner-bgcolor--header-purple .accordion-wrapper__inner .text-display__body {
  color: #fff;
}
.accordion-wrapper--bgcolor--darker-white {
  background-color: #E7E7E7;
}
.accordion-wrapper--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.accordion-wrapper--bgcolor--near-white {
  background-color: #EDEDED;
}
.accordion-wrapper--bgcolor--header-purple {
  background: #2f0147;
  color: #fff;
}
.accordion-wrapper--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.accordion-wrapper--bgcolor--header-purple .text-display__subheader {
  color: #fff;
}
.accordion-wrapper--bgcolor--header-purple .text-display__subsubheader {
  color: #fff;
}
.accordion-wrapper--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.accordion-wrapper--bgcolor--split--near-white {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
}
.accordion-wrapper--bgcolor--split--light-purple {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
}
.accordion-wrapper__content {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1em;
}
.accordion-wrapper.accordion-wrapper--bgcolor--light-purple .accordion__item__button[aria-expanded=true] {
  background-color: #fff;
  background-color: #f6f5f7;
}
.accordion-wrapper.accordion-wrapper--bgcolor--light-purple .accordion__item__content {
  background-color: #fff;
}

.accordion__item__button {
  color: #000;
  position: relative;
  display: block;
  padding: 0.5em 1em;
  border: 0;
  outline: none;
  width: 100%;
  text-align: left;
  transition: 0.25s;
  font-family: "proxima-nova", sans-serif;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5em;
  display: grid;
  grid-template-columns: 5fr 1fr;
  align-items: center;
  transition: 0.5s ease-out;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.accordion__item__button:hover, .accordion__item__button:focus {
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.16);
}
.accordion__item__button[aria-expanded=false] .accordion__icon-wrapper {
  background-color: #FEBF01;
}
.accordion__item__button .accordion__icon-wrapper {
  background-color: #C656A1;
  width: 35px;
  height: 35px;
  position: relative;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (max-width: 860px) {
  .accordion__item__button .accordion__icon-wrapper {
    width: 25px;
    height: 25px;
  }
}
.accordion__item__button .accordion__icon {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}
.accordion__item__button .accordion__icon svg {
  transform: rotate(90deg);
  width: 20px;
  height: auto;
  display: block;
}
@media (max-width: 860px) {
  .accordion__item__button .accordion__icon svg {
    width: 15px;
    height: 15px;
  }
}
.accordion__item__button .accordion__icon i {
  color: #fff;
  padding: 0.2em;
  border-radius: 50%;
}
.accordion__item__button[aria-expanded=true] {
  border-top-right-radius: 1em;
  border-top-left-radius: 1em;
  font-weight: 700;
  background-color: #EDEAEF;
  font-weight: bold;
}
.accordion__item__button[aria-expanded=true] .accordion__icon svg {
  transform: rotate(-90deg);
  transition: all 0.2s linear;
}
.accordion__item__button[aria-expanded=true] + .accordion__item__content {
  opacity: 1;
  max-height: 1500px;
  transition: all 0.5s ease-in;
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
@media (max-width: 860px) {
  .accordion__item__button[aria-expanded=true] + .accordion__item__content {
    max-height: none;
  }
}
.accordion__item__content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: 0.5s ease-out;
}
.accordion__item__content a {
  color: #2f0147;
  border-bottom: 1px solid #c656a1;
  text-decoration: none;
}
.accordion__item .text-display {
  max-width: 100%;
  padding: 2em 1em;
}

.button {
  text-decoration: none;
  padding: 0.5em 1.5em;
  border-radius: 2em;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4em;
  text-decoration: none;
}
.button--yellow {
  color: #000;
  background-color: #FEBF01;
}

.body-container--blog-index .row-fluid-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}

.body-container--blog-post .blog-wrapper {
  position: relative;
}
.body-container--blog-post .taglist {
  line-height: 30px;
  margin: 0;
}
.body-container--blog-post p {
  margin: 0 0 1.4rem;
}
@media (min-width: 861px) {
  .body-container--blog-post .blog-social-sidebar {
    position: sticky;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    float: left;
  }
}
@media (max-width: 860px) {
  .body-container--blog-post .blog-social-sidebar {
    padding: 0 1.5em;
    padding-top: 0.5em;
  }
}
.body-container--blog-post .blog-social-sidebar .blog-social__icons {
  display: flex;
  flex-direction: column;
}
@media (max-width: 860px) {
  .body-container--blog-post .blog-social-sidebar .blog-social__icons {
    flex-direction: row;
  }
}
.body-container--blog-post .blog-social-sidebar .blog-social__icons a {
  width: fit-content;
}

@media (max-width: 860px) {
  .postmeta {
    padding: 2em 1.5em;
    padding-bottom: 1em;
  }
}
@media (min-width: 861px) {
  .postmeta {
    padding: 1em 3em;
  }
}

.blog-wrapper, .postmeta {
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 861px) {
  .hs-blog-post #main-content {
    margin-top: 0 !important;
  }
}

.blog-filter {
  margin-bottom: 2em;
  position: relative;
}
@media (max-width: 860px) {
  .blog-filter {
    padding: 1.5em 2em;
  }
}
.blog-filter #blog-filter:focus-visible {
  border: 1px solid blue;
}
.blog-filter #blog-filter i {
  transition: 0.4s;
}
.blog-filter #blog-filter[aria-expanded=true] i {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(180deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.blog-filter__label {
  font-weight: 700;
}
.blog-filter__items {
  color: #2f0147;
  display: flex;
  gap: 0.5em;
}
@media (min-width: 861px) {
  .blog-filter__items {
    flex-direction: column;
  }
}
@media (max-width: 860px) {
  .blog-filter__items {
    flex-direction: column;
    text-align: center;
  }
}
.blog-filter__subnav {
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: absolute;
  top: 100%;
  border-radius: 8px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.15s linear;
}
@media (min-width: 861px) {
  .blog-filter__subnav {
    margin-top: 0.5em;
  }
}
@media (max-width: 860px) {
  .blog-filter__subnav {
    transform: translateX(-50%);
    left: 50%;
  }
}
.blog-filter__subnav.active {
  max-height: 1000px;
}
.blog-filter__subnav h3, .blog-filter__subnav .text-display__header {
  display: none;
}
.blog-filter__subnav ul {
  list-style-type: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 1.5em;
  text-align: left;
}
.blog-filter__subnav ul a {
  transition: 0.4s;
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
}
.blog-filter__subnav ul a:hover {
  color: #c656a1;
}
.blog-filter__filter {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 860px) {
  .blog-filter__filter {
    align-items: center;
  }
}
.blog-filter__filter button {
  background-color: transparent;
  color: #2f0147;
  border: 0;
  display: flex;
  justify-content: center;
  max-width: fit-content;
  align-items: center;
  gap: 0.2em;
  padding: 0;
}
@media (min-width: 861px) {
  .blog-filter__filter button {
    justify-content: flex-start;
  }
}

.blog-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-columns: auto;
  gap: 1.5em;
  padding-bottom: 3em;
}
@media (max-width: 860px) {
  .blog-index {
    justify-content: center;
    grid-template-columns: auto;
    padding-bottom: 1.5em;
  }
}
.blog-index .blog-index__post {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 8px;
  max-width: 400px;
  color: #000;
}
.blog-index .blog-index__post h2 {
  color: #000;
}
.blog-index .blog-index__post a {
  font-family: "rooney-sans", sans-serif;
  text-decoration: none;
  color: #000;
  font-weight: 700;
}

.blog-post__tag-link {
  text-transform: uppercase;
  font-size: 12px;
  padding: 0.25em 0.85em;
  color: #fff;
  background: #2f0147;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.15s linear;
  text-decoration: none;
  border-bottom: unset;
}
@media (max-width: 860px) {
  .blog-post__tag-link {
    white-space: nowrap;
  }
}
.blog-post__tag-link:hover {
  color: #fff;
  background-color: #c656a1;
}

.blog__inner {
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 1280px) {
  .blog__inner {
    width: 1024px;
  }
}
@media (max-width: 1024px) {
  .blog__inner {
    width: 100%;
  }
}
.blog__content {
  padding: 5em 3em;
}
@media (max-width: 860px) {
  .blog__content {
    padding: 2em 1.5em;
  }
}
.blog--padding--min .blog__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.blog--padding--min-top .blog__content {
  padding-top: 1em;
}
.blog--padding--min-bottom .blog__content {
  padding-bottom: 1em;
}
.blog--padding--med .blog__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.blog--padding--med-top .blog__content {
  padding-top: 2em;
}
.blog--padding--med-bottom .blog__content {
  padding-bottom: 2em;
}
.blog--padding--no .blog__content {
  padding-top: 0;
  padding-bottom: 0;
}
.blog--padding--no-top .blog__content {
  padding-top: 0;
}
.blog--padding--no-bottom .blog__content {
  padding-bottom: 0;
}
.blog--margin--min .blog__content {
  padding-top: 1em;
  padding-bottom: 1em;
}
.blog--margin--min-top .blog__content {
  padding-top: 1em;
}
.blog--margin--min-bottom .blog__content {
  padding-bottom: 1em;
}
.blog--margin--med .blog__content {
  padding-top: 2em;
  padding-bottom: 2em;
}
.blog--margin--med-top .blog__content {
  padding-top: 2em;
}
.blog--margin--med-bottom .blog__content {
  padding-bottom: 2em;
}
.blog--margin--no .blog__content {
  padding-top: 0;
  padding-bottom: 0;
}
.blog--margin--no-top .blog__content {
  padding-top: 0;
}
.blog--margin--no-bottom .blog__content {
  padding-bottom: 0;
}
.blog--inner-bgcolor--darker-white .blog__inner {
  background-color: #E7E7E7;
}
.blog--inner-bgcolor--light-purple .blog__inner {
  background-color: #EDEAEF;
}
.blog--inner-bgcolor--light-purple .blog__inner .text-display__body {
  color: #000;
}
.blog--inner-bgcolor--near-white .blog__inner {
  background-color: #EDEDED;
}
.blog--inner-bgcolor--white .blog__inner {
  background-color: #fff;
}
.blog--inner-bgcolor--header-purple .blog__inner {
  color: #fff;
  background: #2f0147;
}
.blog--inner-bgcolor--header-purple .blog__inner .text-display__header {
  color: #fff;
}
.blog--inner-bgcolor--header-purple .blog__inner .text-display__subheader {
  color: #fff;
}
.blog--inner-bgcolor--header-purple .blog__inner .text-display__subsubheader {
  color: #fff;
}
.blog--inner-bgcolor--header-purple .blog__inner .text-display__body {
  color: #fff;
}
.blog--bgcolor--darker-white {
  background-color: #E7E7E7;
}
.blog--bgcolor--light-purple {
  background-color: #EDEAEF;
}
.blog--bgcolor--near-white {
  background-color: #EDEDED;
}
.blog--bgcolor--header-purple {
  background: #2f0147;
  color: #fff;
}
.blog--bgcolor--header-purple .text-display__header {
  color: #fff;
}
.blog--bgcolor--header-purple .text-display__subheader {
  color: #fff;
}
.blog--bgcolor--header-purple .text-display__subsubheader {
  color: #fff;
}
.blog--bgcolor--header-purple .text-display__body {
  color: #fff;
}
.blog--bgcolor--split--near-white {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEDED 50%);
}
.blog--bgcolor--split--light-purple {
  background: linear-gradient(0deg, #fff 49.9999%, #EDEAEF 50%);
}
.blog__content {
  padding: 3em 0;
}
@media (max-width: 860px) {
  .blog__content {
    padding: 2em 0;
  }
}
.blog .text-display__header {
  font-weight: 700;
}
@media (min-width: 861px) {
  .blog .text-display__header {
    font-size: 4.6em;
    line-height: 1.1em;
  }
}
@media (max-width: 860px) {
  .blog .text-display__header {
    font-size: 38px;
    line-height: 45px;
  }
}
.blog .text-display__subheader {
  margin: 0 0 0.5em;
}
.blog-tag-heading {
  margin: 0 0 0.5em;
}
.blog__featured {
  margin: 0 auto;
}
@media (max-width: 860px) {
  .blog__featured {
    margin: 1em;
  }
}
@media (min-width: 861px) {
  .blog__featured__title {
    padding: 1em 0;
  }
}
.blog__featured__title p {
  padding-bottom: 0.25em;
}
@media (max-width: 860px) {
  .blog__featured__title p {
    padding-bottom: 1em;
  }
}
.blog__featured__title .disclaimer a {
  color: #000;
  border-bottom: 1px solid transparent;
  transition: 0.4s;
}
.blog__featured__title .disclaimer a:hover {
  border-bottom: 1px solid #c656a1;
}
.blog__featured__title .disclaimer a i {
  color: #c656a1;
}
.blog__featured__content {
  background-color: #EDEAEF;
  border-radius: 20px;
  position: relative;
  padding: 2em;
}
.blog__featured__content .image-display {
  width: 100%;
  height: 100%;
}
.blog__featured__content .image-display img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media (min-width: 861px) {
  .blog__featured__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2em;
  }
}
@media (max-width: 860px) {
  .blog__featured__blurb {
    padding-top: 1em;
  }
}
@media (min-width: 861px) {
  .blog__featured__blurb {
    padding: 0 1em;
  }
}
.blog__featured__blurb--category {
  margin-bottom: 1em;
}
.blog__featured__blurb--title {
  font-weight: bold;
  font-family: "rooney-sans", sans-serif;
  margin-bottom: 0.25em;
}

@media (max-width: 860px) {
  .body-container--blog-post .mobileHide {
    display: none;
  }
}
@media (max-width: 860px) {
  .body-container--blog-post .newLineMobile {
    display: block;
  }
}
.body-container--blog-post .blog-post__featured-image img {
  max-height: 400px;
}
.body-container--blog-post .blog-body a {
  color: #913071;
}
.body-container--blog-post .blog_header h1 {
  font-size: 48px;
  line-height: 56px;
}
@media (max-width: 860px) {
  .body-container--blog-post .blog_header h1 {
    font-size: 30px;
    line-height: 36px;
  }
}
.body-container--blog-post h2 {
  font-weight: 400;
  font-size: 1.9em;
  line-height: 1.2em;
  margin: 0 0 0.25em;
  font-weight: 700;
}
@media (max-width: 860px) {
  .body-container--blog-post h2 {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 0.25em;
  }
}
.body-container--blog-post h3, .body-container--blog-post .text-display__header {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.2em;
  margin: 0 0 0.25em;
}
.body-container--blog-post .text-wrapper .text-display {
  max-width: unset;
}

.blog__content {
  padding-bottom: 3em;
}

.blog-related-posts__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  grid-auto-columns: auto;
  padding-bottom: 3em;
}
@media (max-width: 860px) {
  .blog-related-posts__list {
    justify-content: center;
    grid-template-columns: auto;
    padding-bottom: 1.5em;
  }
}
.blog-related-posts__list .blog-index__post-title-link, .blog-related-posts__list .blog-related-posts__title {
  color: #000;
  font-family: rooney-sans, sans-serif;
  text-decoration: none;
}
.blog-related-posts__list article {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  padding: 1.4rem 1rem;
}

.hs-pagination {
  padding-bottom: 3em;
}
.hs-pagination a {
  color: #2F0147;
  transition: 0.4s;
}
.hs-pagination a:hover {
  color: #c656a1;
}

.blog-post--box-shadow {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.12);
}
.blog-post--border-radius {
  border-radius: 20px;
}
.blog-related-posts {
  background-color: #ECEAEE;
  background-color: #f2f0f3;
}
.blog-related-posts p {
  margin: 0;
}
.blog-related-posts .text-wrapper .text-display__header.text-display--render--larger-header {
  font-size: 2.5em;
}
@media (max-width: 860px) {
  .blog-related-posts .text-wrapper .text-display__header.text-display--render--larger-header {
    font-size: 1.9em;
  }
}
@media (min-width: 861px) {
  .blog-related-posts .grid-display {
    gap: 2em;
  }
}
.blog-related-posts__post {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  border-radius: 20px;
  background-color: #fff;
}
.blog-related-posts__post > a {
  display: block;
  color: #000;
}
.blog-related-posts__post .text-display__header {
  margin: 0.25em 0;
  font-size: 1.3em;
  color: #000;
}
.blog-related-posts__post .text-display__body {
  padding: 0.25em 0;
}
.blog-related-posts__post .related-blog-tags {
  color: #c656a1;
  font-weight: 600;
  display: none;
}

* {
  box-sizing: border-box;
}

@media (max-width: 860px) {
  .hide-on-mobile {
    display: none;
  }
}

@media (min-width: 861px) {
  .hide-on-desktop {
    display: none;
  }
}

@media (max-width: 860px) {
  .mobile-new-line {
    display: block;
    width: fit-content;
    margin: auto;
  }
}

.grid-wrapper.margin-top-bottom {
  padding: 3em;
}
@media (max-width: 860px) {
  .grid-wrapper.margin-top-bottom {
    padding: 3em 1em;
  }
}
.grid-wrapper.margin-top-bottom .grid-wrapper__inner {
  border-radius: 20px;
}

.link--color--black {
  color: #000;
}
.link--underline--pink {
  text-decoration: none;
  border-bottom: 1px solid #c656a1;
}

@media (max-width: 860px) {
  .avail-jumbo-mobile-extra-padding-bottom {
    padding-bottom: 3em;
  }
}

.media-wrapper.margin-top {
  margin-top: 2em;
}

.margin-bottom {
  margin-bottom: 9em;
}

@media (min-width: 861px) {
  .grid--1fr-2fr {
    grid-template-columns: 1fr 3fr;
    gap: 2em;
  }
}
@media (max-width: 860px) {
  .grid--1fr-2fr {
    display: flex;
    flex-direction: column-reverse;
  }
}

.grid--3fr-1fr .grid-display .grid-display__item--bgcolor--header-purple {
  background-color: transparent;
  padding: 0;
}
.grid--3fr-1fr .grid-display .grid-display__item--bgcolor--header-purple .grid-display__item__text {
  background-color: #2f0147;
  border-radius: 20px;
  padding: 1.5em;
}
@media (min-width: 1281px) {
  .grid--3fr-1fr .grid-display .grid-display__item--bgcolor--header-purple .grid-display__item__text {
    padding: 2em;
  }
}
.grid--3fr-1fr .grid-display .grid-display__item--bgcolor--header-purple .grid-display__item__text .members-links {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.grid--3fr-1fr .grid-display .grid-display__item--bgcolor--header-purple .grid-display__item__text a {
  text-decoration: none;
  border-bottom: 1px solid white;
  color: white;
  transition: 0.2s;
}
.grid--3fr-1fr .grid-display .grid-display__item--bgcolor--header-purple .grid-display__item__text a:hover {
  color: #c656a1;
}
@media (min-width: 861px) {
  .grid--3fr-1fr .grid-display {
    grid-template-columns: 3fr 1fr;
    gap: 2em;
  }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .grid--3fr-1fr .grid-display {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (max-width: 1024px) {
  .eas-members--no-padding-post-cta .grid-wrapper__content__text-post {
    padding-top: 0;
  }
}

@media (min-width: 861px) {
  .eas-members--extra-padding .grid-display .grid-display__item--bgcolor--light-purple {
    padding: 3em;
  }
}

.members-grid {
  display: grid;
  grid-template-columns: max-content 3fr;
  align-items: center;
  gap: 2em;
  padding: 1em 0;
  row-gap: 0.5em;
}
@media (max-width: 860px) {
  .members-grid {
    row-gap: 2em;
    padding: 1.5em 0;
    gap: 1em;
  }
}
@media (max-width: 860px) {
  .members-grid__image {
    align-self: start;
  }
}

.dog-insurance .grid-display__item:first-of-type .grid-display__item__visual .image-display {
  justify-content: center;
}
@media (max-width: 860px) {
  .dog-insurance .grid-display__item:first-of-type .grid-display__item__visual img {
    max-height: 150px;
  }
}

@media (min-width: 861px) {
  .dog-insurance-image-small .grid-display__item__visual {
    max-width: 20%;
  }
}

@media (min-width: 861px) {
  .home--desktop-margin-top {
    margin-top: 8em;
  }
}

.border-radius {
  border-radius: 20px;
}

.about-furkin--padding-bottom {
  padding-bottom: 3em;
}

.about-furkin--grid .grid-display__item:nth-of-type(1) {
  background-color: #EDEAEF;
  border-radius: 20px;
}
@media (min-width: 861px) {
  .about-furkin--grid .grid-display__item:nth-of-type(1) {
    padding: 4em 2.5em;
  }
}
@media (max-width: 860px) {
  .about-furkin--grid .grid-display__item:nth-of-type(1) {
    padding: 2em 1.5em;
  }
}

.furkin-time-override .grid-display {
  gap: 2em;
}
@media (min-width: 861px) {
  .furkin-time-override .grid-display {
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "text1 img" "text2 img";
  }
}
@media (max-width: 860px) {
  .furkin-time-override .grid-display {
    display: flex;
    flex-direction: column;
  }
}
.furkin-time-override .grid-display .grid-display__item--bgcolor--light-purple {
  display: flex;
  justify-content: center;
  align-items: center;
}
.furkin-time-override .grid-display .grid-display__item:nth-of-type(3) {
  grid-area: img;
}

@media (min-width: 861px) {
  .jumbo--background-display--height--100 {
    min-height: 500px;
  }
}
.jumbo--background-display--height--100 .jumbo__background-display__foreground {
  height: 100%;
  right: 0;
}
.jumbo--background-display--height--100 #badge-ribbon {
  position: absolute;
  bottom: 0;
}

.hs-content-id-111749634155 footer {
  display: none;
}

@media (max-width: 860px) {
  .contact-us .grid-display__item:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.contact-us .form-wrapper {
  padding: 2em;
  border-radius: 20px;
}
.contact-us a {
  color: #000;
  text-decoration: none;
}
.contact-us__img {
  max-width: 125px;
  padding-bottom: 1.5em;
}
@media (max-width: 860px) {
  .contact-us__img {
    max-width: 150px;
  }
}

.text-display--color--pink {
  color: #953274;
}

@media (max-width: 860px) {
  .remove-bottom-text-padding-mobile .jumbo__content {
    padding-bottom: 0;
  }
  .remove-bottom-text-padding-mobile .jumbo__content .text-display {
    padding-bottom: 0;
  }
}

@media (max-width: 860px) {
  .home-jumbo-dog .jumbo__background-display__foreground {
    overflow: hidden;
  }
  .home-jumbo-dog .jumbo__background-display__foreground img {
    position: relative;
    left: 5em;
  }
}

.furkin-blog .content-wrapper {
  padding: 0 20px;
}
.furkin-blog .hs-blog-post .content-wrapper {
  padding: 0 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.furkin-blog .blog-header {
  background-color: #f8fafc;
  text-align: center;
}
.furkin-blog .blog-header__inner {
  margin: 0 auto;
  max-width: 600px;
  padding: 3.3rem 0;
}
.furkin-blog .blog-header__title {
  font-size: 2rem;
}
.furkin-blog .blog-header__subtitle {
  margin: 1rem 0 2rem;
}
.furkin-blog .blog-header__form {
  margin: 0 1rem;
}
@media screen and (min-width: 768px) {
  .furkin-blog .blog-header__form {
    margin: 0 auto;
    width: 500px;
  }
}
.furkin-blog .blog-header__author-avatar {
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  display: block;
  height: auto;
  margin: 0 auto 1.5rem;
  width: 200px;
}
.furkin-blog .blog-header__author-social-links a {
  background-color: #000;
  border-radius: 50%;
  display: inline-block;
  height: 40px;
  margin: 0 5px;
  position: relative;
  width: 40px;
}
.furkin-blog .blog-header__author-social-links a:hover {
  background-color: #494a52;
}
.furkin-blog .blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
}
.furkin-blog .blog-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 3.3rem 0;
}
.furkin-blog .blog-index:after {
  -webkit-box-flex: 1;
  content: "";
  -ms-flex: auto;
  flex: auto;
}
.furkin-blog .blog-index__tag-header {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  padding: 1rem;
}
.furkin-blog .blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}
.furkin-blog .blog-index__tag-heading {
  border-bottom: 3px solid #d1d6dc;
  padding-bottom: 1rem;
}
.furkin-blog .blog-index__post {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .furkin-blog .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 1000px) {
  .furkin-blog .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
  }
}
@media screen and (min-width: 768px) {
  .furkin-blog .blog-index__post--large {
    -webkit-box-flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    justify-items: space-between;
  }
}
.furkin-blog .blog-index__post-image {
  height: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .furkin-blog .blog-index__post-content--large, .furkin-blog .blog-index__post-image-wrapper--large {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 48%;
    flex: 1 1 48%;
  }
  .furkin-blog .blog-index__post-content--large {
    padding-left: 2rem;
  }
  .furkin-blog .blog-index__post-content--full-width {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding-left: 0;
  }
}
.furkin-blog .blog-index__post-content h2 {
  margin: 0.5rem 0;
}
.furkin-blog .blog-index__post-content--small h2 {
  font-size: 1.25rem;
}
.furkin-blog .blog-index__post-content p {
  font-family: Lato, sans-serif;
}
.furkin-blog .blog-index__post-content a {
  color: #494a52;
}
.furkin-blog .blog-pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Lato, sans-serif;
  justify-content: center;
  margin-bottom: 3.3rem;
  text-align: center;
}
.furkin-blog .blog-pagination__link {
  border: 2px solid transparent;
  border-radius: 7px;
  color: #494a52;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  margin: 0 0.1rem;
  padding: 0.25rem 0.4rem;
  text-decoration: none;
}
.furkin-blog .blog-pagination__link--active {
  border: 2px solid #b0c1d4;
}
.furkin-blog .blog-pagination__link:focus, .furkin-blog .blog-pagination__link:hover {
  text-decoration: none;
}
.furkin-blog .blog-pagination__next-link, .furkin-blog .blog-pagination__prev-link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.furkin-blog .blog-pagination__prev-link {
  margin-right: 0.25rem;
  text-align: right;
}
.furkin-blog .blog-pagination__next-link {
  margin-left: 0.25rem;
  text-align: left;
}
.furkin-blog .blog-pagination__next-link--disabled, .furkin-blog .blog-pagination__prev-link--disabled {
  color: #b0c1d4;
  cursor: default;
  pointer-events: none;
}
.furkin-blog .blog-pagination__next-link svg, .furkin-blog .blog-pagination__prev-link svg {
  fill: #494a52;
  margin: 0 5px;
}
.furkin-blog .blog-pagination__next-link--disabled svg, .furkin-blog .blog-pagination__prev-link--disabled svg {
  fill: #b0c1d4;
}
.furkin-blog .blog-pagination__number-link:focus, .furkin-blog .blog-pagination__number-link:hover {
  border: 2px solid #b0c1d4;
}
.furkin-blog .blog-post {
  margin: 0 auto;
  max-width: 960px;
  padding: 3.3rem 0;
}
.furkin-blog .blog-post h1 {
  font-size: 1.6rem;
}
.furkin-blog .blog-post__meta {
  margin: 1rem 0;
}
.furkin-blog .blog-post__meta a {
  color: #494a52;
  text-decoration: underline;
}
.furkin-blog .blog-post__tags {
  color: #000;
  font-family: Lato, sans-serif;
}
.furkin-blog .blog-post__tags svg {
  height: auto;
  margin-right: 10px;
  width: 15px;
}
.furkin-blog .blog-post__tag-link {
  color: #000;
  font-size: 0.8rem;
}
.furkin-blog .blog-related-posts {
  background-color: #f8fafc;
  margin-top: 3rem;
  padding: 2rem 0;
}
.furkin-blog .blog-related-posts h2 {
  text-align: center;
}
.furkin-blog .blog-related-posts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.furkin-blog .blog-related-posts__post {
  -webkit-box-flex: 0;
  color: #494a52;
  display: block;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .furkin-blog .blog-related-posts__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 1000px) {
  .furkin-blog .blog-related-posts__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
  }
}
.furkin-blog .blog-related-posts__image {
  height: auto;
  max-width: 100%;
}
.furkin-blog .blog-related-posts__title {
  margin: 1rem 0 0.5rem;
}
.furkin-blog .blog-related-posts__title a {
  font-family: "rooney-sans", sans-serif;
  font-weight: 700;
}
.furkin-blog .blog-related-posts__title a {
  color: #494a52;
}
.furkin-blog .blog-comments {
  margin: 0 auto;
  max-width: 680px;
}
.furkin-blog .blog-comments form {
  max-width: 100%;
}
.furkin-blog .blog-comments .hs-submit {
  text-align: center;
}
.furkin-blog .blog-comments .hs-button {
  background-color: transparent;
  border: 2px solid #494a52;
  color: #494a52;
}
.furkin-blog .blog-comments .hs-button:hover {
  background-color: #494a52;
  color: #fff;
}
.furkin-blog .blog-comments .comment-reply-to {
  border: 0;
}
.furkin-blog .blog-comments .comment-reply-to:hover {
  background-color: transparent;
  color: #494a52;
  text-decoration: underline;
}
.furkin-blog .blog-header {
  align-items: center;
  background: none;
  display: flex;
  height: 250px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 812px) {
  .furkin-blog .blog-header {
    height: 450px;
  }
}
.furkin-blog .blog-header h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  text-align: left;
}
.furkin-blog .blog-header__inner {
  max-width: 100%;
  padding: 30px;
  width: 1240px;
}
.furkin-blog .blog-header__subtitle {
  display: none;
}
.furkin-blog .blog-header #hs_cos_wrapper_blog-featured-img {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.furkin-blog .blog-header #hs_cos_wrapper_blog-featured-img > span {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
}
.furkin-blog .blog-header img {
  filter: brightness(0.7);
  height: 100% !important;
  object-fit: cover;
  object-position: right;
  width: 100% !important;
}
.furkin-blog .body-container--blog-post .blog-header img {
  object-position: center;
}
.furkin-blog .blog-index-thumb-link {
  aspect-ratio: 2/1;
  display: block;
}
.furkin-blog .blog-index-thumb-link img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.furkin-blog .blog-tag-filter__menu-link--active-item:after {
  background-color: #2f0147;
}
.furkin-blog .blog-pagination__link--active:after, .furkin-blog .blog-pagination__next-link:after, .furkin-blog .blog-pagination__prev-link:after {
  background-color: #2f0147;
}
.furkin-blog .blog-post__author {
  background-color: #3a324b;
}
.furkin-blog #comments-listing .comment-reply-to {
  color: #0270e0;
}
.furkin-blog #comments-listing .comment-reply-to:focus, .furkin-blog #comments-listing .comment-reply-to:hover {
  color: #0048b8;
}
.furkin-blog #comments-listing .comment-reply-to:active {
  color: #2a98ff;
}
.furkin-blog .blog-index {
  display: grid;
  gap: 1.618em;
}
.furkin-blog .blog-index article p:last-child {
  margin-bottom: 0;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .furkin-blog .blog-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1140px) {
  .furkin-blog .blog-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.furkin-blog .blog-index__post {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: block;
  padding: 0.809em;
}
.furkin-blog .blog-index-thumb-link, .furkin-blog .blog-related-posts__post-image-wrapper {
  aspect-ratio: 2/1;
  border-radius: 20px;
  clip-path: content-box;
  display: block;
  overflow: hidden;
}
.furkin-blog :is(.blog-index__post, .blog-related-posts__post) img {
  border-radius: 20px;
  object-fit: cover;
  transition: 0.3s;
}
.furkin-blog :is(.blog-index__post, .blog-related-posts__post) img.zoom, .furkin-blog :is(.blog-index__post, .blog-related-posts__post) img:hover {
  transform: scale(1.2);
}
.furkin-blog :is(.blog-index__post-content, .blog-related-posts__content) > * a {
  color: #2f0147;
}
.furkin-blog :is(.blog-index__post-content, .blog-related-posts__content) > * a:hover {
  color: #c656a1;
  text-decoration: none;
}
.furkin-blog .blog-index__post--large img.zoom, .furkin-blog .blog-index__post--large img:hover {
  transform: scale(1.15);
}
.furkin-blog .blog-index__post--large {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.618em;
  grid-column: 1/-1;
  position: relative;
  z-index: 50;
}
.furkin-blog .blog-index__post-content--large {
  padding-left: 0;
}
.furkin-blog .body-container .blog-post {
  margin-top: 3.3rem !important;
  padding: 1.618em;
}
.furkin-blog .blog-post, .furkin-blog .blog-related-posts__post {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  margin: 0;
  padding: 0.809em;
  padding: 30px;
  position: relative;
  z-index: 55555555;
}
@media (max-width: 860px) {
  .furkin-blog .blog-post, .furkin-blog .blog-related-posts__post {
    z-index: unset;
  }
}
.furkin-blog .hs-blog-post h1 {
  margin-bottom: 0.809em;
}
.furkin-blog .hs-blog-post h2 + h3, .furkin-blog .hs-blog-post h2 + .text-display__header {
  margin-top: 20px;
}
.furkin-blog .social-share-block {
  align-items: center;
  display: flex;
  gap: 8px;
}
.furkin-blog #hs_cos_wrapper_my_social_sharing {
  display: flex;
  gap: 4px;
}
.furkin-blog #hs_cos_wrapper_my_social_sharing a img {
  height: 30px !important;
  width: 30px !important;
}
.furkin-blog #hs_cos_wrapper_my_social_sharing img {
  filter: none;
  max-height: 30px !important;
  max-width: 30px !important;
}
.furkin-blog .blog-related-posts {
  background: none;
}
.furkin-blog .blog-related-posts h2 {
  color: #2f0147;
  font-size: 24px;
  text-align: left;
}
.furkin-blog .blog-related-posts__list {
  display: grid;
  gap: 1.618em;
}
.furkin-blog .blog-related-posts__list img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 640px) {
  .furkin-blog .blog-related-posts__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.furkin-blog .blog-post__tag-link {
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
  padding: 0.4045em 0.809em;
  text-transform: uppercase;
  border-bottom: unset;
}
.furkin-blog .blog-related-posts {
  margin-top: 0;
}
.furkin-blog .blog-related-posts h2 {
  margin-bottom: 0.809em;
}
.furkin-blog .body-container--blog-post .content-wrapper .content-wrapper {
  padding: 0;
}
.furkin-blog .blog-post__tags {
  font-family: var(--h-font);
  font-weight: 600;
}
.furkin-blog .blog-post__tags a:hover {
  border-color: #c656a1;
  color: #c656a1;
  text-decoration: none;
}
.furkin-blog .blog-author-page .hs-image-widget {
  opacity: 0;
}
.furkin-blog .blog-author-page .blog-index {
  padding-top: 0;
}
.furkin-blog .blog-author-page .blog-header {
  height: unset;
  min-height: unset;
}
.furkin-blog .blog-author-page .blog-header__inner {
  display: grid;
  gap: 0.809em 1.618em;
  justify-items: center;
  text-align: center;
}
.furkin-blog .blog-author-page .blog-header__inner > img {
  aspect-ratio: 1/1;
  display: block;
  grid-column-start: 1;
  height: auto !important;
  width: 200px;
}
.furkin-blog .blog-author-page .blog-header h1 {
  color: var(--plum);
  text-align: center;
}
.furkin-blog .blog-post__tags a {
  display: inline-block;
  margin-bottom: 6px;
  border-bottom: none;
}
@media (min-width: 768px) {
  .furkin-blog .blog-author-page .blog-header__inner > * {
    grid-column-start: 2;
  }
  .furkin-blog .blog-author-page .blog-header__inner > img {
    grid-row: 1/4;
  }
  .furkin-blog .blog-author-page .blog-header__inner {
    grid-template-columns: 200px 1fr;
    justify-items: unset;
    text-align: unset;
  }
  .furkin-blog .blog-author-page .blog-header .blog-header__subtitle {
    text-align: left;
  }
  .furkin-blog .blog-author-page .blog-header {
    text-align: left !important;
  }
  .furkin-blog .blog-author-page .blog-header h1 {
    text-align: unset;
  }
}
.furkin-blog .blog-author-page .blog-header .blog-header__subtitle {
  display: block;
  margin: 0;
}
.furkin-blog .blog-author-page .blog-header img {
  filter: unset;
  margin: 0;
  width: 200px !important;
}
.furkin-blog .blog-author-page .blog-header + .content-wrapper {
  margin-top: unset;
}
.furkin-blog .author-line {
  color: #fff;
  font-size: clamp(16px, 3vw, 20px);
  margin-top: 20px;
  text-align: left;
}
.furkin-blog .author-line a {
  color: #fff;
}
.furkin-blog h2 {
  font-family: "rooney-sans", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.furkin-blog .blog-index .blog-index__post {
  max-width: unset;
  color: #000;
  border-radius: 25px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  padding: 0.809em;
}
.furkin-blog h1 {
  font-family: "rooney-sans", sans-serif;
}

.blog-header + .content-wrapper .main-col,
.hs-blog-listing .blog-header + .content-wrapper {
  margin-top: -6.472em;
}

.hs-blog-post h1 {
  font-size: clamp(1.6rem, 3.6vw, 3rem);
}

@media (max-width: 811px) {
  .body-container .main-col {
    margin: 0 !important;
  }

  .body-container .blog-post {
    border-radius: 0;
    box-shadow: none;
    margin: 0 !important;
    padding: 1.618em 0;
  }
}
.hs-blog-post .blog-related-posts__post {
  padding: 15px;
}
.hs-blog-post .blog-post a {
  color: #2f0147;
  border-bottom: 1px solid #c656a1;
  text-decoration: none;
}
.hs-blog-post .blog-post .blog-post__tag-link {
  color: #fff;
  border-bottom: unset;
}
.hs-blog-post .blog-post .text-display__cta {
  border-bottom: unset;
}
.hs-blog-post .blog-related-posts .content-wrapper {
  padding: 0;
}
.hs-blog-post .social-share-block > span {
  color: #fff;
}
.hs-blog-post .text-display__cta--default-yellow {
  border-bottom: none;
}
@media (max-width: 811px) {
  .hs-blog-post .blog-post {
    border-radius: 0;
    box-shadow: none;
    margin: 0 !important;
    padding: 1.618em 0;
  }
}

.hs-blog-post .body-container > .content-wrapper {
  display: grid;
  gap: 1.618em;
}

@media (min-width: 1024px) {
  .hs-blog-post .body-container > .content-wrapper {
    grid-template-columns: 1fr 360px;
  }
}