/* Theme base styles */

/* Core
*/

/* Colors */








/* Typography */





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

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

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

li {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

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

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

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

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

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

/* Global Layout */

.body-wrapper {
  overflow-x: hidden;
}

.content-wrapper {
  margin-right: auto;
  margin-left: auto;
  max-width: 1440px;
}

.dnd-section {
  margin: 50px 0;
}

/* Page Section Backgrounds */

.dnd-section[class*="-background-color"] {
  background-color: #fafafa !important;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 0;
}

.dnd-section[class*="-background-color"]:before {
  content: "";
  background-color: inherit;
  display: block;
  height: 100%;
  width: 150vw;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

/* 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%;
  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: 800px) {
  .dnd-section {
    margin: 80px 0;
  }
  .dnd-section[class*="-background-color"] {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@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%;
    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 (min-width: 800px) {
  .content-wrapper {
    padding: 0 4rem;
  }
}

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

/* Navigation skipper */

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

.skip-nav:hover,
.skip-nav:focus,
.skip-nav:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}
.form_question.form_question {
  margin-bottom: 18px;
}

form .action {
  margin-top: 28px;
}

label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin-bottom: 8px;
}
fieldset .form_label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin-bottom: 8px;  
}

.form_address fieldset .form_label {
  margin-top: 16px;  
}

.form_question_c47e83a5-d591-4e86-955d-9783e8985d8e .form_label p span {
  font-size: 10px !important;
}

@media (min-width: 800px) {
  div[data-datatype="date"] select[aria-label="Month"]{
      width: 48.25%;
  }

  div[data-datatype="date"] select[aria-label="Day"]{
      width: 25%;
  }

  div[data-datatype="date"] select[aria-label="Year"]{
      width: 25%;
  }
}

.form_label span {
  color: #707070;
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.6;
}

select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea {
  background-color: #ffffff;
  border: 1px solid #bababa;
  border-radius: 0;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  padding: 0 20px;
  width: 100%;
}

select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"] {
  height: 48px;
}

select {
  appearance: none;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAUBAMAAAAaSvJBAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAGFBMVEUAAACq1dWZrMOZq8KarMO2ttuZq8L////yGtOpAAAABnRSTlMABofntgcRPiYLAAAAAWJLR0QHFmGI6wAAAAd0SU1FB+YEGwIZHPLUBVgAAAB4SURBVBjTZc/LDYAgEATQRcOdWIHGBoy2IJw5aAdk+i9BPgsskQvD8DYBot9S+2nGwwTY1jzASjMQPBfaAUdqGookNnGqokTilHINJRIM774SK0O7qkn3cY6dMHqdeEZGtyAFAfI7GUlSUSeMJClIkoxGQrRcG6cP3e82qAdxFI8AAAAldEVYdGRhdGU6Y3JlYXRlADIwMjItMDQtMjdUMDI6MjU6MjUrMDA6MDAsZSU2AAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIyLTA0LTI3VDAyOjI1OjI1KzAwOjAwXTidigAAAABJRU5ErkJggg==');
  background-position: top 50% right 18px;
  background-size: 14px 7px;
  background-repeat: no-repeat;
  cursor: pointer;
}

textarea {
  height: 148px;
  padding: 20px;
}

@media (min-width: 800px) {
  .form_question.form_question {
    margin-bottom: 24px;
  }
  
  select,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="number"] {
    height: 56px;
  }
}
/* 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;
}
html {
  font-size: 16px;
}

body {
  color: #000000;
  font-family: Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

.hs_cos_wrapper_type_rich_text *,
.text-content * {
  margin: 24px 0;
}

.hs_cos_wrapper_type_rich_text *:first-child,
.text-content *:first-child {
  margin-top: 0;
}

.hs_cos_wrapper_type_rich_text *:last-child,
.text-content *:last-child {
  margin-bottom: 0;
}

.hs_cos_wrapper_type_rich_text p,
.text-content p {
  margin: 20px 0;
}

.hs_cos_wrapper_type_rich_text h2,
.text-content h2,
.h2,
.hs_cos_wrapper_type_rich_text h3,
.text-content h3,
.h3,
.hs_cos_wrapper_type_rich_text h4,
.text-content h4,
.h4 {
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.hs_cos_wrapper_type_rich_text h2,
.text-content h2,
.h2 {
  font-size: 1.625rem;
  margin-top: 44px;
}

.hs_cos_wrapper_type_rich_text h3,
.text-content h3,
.h3 {
  font-size: 1.375rem;
  margin-top: 36px;
}

.hs_cos_wrapper_type_rich_text h4,
.text-content h4,
.h4 {
  font-size: 1.0625rem;
}

.hs_cos_wrapper_type_rich_text a,
.text-content a {
  box-shadow: 0 1px 0 0 #8c1d40;
  color: #8c1d40;
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  transition: box-shadow 0.3s ease-out;
}

.hs_cos_wrapper_type_rich_text a:hover,
.text-content a:hover,
.hs_cos_wrapper_type_rich_text a:focus,
.text-content a:focus {
  box-shadow: 0 2px 0 0 #000000;
}

.hs_cos_wrapper_type_rich_text ul,
.text-content ul,
.hs_cos_wrapper_type_rich_text ol,
.text-content ol {
  margin: 0 0 27px;
  padding: 0 24px;
}

.hs_cos_wrapper_type_rich_text ul ul,
.text-content ul ul,
.hs_cos_wrapper_type_rich_text ol ol,
.text-content ol ol, {
  margin: 11px 0 0;
}

.hs_cos_wrapper_type_rich_text ul li,
.text-content ul li,
.hs_cos_wrapper_type_rich_text ol li,
.text-content ol li {
  margin: 0 0 11px;
  letter-spacing: -0.01em;
  &:first-child {
    margin-top: 0;
  }
  &:last-child {
    margin-bottom: 0;
  }
}

.hs_cos_wrapper_type_rich_text ul,
.text-content ul {
  list-style: none;
}

.hs_cos_wrapper_type_rich_text ul > li,
.text-content ul > li {
  position: relative;
}

.hs_cos_wrapper_type_rich_text ul > li:before,
.text-content ul > li:before {
  content: '';
  background-color: #8c1d40;
  border-radius: 50%;
  height: 6px;
  width: 6px;
  position: absolute;
  top: 12px;
  left: -19px;
}

.hs_cos_wrapper_type_rich_text ol,
.text-content ol {
  counter-reset: listCounter;
  list-style: none;
}

.hs_cos_wrapper_type_rich_text ol > li,
.text-content ol > li {
  counter-increment: listCounter;
  position: relative;
}

.hs_cos_wrapper_type_rich_text ol > li:before,
.text-content ol > li:before {
  content: counter(listCounter) '. ';
  color: #8c1d40;
  font-size: 1.125rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: -19px;
}

.hs_cos_wrapper_type_rich_text img,
.text-content img {
  display: block !important;
  max-width: 80% !important;
  width: auto !important;
}

@media (max-width: 799px) {
  .hs_cos_wrapper_type_rich_text img,
  .text-content img {
    float: none !important;
    margin: 24px auto !important;
  }
}

@media (min-width: 800px) {
  .hs_cos_wrapper_type_rich_text h2,
  .text-content h2,
  .h2 {
    font-size: 2rem;
    margin-top: 52px;
  }

  .hs_cos_wrapper_type_rich_text h3,
  .text-content h3,
  .h3 {
    font-size: 1.625rem;
    margin-top: 44px;
  }

  .hs_cos_wrapper_type_rich_text h4,
  .text-content h4,
  .h4 {
    font-size: 1.125rem;
  }

  .hs_cos_wrapper_type_rich_text ul,
  .text-content ul,
  .hs_cos_wrapper_type_rich_text ol,
  .text-content ol {
    margin: 0 0 33px;
  }

  .hs_cos_wrapper_type_rich_text ul >li:before,
  .text-content ul >li:before {
    height: 8px;
    width: 8px;
  }

  .hs_cos_wrapper_type_rich_text img {
    margin: 52px auto !important;
  }

  .hs_cos_wrapper_type_rich_text img[style*="float: left"],
  .text-content img[style*="float: left"],
  .hs_cos_wrapper_type_rich_text img[style*="float: right"],
  .text-content img[style*="float: right"] {
    max-width: 45% !important;
  }

  .hs_cos_wrapper_type_rich_text img[style*="float: left"],
  .text-content img[style*="float: left"] {
    margin: 8px 32px 32px 0 !important;
  }

  .hs_cos_wrapper_type_rich_text img[style*="float: right"],
  .text-content img[style*="float: right"] {
    margin: 8px 0 32px 32px !important;
  }

  .hs_cos_wrapper_type_rich_text img[style*="margin-left: auto"][style*="margin-right: auto"],
  .text-content img[style*="margin-left: auto"][style*="margin-right: auto"] {
    margin: 32px auto !important;
    width: 85%;
  }
}

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

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs__list-item {
  align-items: center;
  display: flex;
  list-style: none;
  padding-bottom: 5px;
}

.breadcrumbs__list-item:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36' xml:space='preserve' fill='%23024bab'%3E%3Cpath class='st0' d='M58.2 1.8c2.2 2.2 2.3 5.7.4 8l-.4.5-24 24c-2.2 2.2-5.7 2.3-8 .4l-.5-.4-24-24C-.6 8-.6 4.2 1.7 1.8c2.2-2.2 5.7-2.3 8-.4l.5.4L30 21.5 49.8 1.8c2.2-2.2 5.7-2.3 8-.4l.4.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 5px;
  width: 8px;
  margin-right: 8px;
  transform: rotate(-90deg);
}

.breadcrumbs__list-item:last-child:after {
  display: none;
}

.breadcrumbs__link {
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  transition: text-decoration-color 0.3s ease-out;
}

.breadcrumbs__link:hover,
.breadcrumbs__link:focus {
  text-decoration-color: #ffc627;
}

.breadcrumbs__link[aria-current="page"] {
  font-weight: 700;
  pointer-events: none;
}

@media (max-width: 799px) {
  .breadcrumbs__list-item {
    display: none;
  }
  .breadcrumbs__list-item:nth-last-child(2) {
    display: flex;
    flex-direction: row-reverse;
  }
  .breadcrumbs__list-item:after {
    transform: rotate(90deg);
  }
}

@media (min-width: 800px) {
  .breadcrumbs__list-item:after {
    margin-left: 8px;
  }
}
button,
.button,
.hs-button,
form input[type='submit'],
.form-embed-section form button {
  appearance: none;
  background-color: #8c1d40;
  border-radius: 1.778em;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.3;
  padding: 1.07em 2.3em;
  text-align: center;
  text-decoration: none;
  transition: 0.3s background-color ease-in-out, 0.3s color ease-in-out;
}

.button--small {
  border-radius: 1.4em;
  padding: 0.75em 1.5em;
}

.button--large {
  font-size: 1rem;
  padding: 1.18em 2.3em;
}

.button--black {
  background-color: #000000;
  color: #ffffff;
}

button:hover,
.user-tabbing button:focus,
.button:hover,
.user-tabbing .button:focus,
.hs-button:hover,
.user-tabbing .hs-button:focus,
form input[type='submit']:hover,
form input[type='submit']:focus,
.form-embed-section form button:hover,
.user-tabbing .form-embed-section form button:focus {
  background-color: #ffc627;
  color: #000000;
}

@media (min-width: 800px) {
  button,
  .button,
  .hs-button,
  form input[type='submit'],
  .form-embed-section form button {
    font-size: 1rem;
  }
}
.body-container--basic-page .cards {
  max-width: 1000px;
}

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 -40px -40px;
}

.cards-grid__column {
  flex: 0 1 auto;
  padding: 0 0 40px 40px;
  width: 100%;
}

.card__image {
  margin-bottom: 20px;
  position: relative;
}

.card__image:before {
  content: "";
  display: block;
  padding-top: 66.667%;
}

.card__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.card__title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.card__description {
  font-size: 1rem;
}

.card_description p:first-child {
  margin-top: 0;
}

.card_description p:last-child {
  margin-bottom: 0;
}

.card__cta {
  display: table;
  margin-top: 12px;
}

@media (min-width: 800px) {
  .cards-grid {
    margin: 0 0 -60px -60px;
  }
  
  .cards-grid__column {
    padding: 0 0 60px 60px;
    width: 50%;
  }

  .card__image {
    margin-bottom: 24px;
  }

  .card__title {
    margin-bottom: 14px;
  }

  .card__description {
    font-size: 1.125rem;
  }
}
/* 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%;
}


.body-container--basic-page .widget-type-rich_text {
  max-width: 1000px;
}


/* rss feed */
.widget-type-rss_listing h3 {
  font-size: 32px;
}
.widget-type-rss_listing a {
  color: #8c1d40;
}
.body-container--basic-page .embed {
  max-width: 1000px;
}

.embed {
  margin: 0;
}

.embed__media {
  position: relative;
}

.embed__media:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.embed__media iframe {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.embed__caption {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 20px;
}

@media (min-width: 800px) {
  .embed__caption {
    font-size: 1.125rem;
    margin-top: 24px;
  }
}
.fancy-link {
  color: #8c1d40;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.6;
  position: relative;
  text-decoration: underline;
}

.fancy-link div {
  display: inline;
}

.fancy-link:after {
  content: "";
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 10'%3E%3Cpath fill='%238c1d40' fill-rule='nonzero' d='M3.894 9.856L8.69 4.928 3.894 0H0l4.818 4.928L0 9.856z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  height: 10px;
  width: 9px;
  position: absolute;
  right: 0;
  bottom: 6px;
  transform: translate3d(15px, 0, 0);
  transition: .3s transform ease-in-out;
}

.fancy-link:hover::after,
.fancy-link:focus::after {
  transform: translate3d(20px, 0, 0);
}
.footer {
  background-color: #ffffff;
  font-size: 1rem;
  text-align: center;
}

.footer__main {
  background-color: #1e1e1e;
  color: #ffffff;
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer__main a {
  color: #ffffff;
  transition: 0.3s color ease-in-out;
}

.footer__main a:hover,
.user-tabbing .footer__main a:focus {
  color: #ffc627;
}

.footer__logo {
  margin: 0 auto 24px;
}

@media (min-width: 400px) {
  .footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.footer__logo a {
  display: block;
  position: relative;
  padding: 10px;
}

@media (max-width: 400px) {
  .footer__logo a {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__logo a.footer__logo--asu {
  max-width: 170px;
}

.footer__logo a.footer__logo--umary {
  max-width: 225px;
}

.footer__logo img {
  height: 100%;
  width: 100%;
}

.footer__about {
  margin: 24px auto;
  max-width: 600px;
}

.footer__contact-item {
  margin-bottom: 12px;
}

.footer__sole {
  background-color: #e8e8e8;
  color: #000000;
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer__sole a {
  color: #000000;
  transition: 0.3s color ease-in-out;
}

.footer__sole a:hover,
.user-tabbing .footer__sole a:focus {
  color: #8c1d40;
}

.footer__copyright {
  font-style: italic;
}

.footer__legal-item {
  margin: 12px 0;
}

.footer__legal-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 800px) {
  .footer__contact-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 24px 0 12px -24px;
  }

  .footer__contact-item {
    padding-left: 24px;
    position: relative;
  }

  .footer__contact-item:before {
    content: "|";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 12px;
    transform: translateX(-50%);
  }

  .footer__contact-item:first-child:before {
    display: none;
  }

  .footer__sole > .content-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
  }

  .footer__legal-items {
    display: flex;
    justify-content: center;
  }

  .footer__legal-item {
    margin: 0 0 0 24px;
  }
}
.form-embed {
  max-width: 600px;
}
.header {
  position: relative;
}

.header__container {
  align-items: center;
  background-color: #ffffff;
  border-bottom: 1px solid #d0d0d0;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  height: 112px;
}

.header__logo {
  flex: 0 1 auto;
  width: 200px;
}

.header__logo a {
  display: block;
  position: relative;
}

.header__logo a:before {
  content: "";
  display: block;
  padding-top: 23.5%;
}

.header__logo img {
  display: block;
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.header__main {
  align-items: center;
  display: flex;
  flex: 1 1 0px;
  justify-content: flex-end;
  margin-left: 40px;
}

.header__offcanvas-toggle {
  background-color: #ffffff !important;
  border-radius: 0;
  color: #000000 !important;
  height: 44px;
  width: 44px;
  padding: 0;
  position: relative;
}

.header__offcanvas-toggle:hover,
.user-tabbing .header__offcanvas-toggle:focus {
  background-color: #ffc627 !important;
  color: #000000 !important;
}

.header__offcanvas-toggle-icon {
  display: block;
  height: 18px;
  width: 24px;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header__offcanvas-toggle-icon-line {
  background-color: currentColor;
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
}

.header__offcanvas-toggle-icon-line:nth-child(1),
.header__offcanvas-toggle-icon-line:nth-child(4) {
  transition: 0.3s opacity ease-in-out;
}

.header__offcanvas-toggle-icon-line:nth-child(2),
.header__offcanvas-toggle-icon-line:nth-child(3) {
  top: 50%;
  transform: translate3d(0, -50%, 0);
  transition: 0.3s transform ease-in-out;
}

.header__offcanvas-toggle-icon-line:nth-child(1) {
  top: 0;
}

.header__offcanvas-toggle-icon-line:nth-child(4) {
  bottom: 0;
}

.header__offcanvas-toggle[aria-expanded="true"] .header__offcanvas-toggle-icon-line:nth-child(1),
.header__offcanvas-toggle[aria-expanded="true"] .header__offcanvas-toggle-icon-line:nth-child(4) {
  opacity: 0;
}

.header__offcanvas-toggle[aria-expanded="true"] .header__offcanvas-toggle-icon-line:nth-child(2) {
  transform: translate3d(0, -50%, 0) rotate(45deg);
}

.header__offcanvas-toggle[aria-expanded="true"] .header__offcanvas-toggle-icon-line:nth-child(3) {
  transform: translate3d(0, -50%, 0) rotate(-45deg);
}

.header__offcanvas .hs-menu-item a {
  color: #000000;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  overflow: hidden;
  padding-bottom: 8px;
  position: relative;
  text-decoration: none;
}

.header__offcanvas .hs-menu-item a:after {
  content: "";
  background-color: #ffc627;
  display: block;
  height: 8px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate3d(-101%, 0, 0);
  transition: 0.3s transform ease-in-out;
}

.header__offcanvas .hs-menu-item a:hover:after,
.user-tabbing .header__offcanvas .hs-menu-item a:focus:after {
  transform: translate3d(0, 0, 0);
}

@media (max-width: 999px) {
  .header__offcanvas {
    background-color: #ffffff;
    z-index: 500;
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.4);
    height: calc(100vh - 112px);
    margin-top: 1px;
    max-width: 300px;
    width: 90%;
    padding: 24px;
    position: absolute;
    top: 100%;
    right: 0;
    transform: translate3d(100%, 0, 0);
  }
  .header__offcanvas.transitioning {
    transition: 0.3s transform ease-in-out;
  }
  .header__offcanvas[aria-hidden="false"] {
    transform: translate3d(0, 0, 0);
  }
  .header__offcanvas ul {
    display: block;
    margin-bottom: 30px;
  }
  .header__offcanvas .hs-menu-item {
    margin-bottom: 20px;
  }
  .header__offcanvas .hs-menu-item:last-child {
    margin-bottom: 0;
  }
  .header__offcanvas .button {
    display: table;
    margin-bottom: 20px;
  }
  .header__offcanvas .button:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 1000px) {
  .header__offcanvas-toggle {
    display: none;
  }
  .header__offcanvas {
    align-items: center;
    display: flex;
  }
  .header__offcanvas ul {
    flex-wrap: nowrap;
    margin-right: 30px;
    transform: translateY(8px);
  }
  .header__offcanvas .hs-menu-item {
    margin-right: 20px;
  }
  .header__offcanvas .hs-menu-item:last-child {
    margin-right: 0;
  }
  .header__offcanvas .hs-menu-item a {
    font-size: 0.9375rem;
    white-space: nowrap;
  }
  .header__offcanvas .button {
    font-size: 0.9375rem;
    margin-right: 20px;
    white-space: nowrap;
  }
  .header__offcanvas .button:last-child {
    margin-right: 0;
  }
}

@media (min-width: 1100px) {
  .header__offcanvas .hs-menu-item a {
    font-size: 1rem;
  }
  .header__offcanvas .button {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .header__offcanvas .hs-menu-item {
    margin-right: 30px;
  }
}
.hero:not(.hero--has-image) {
  padding: 36px 0 0;
}

.hero--has-image {
  margin: 0 -1rem;
  position: relative;
}

.hero__image {
  min-width: 100%;
  position: relative;
}

.hero__image:before {
  content: "";
  display: block;
  padding-top: 50%;
}

.hero__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.hero__title {
  background-color: #ffc627;
  box-shadow: -0.15em 0 0 #ffc627, 0.15em 0 0 #ffc627;
  color: #000000;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1667;
  margin: 0;
}

.hero:not(.hero--has-image) .hero__title {
  display: table;
}

.hero--has-image .hero__title {
  position: absolute;
  bottom: 30px;
  left: 16px;
}

@media (min-width: 800px) {
  .hero--has-image {
    margin: 0 -4rem;
  }
  .hero__title {
    font-size: 3.25rem;
  }
  .hero--has-image .hero__title {
    bottom: 64px;
    left: 64px;
  }
}

@media (min-width: 1000px) {
  .hero__image:before {
    padding-top: 33.333%;
  }
}
.home-hero {
  background-color: #fff;
  margin: 20px 0;
  padding-top: 28px;
}

.home-hero__media {
  overflow: hidden;
  position: relative;
}

.home-hero__media:before {
  content: "";
  display: block;
  padding-top: 72.5%;
}

.home-hero__media img,
.home-hero__media svg {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.home-hero__media svg {
  transform: scale(1.005);
}

.home-hero__content {
  background-color: #fff;
  padding: 36px 20px 30px;
}

.home-hero__heading {
  color: #003478;
  display: table;
  font-family: "Poppins", sans-serif;
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.014em;
  line-height: 1.1;
  margin: 0 auto 20px;
  padding: 0 0 16px;
  position: relative;
  text-align: center;
}

.home-hero__heading::after {
  content: "";
  background-color: #ff8426;
  border-radius: 50%;
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.home-hero__description {
  color: #003478;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 28px;
  max-width: 95%;
  text-align: center;
}

.home-hero__cta {
  text-align: center;
}

@media (min-width: 500px) {
  .home-hero {
    margin: 30px 0;
  }

  .home-hero__heading {
    font-size: 72px;
  }

  .home-hero__content {
    padding: 30px 60px 40px;
  }
}

@media (min-width: 800px) {
  .home-hero {
    display: flex;
    margin: 0;
    padding-top: 36px;
  }

  .home-hero__media {
    align-self: flex-end;
    flex: 0 1 auto;
    width: 54%;
  }

  .home-hero__content {
    flex: 1 1 0px;
    padding: 3.6vw 5vw 3.6vw 8vw;
  }

  .home-hero__heading {
    font-size: 6.5vw;
    margin-left: -4.5vw;
  }

  .home-hero__description {
    font-size: 2.75vw;
    text-align: left;
  }

  .home-hero__cta {
    text-align: left;
  }

  .home-hero__cta .button {
    font-size: 1.5vw;
  }
}

@media (min-width: 1100px) {
  .home-hero__content {
    padding: 40px 56px 40px 88px;
  }

  .home-hero__heading {
    font-size: 72px;
    margin-left: -50px;
  }

  .home-hero__cta .button {
    font-size: 16px;
  }
}

@media (min-width: 1300px) {
  .home-hero {
    padding-top: 48px;
  }

  .home-hero__content {
    padding: 88px 106px 88px 118px;
  }

  .home-hero__heading {
    font-size: 96px;
    margin-left: -72px;
  }

  .home-hero__description {
    font-size: 36px;
  }
}
.image-callout__media {
  margin-bottom: 20px;
  position: relative;
}

.image-callout__media::before {
  content: "";
  display: block;
  padding-top: 66.667%;
}

.image-callout__media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.image-callout__title {
  margin: 0 0 16px;
}

.image-callout__cta {
  display: table;
  margin-top: 24px;
}

@media (min-width: 800px) {
  .image-callout {
    align-items: flex-start;
    display: flex;
    flex-direction: row-reverse;
  }

  .image-callout__media {
    flex: 0 1 auto;
    margin-bottom: 0;
    width: 45%;
  }

  .image-callout__content {
    flex: 1 1 0px;
    margin-right: 40px;
    padding-top: 16px;
  }
}
.body-container--basic-page .link-group {
  max-width: 1000px;
}

.body-container--basic-page .dnd-section:not(:first-child) .link-group {
  margin-top: -25px;
}

.body-container--basic-page .dnd-section:not(:last-child) .link-group {
  margin-bottom: -20px;
}

.link-group--fancy-link .link-group__list {
  margin-left: -42px;
}

.link-group__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 -28px -28px;
}

.link-group--fancy-link .link-group__list-item {
  padding-left: 42px;
}

.link-group__list-item {
  flex: 0 0 auto;
  padding: 0 0 28px 28px;
}

@media (min-width: 800px) {
  .body-container--basic-page .dnd-section:not(:first-child) .link-group {
    margin-top: -40px;
  }

  .body-container--basic-page .dnd-section:not(:last-child) .link-group {
    margin-bottom: -30px;
  }
}
.page-header {
  padding: 36px 0 0;
}

.page-header__title {
  background: #ffc627;
  box-shadow: -0.15em 0 0 #ffc627, 0.15em 0 0 #ffc627;
  display: table;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 28px 0 0;
}

@media (min-width: 800px) {
  .page-header__title {
    font-size: 3.25rem;
  }
}
.table-wrapper {
  overflow-x: auto;
}

.table.table,
.table.table tr,
.table.table td {
  border: none;
}

.table.table {
  margin: 0;
  width: 100%;
}

.table:not(.tablesaw-stack) {
  min-width: 100%;
  width: auto;
}

.table.table th,
.table.table thead td,
.tablesaw-cell-label {
  background-color: #8c1d40;
  border: none !important;
  color: #ffffff;
  font-weight: 700;
  padding: 16px;
  text-align: left;
}

.table.table tbody tr th {
  background-color: #efefef;
  color: #000000;
}

.table:not(.tablesaw-stack) th {
  white-space: nowrap;
}

.table.table td {
  padding: 0;
}

.tablesaw-cell-label,
.tablesaw-cell-content {
  display: block;
}

.table:not(.tablesaw-stack) tbody td,
.tablesaw-cell-content {
  padding: 16px;
}

@media (max-width: 799px) {
  .table.tablesaw-stack,
  .table.tablesaw-stack tbody,
  .table.tablesaw-stack tr,
  .table.tablesaw-stack td {
    display: block;
  }
  .table.tablesaw-stack thead {
    display: none;
  }
  .table.tablesaw-stack tr {
    margin-bottom: 30px;
  }
  .table.tablesaw-stack tr:last-child {
    margin-bottom: 0;
  }
  .tablesaw-cell-content {
    border-right: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
  }
  .table.tablesaw-stack td:nth-child(even) .tablesaw-cell-content {
    background-color: #fafafa;
  }
  .table.tablesaw-stack td:last-child .tablesaw-cell-content {
    border-bottom: 1px solid #e8e8e8;
  }
}

@media (min-width: 800px) {
  .table.table tbody {
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
  }
  .table.table tr:nth-child(even) td {
    background-color: #fafafa;
  }
  .tablesaw-cell-label {
    display: none;
  }
}
.body-container--basic-page .testimonial {
  max-width: 1000px;
}

.testimonial {
  margin: 0;
}

.testimonial__image {
  margin: 0 auto 30px;
  max-width: 200px;
  position: relative;
  width: 75%;
}

.testimonial__image:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.testimonial__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial__text {
  font-size: 1.875rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  padding: 44px 0 0 0;
  position: relative;
}

.testimonial__text:before {
  content: '“' ;
  color: #ffc627;
  font-size: 5.625rem;
  font-style: normal;
  font-weight: 900;
  line-height: 0.8;
  speak: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial__footer {
  margin-top: 20px;
}

.testimonial__author,
.testimonial__author-title {
  font-size: 0.875rem;
  line-height: 1.25;
}

.testimonial__author:not(:last-child) {
  margin-bottom: 8px;
}

@media (max-width: 799px) {
  .testimonial {
    text-align: center;
  }
}

@media (min-width: 800px) {
  .testimonial {
    align-items: flex-start;
    display: flex;
  }

  .testimonial__image {
    flex: 0 0 auto;
    margin: 0 44px 0 0;
  }

  .testimonial__content {
    flex: 1 1 0px;
  }

  .testimonial__text {
    font-size: 2.25rem;
    padding-top: 52px;
  }
  
  .testimonial__text:before {
    font-size: 7.5rem;
    left: 0;
    transform: none;
  }

  .testimonial__footer {
    margin-top: 24px;
  }

  .testimonial__author,
  .testimonial__author-title {
    font-size: 1rem;
  }
}

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

.sr-only {
  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) {
  .sr-only--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;
  }
}