/*! Flickity v2.0.5
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.flickity-prev-next-button:hover {
  background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F; }

.flickity-prev-next-button:active {
  opacity: 0.6; }

.flickity-prev-next-button.previous {
  left: 10px; }

.flickity-prev-next-button.next {
  right: 10px; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto; }

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

.flickity-prev-next-button .arrow {
  fill: #333; }

.flickity-page-dots {
  position: absolute;
  z-index: 999;
  width: 100%;
  bottom: 1em;
  padding: .5em 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  position: relative;
  width: 0.65em;
  height: 0.65em;
  margin: 0 8px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
  .flickity-page-dots .dot.is-selected {
    background: #19938E;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5); }

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
    .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #888 transparent;
      border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

.se-form-default {
  background: #fff;
  padding: 2em 2em;
  border-top: 10px solid #19938E;
  box-shadow: rgba(107, 117, 118, 0.12) 0 5px 22px; }
  .se-form-default form > div {
    position: relative; }
    .se-form-default form > div .hs-richtext {
      position: absolute;
      padding-left: 5px;
      font-size: 12px !important; }
  .se-form-default input[type="text"], .se-form-default input[type="email"], .se-form-default input[type="tel"] {
    border: 1px solid #e6e6e6;
    outline: none;
    margin: 0;
    box-shadow: none;
    font-size: 17px; }
    .se-form-default input[type="text"]:focus, .se-form-default input[type="email"]:focus, .se-form-default input[type="tel"]:focus {
      background: #fff;
      border-color: #bfbfbf; }
  .se-form-default select[id^="se-select-input-"] {
    display: none !important; }
  .se-form-default .hs-form-field {
    margin-bottom: .75em; }
    .se-form-default .hs-form-field > label {
      font-weight: bold;
      font-size: 12px !important; }
  .se-form-default .hs_submit .hs-button {
    background: #EA3837;
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 1.1em 2.4em 1em;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .se-form-default .hs_submit .hs-button:hover {
      background: #A91312; }
  .se-form-default .hs-error-msgs, .se-form-default .inputs-list {
    list-style: none;
    margin: 0;
    padding: 0; }
  .se-form-default .hs-error-msgs li label {
    color: #fc3a3a;
    font-size: 12px; }
  .se-form-default .inputs-list span {
    display: inline-block; }
  .se-form-default .inputs-list input[type="checkbox"], .se-form-default .inputs-list input[type="radio"] {
    margin-right: 10px; }
    .se-form-default .inputs-list input[type="checkbox"]:checked + span, .se-form-default .inputs-list input[type="radio"]:checked + span {
      color: #42b4e6; }

[data-sticky-option] .hs_check_box > label {
  font-size: 1.6em !important;
  font-weight: bold;
  padding-bottom: 1em; }

.the--header-form {
  border-top: 10px solid #19938E;
  -webkit-transition: margin 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: margin 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: margin 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  background: white;
  padding: 2em 1em;
  margin: -1em 0em 0em 0em;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1); }
  .the--header-form .hs-form-field {
    width: 100%;
    position: relative;
    float: left; }
  .the--header-form .hs-form-required {
    position: absolute;
    top: 3px;
    left: 2px;
    color: #19938E;
    z-index: 10; }
  .the--header-form .select2-selection,
  .the--header-form input[type="text"],
  .the--header-form input[type="email"],
  .the--header-form select,
  .the--header-form input[type="tel"] {
    outline: none;
    height: 37px !important;
    width: 100% !important; }
  .the--header-form input[type="submit"] {
    border: none;
    background: #EA3837;
    color: white;
    font-family: "Dual", Arial, sans-serif;
    display: block;
    padding: 0.5em 3em;
    margin: auto;
    float: none; }
  .the--header-form .select2, .the--header-form .select2-container,
  .the--header-form .select2-selection--single,
  .the--header-form .select2-container--default, .the--header-form .select2-hidden-accessible {
    width: 100% !important;
    float: left !important;
    border-radius: 0px !important;
    padding: 0em !important;
    margin: 0.2em 0em 0.6em 0em !important;
    height: auto !important;
    overflow: hidden !important; }
  .the--header-form .select2-selection {
    height: 37px !important; }
  .the--header-form .select2-selection__rendered {
    line-height: 37px !important;
    color: grey !important; }
  .the--header-form .hs-error-msgs {
    position: relative;
    list-style-type: none !important;
    padding: 0.2em 0em 0em 0em !important;
    margin: 0em !important; }
    .the--header-form .hs-error-msgs label {
      color: #42b4e6 !important; }

@media (min-width: 40.063em) {
  .the--header-form {
    border-top: 10px solid #19938E;
    padding: 2em 3em; }
    .the--header-form .hs-form-field {
      width: 30%;
      margin: 1.65%;
      float: left; }
    .the--header-form input[type="submit"] {
      padding: 1em 3em;
      width: 30%;
      margin: auto;
      float: right; }
    .the--header-form .select2, .the--header-form .select2-container,
    .the--header-form .select2-selection--single,
    .the--header-form .select2-container--default, .the--header-form .select2-hidden-accessible {
      width: 100% !important;
      float: left !important;
      border-radius: 0px !important;
      padding: 0em !important;
      margin: 0em 0em 0.6em 0em !important;
      height: auto !important;
      overflow: hidden !important; }
    .the--header-form .hs-error-msgs {
      position: absolute;
      list-style-type: none !important;
      padding: 0.2em 0em 0em 0em !important;
      margin: 0em !important; }
      .the--header-form .hs-error-msgs li {
        padding: 0em !important; }
      .the--header-form .hs-error-msgs label {
        font-size: 10px !important; } }

@media (min-width: 64.063em) {
  .the--header-form {
    margin-top: -120px; }
    .the--header-form .hs-error-msgs {
      padding: 0.4em 0em 0em 0em !important; }
      .the--header-form .hs-error-msgs label {
        font-size: 13px !important; } }

body .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #42b4e6; }

body .select2-results__option {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease; }
  body .select2-results__option.select2-results__message {
    font-style: italic;
    font-weight: bold; }

body .select2-container--default .select2-results .select2-results__option[aria-selected="true"] {
  background-color: whitesmoke;
  color: #19938E;
  font-weight: bold; }
  body .select2-container--default .select2-results .select2-results__option[aria-selected="true"]:hover {
    color: #19938E; }

body .select2-container--default .select2-search--dropdown .select2-search__field {
  margin: 0;
  box-shadow: none;
  background: #fff;
  border-color: #d9d9d9;
  font-size: 16px; }
  body .select2-container--default .select2-search--dropdown .select2-search__field:focus {
    background: #fff;
    border-color: #bfbfbf; }

body .select2-container--open .select2-dropdown {
  border-color: #d9d9d9; }
  body .select2-container--open .select2-dropdown.select2-dropdown--below, body .select2-container--open .select2-dropdown.select2-dropdown--above {
    border-radius: 0; }
  body .select2-container--open .select2-dropdown.select2-dropdown--below {
    box-shadow: rgba(107, 117, 118, 0.1) 0 4px 12px; }
  body .select2-container--open .select2-dropdown.select2-dropdown--above {
    box-shadow: rgba(107, 117, 118, 0.1) 0 -4px 12px; }

.se-form-default .select2-selection {
  border: 1px solid #e6e6e6;
  border-radius: 0;
  height: 40px; }

.se-form-default .select2-selection__rendered {
  padding-top: 7px; }

.se-form-default .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #42b4e6; }

.se-form-default .select2-selection__arrow {
  right: 5px !important;
  padding: 0em 1em;
  height: 38px !important;
  border-left: 1px solid #e6e6e6; }
  .se-form-default .select2-selection__arrow b {
    border-color: transparent !important;
    top: 0% !important;
    right: 10px !important;
    height: 13px !important;
    width: 2px !important; }
    .se-form-default .select2-selection__arrow b:before {
      content: "";
      position: absolute;
      width: 2px;
      height: 13px;
      -webkit-transition: -webkit-transform 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: -moz-transform 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: transform 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
      margin-top: 10px !important;
      top: 0% !important;
      background: #42b4e6; }
    .se-form-default .select2-selection__arrow b:after {
      content: "";
      position: absolute;
      width: 2px;
      height: 13px;
      -webkit-transition: -webkit-transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: -moz-transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
      transform: rotate(270deg);
      margin-top: 10px !important;
      top: 0% !important;
      background: #42b4e6; }

.se-form-default .select2-container--open b {
  border-color: transparent !important;
  top: 0% !important;
  right: 10px !important; }
  .se-form-default .select2-container--open b:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 14px;
    transform: rotate(90deg);
    margin-top: 16px !important;
    top: 0% !important;
    background: #42b4e6; }
  .se-form-default .select2-container--open b:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 13px;
    transform: rotate(90deg);
    margin-top: 16px !important;
    top: 0% !important;
    background: #42b4e6; }

@font-face {
  font-family: 'Dual';
  src: url("https://sw.aveva.com/hubfs/fonts/Dual-200.eot") format("embedded-opentype"), url("https://sw.aveva.com/hubfs/fonts/Dual-200.woff") format("woff"), url("https://sw.aveva.com/hubfs/fonts/Dual-200.ttf") format("truetype"), url("https://sw.aveva.com/hubfs/fonts/Dual-200.woff2") format("woff2");
  font-weight: 200;
  font-style: normal; }

@font-face {
  font-family: 'Dual';
  src: url("https://sw.aveva.com/hubfs/fonts/Dual-400.eot") format("embedded-opentype"), url("https://sw.aveva.com/hubfs/fonts/Dual-400.woff") format("woff"), url("https://sw.aveva.com/hubfs/fonts/Dual-400.ttf") format("truetype"), url("https://sw.aveva.com/hubfs/fonts/Dual-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'Dual';
  src: url("https://sw.aveva.com/hubfs/fonts/Dual-600.eot") format("embedded-opentype"), url("https://sw.aveva.com/hubfs/fonts/Dual-600.woff") format("woff"), url("https://sw.aveva.com/hubfs/fonts/Dual-600.ttf") format("truetype"), url("https://sw.aveva.com/hubfs/fonts/Dual-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal; }

body {
  font-family: "Dual", Arial, sans-serif;
  background: #fbfbfb;
  color: #393939;
  letter-spacing: 0.025em;
  height: auto;
  font-variant-ligatures: none; }

ul {
  font-family: "Dual", Arial, sans-serif; }
  ul.bullets-green {
    list-style: none; }
    ul.bullets-green li {
      position: relative; }
    ul.bullets-green li:before {
      display: block;
      position: absolute;
      top: 9px;
      left: -15px;
      font-family: 'FontAwesome';
      content: "\f111";
      color: #19938E;
      font-size: 5px; }

a {
  color: #19938E; }
  a:hover {
    color: #126764; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-family: "Dual", Arial, sans-serif; }

.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px); }

*.margin-clear, figure {
  margin: 0; }

.site-outer-container {
  max-width: 1700px;
  margin: 0 auto; }

.row {
  min-width: 290px;
  max-width: 71.5em; }

.full-row:after {
  clear: both;
  content: "";
  display: table; }

.full-row:before {
  content: "";
  display: table; }

.button {
  font-family: "Dual", Arial, sans-serif;
  font-weight: bold;
  font-size: 0.95rem;
  background: #EA3837;
  padding-bottom: 0.9rem;
  padding-right: 1.7rem;
  padding-left: 1.7rem; }
  .button.button-smaller {
    font-size: .9rem;
    padding: .8rem 1.1rem .7rem; }
  .button:hover {
    background: #A91312; }

.video-btn {
  display: block;
  position: absolute;
  z-index: 199;
  top: 45%;
  left: 50%;
  width: 5em;
  height: 5em;
  margin-left: -2.5em;
  margin-top: -2.5em;
  background: rgba(255, 255, 255, 0.7);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%; }
  .video-btn .video-btn--icon {
    display: block;
    text-align: center;
    width: 3em;
    height: 3em;
    margin-left: 1em;
    margin-top: 1em;
    background: rgba(25, 147, 142, 0.8);
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%; }
    .video-btn .video-btn--icon i {
      display: block;
      line-height: 2.8;
      margin-right: -.2em;
      font-size: 1.1em; }

.block-coverbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover; }

.block--default {
  padding: 3em 0; }

.block-default--textrow {
  padding-top: 2em; }
  .block-default--textrow h1, .block-default--textrow h2, .block-default--textrow h3, .block-default--textrow h4, .block-default--textrow h5, .block-default--textrow h6 {
    color: #19938E; }

.block--onwhite {
  position: relative; }
  .block--onwhite:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 75em;
    top: 0;
    left: 50%;
    background: #fff;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); }

.block--heading {
  padding-bottom: 2em; }

.title--large {
  color: #19938E;
  font-size: 1.7em; }

.hr-divider {
  border: none;
  margin: 0;
  height: 2px;
  background: #f2f2f2; }

@media (min-width: 40.063em) {
  .title--large {
    font-size: 2.2em; } }

.topbar-alert {
  position: relative;
  background: #f2f2f2;
  border-top: 1px solid #e6e6e6; }

.topbar-alert--content {
  text-align: center;
  padding: 10px 0 8px; }
  .topbar-alert--content h5 {
    margin: 0;
    font-size: 0.9em; }
  .topbar-alert--content a {
    display: inline-block;
    position: relative;
    font-weight: bold;
    color: #42b4e6;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    transition: all 0.35s ease; }
    .topbar-alert--content a:after {
      content: "";
      display: block;
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 1px;
      background: #d9d9d9;
      opacity: 0;
      -webkit-transition: opacity 0.35s ease;
      -moz-transition: opacity 0.35s ease;
      transition: opacity 0.35s ease; }
    .topbar-alert--content a:hover {
      color: #1d9fd8; }
      .topbar-alert--content a:hover:after {
        opacity: 1; }

#topbar-alert-close {
  display: block;
  padding: 0;
  margin: 0;
  width: 1.5em;
  height: 1.5em;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: .5em;
  margin-top: -.75em;
  background: #d9d9d9;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  #topbar-alert-close i {
    display: block;
    font-size: .9em;
    color: #999999;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  #topbar-alert-close:hover, #topbar-alert-close:focus {
    background: #bfbfbf; }
    #topbar-alert-close:hover i, #topbar-alert-close:focus i {
      color: #fff; }

.header-simsci, .header-se {
  background: #19938E;
  border-bottom: 5px solid #157d79;
  padding: .8em 0 .7em; }
  .header-simsci .medium-8, .header-se .medium-8 {
    overflow: visible; }

.header--group:after {
  clear: both;
  content: "";
  display: table; }

.header--group:before {
  content: "";
  display: table; }

.header--navtoggle {
  float: right; }

#navtoggle-btn {
  padding: 0;
  display: block;
  outline: none;
  margin-bottom: 0;
  position: relative;
  border-radius: 3px;
  width: 45px;
  height: 45px;
  background: #147471; }
  #navtoggle-btn span[class^="nt-"] {
    display: block;
    position: absolute;
    height: 1px;
    width: 24px;
    left: 10px;
    background: #fff; }
  #navtoggle-btn:hover, #navtoggle-btn:focus {
    box-shadow: rgba(107, 117, 118, 0.25) 0 0 5px inset; }
  #navtoggle-btn .nt-top {
    top: 15px; }
  #navtoggle-btn .nt-mid {
    top: 22px; }
  #navtoggle-btn .nt-bot {
    top: 29px; }

.header--logo {
  float: left; }

.header--nav {
  position: absolute;
  z-index: 499;
  text-align: right;
  top: 5px;
  right: 0.9375rem;
  background: #f7f7f7;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 90% top;
  -moz-transform-origin: 90% top;
  -ms-transform-origin: 90% top;
  -o-transform-origin: 90% top;
  transform-origin: 90% top;
  -webkit-transition-property: opacity, visibility, -webkit-transform;
  -moz-transition-property: opacity, visibility, -moz-transform;
  transition-property: opacity, visibility, transform;
  -webkit-transition-duration: 0.1s, 0.1s, 0.35s;
  -moz-transition-duration: 0.1s, 0.1s, 0.35s;
  transition-duration: 0.1s, 0.1s, 0.35s;
  -webkit-transition-timing-function: ease, ease, cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition-timing-function: ease, ease, cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: ease, ease, cubic-bezier(0.175, 0.885, 0.32, 1.275); }
  .header--nav:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 499;
    width: 0;
    height: 0;
    border: 10px solid;
    border-color: transparent transparent #f7f7f7 transparent;
    right: 12px;
    top: -20px;
    -webkit-transform: scaleX(0.8);
    -moz-transform: scaleX(0.8);
    -ms-transform: scaleX(0.8);
    -o-transform: scaleX(0.8);
    transform: scaleX(0.8); }
  .header--nav ul {
    list-style: none;
    margin: 0;
    padding: 20px 0; }
  .header--nav a {
    font-weight: bold;
    color: #19938E;
    display: block;
    padding: .7em 1em .5em;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    transition: all 0.35s ease; }
    .header--nav a:hover {
      background: #d9d9d9; }

.is-showing-nav .header--nav {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 0.35s, 0.35s, 0.35s;
  -moz-transition-duration: 0.35s, 0.35s, 0.35s;
  transition-duration: 0.35s, 0.35s, 0.35s; }

.header--logo-link {
  display: block;
  width: 12em; }
  .header-se .header--logo-link {
    width: 14em; }

.header--logo-img {
  display: block;
  margin-top: -2px; }

.header--logo-svg {
  height: 0;
  position: relative;
  padding-bottom: 23.40426%; }
  .header--logo-svg svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

@media (min-width: 40.063em) {
  .header--nav {
    position: static;
    visibility: visible;
    opacity: 1;
    text-align: right;
    padding-top: .4em;
    background: transparent;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
    .header--nav:before {
      display: none; }
    .header--nav ul {
      padding: 0; }
    .header--nav li {
      position: relative;
      display: inline-block;
      margin-left: 1em; }
      .header--nav li:after {
        content: "";
        display: block;
        position: absolute;
        height: 50%;
        top: 22%;
        left: 100%;
        width: 1px;
        background: #24d4cd;
        margin-left: 0.6em; }
      .header--nav li:first-child {
        margin-left: 0; }
      .header--nav li:last-child:after {
        display: none; }
    .header--nav a {
      position: relative;
      padding: 0.35em;
      font-weight: lighter;
      color: #fff; }
      .header--nav a:after {
        content: "";
        display: block;
        position: absolute;
        bottom: 5px;
        left: .3em;
        right: .3em;
        height: 1px;
        background: #20bfb8;
        opacity: 0;
        -webkit-transform: translateY(2px);
        -moz-transform: translateY(2px);
        -ms-transform: translateY(2px);
        -o-transform: translateY(2px);
        transform: translateY(2px);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease; }
      .header--nav a:hover {
        background: transparent; }
        .header--nav a:hover:after {
          -webkit-transform: translateY(0);
          -moz-transform: translateY(0);
          -ms-transform: translateY(0);
          -o-transform: translateY(0);
          transform: translateY(0);
          opacity: 1; }
  .header--navtoggle {
    display: none; } }

#hero-slider {
  background: #373737;
  position: relative; }

.hero-slider--slide {
  width: 100%; }

.hero-slider--vsizer {
  position: relative;
  height: 0;
  padding-bottom: 24em; }

.hero-slider--content {
  position: absolute;
  z-index: 1 !important;
  top: 50%;
  max-width: 32em;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  margin-left: -0.9375rem;
  background-blend-mode: overlay; }
  .hero-slider--content h1, .hero-slider--content h2, .hero-slider--content h3, .hero-slider--content h4, .hero-slider--content h5, .hero-slider--content h6 {
    color: #fff;
    margin-top: 0;
    font-weight: lighter; }
  .hero-slider--contentliner {
    padding: 1em 1.2em; }
  .hero-slider--content p:last-of-type {
    margin-bottom: 0; }

.hero-slider--btn {
  padding-top: 1em; }
  .hero-slider--btn .button {
    margin: 0 0 .5em; }

.hero-slide--bg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(51, 51, 51, 0.1) 100%); }

@media (min-width: 40.063em) {
  .hero-slider--vsizer {
    padding-bottom: 56.5%; } }

@media (min-width: 64.063em) {
  .hero-slider--content {
    margin-left: 2em; }
    .hero-slider--contentliner {
      padding: 1.7em 2em; } }

.block--banner {
  position: relative;
  padding: 4.5em 0; }
  .block--banner > .row {
    position: relative;
    z-index: 299;
    text-align: center; }

.block-banner--content {
  color: #fff; }
  .block-banner--content h1, .block-banner--content h2, .block-banner--content h3, .block-banner--content h4, .block-banner--content h5, .block-banner--content h6 {
    color: #fff; }
    .block-banner--content h1 span, .block-banner--content h2 span, .block-banner--content h3 span, .block-banner--content h4 span, .block-banner--content h5 span, .block-banner--content h6 span {
      display: block;
      margin: 0 0 20px; }
  .block-banner--content a.button {
    margin-bottom: 0;
    margin-left: 15px;
    position: relative;
    top: -3px; }

@media (min-width: 40.063em) {
  .block-banner--content h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
    display: inline;
    margin: 0; } }

@media (min-width: 64.063em) {
  .block--banner {
    padding: 6.5em 0; } }

.block--three-up .row {
  padding-top: 5.938em;
  padding-bottom: 4.063em; }
  .block--three-up .row li {
    margin-bottom: 1.875em; }

.block--three-up-list ol {
  list-style: none;
  counter-reset: li;
  min-width: 0; }

.block--three-up-list li::before {
  content: counter(li) ".";
  color: #42b4e6;
  display: inline-block;
  width: 1.2em; }

.block--three-up-list li {
  counter-increment: li;
  display: flex;
  flex-flow: row nowrap; }

.block--three-up-list .three-up-list-inner {
  padding-left: 1.2em; }

@media (min-width: 40.063em) {
  .block--three-up-list ol {
    min-width: 290px; } }

.block--three-up-text ul {
  list-style: none; }

.block--three-up-text li strong {
  color: #42b4e6;
  text-transform: uppercase; }

.site-footer--top {
  text-align: center;
  padding: 2em 0;
  background: #ededed; }

.site-footer--bottom {
  text-align: center;
  padding: 1.2em 0;
  background: #19938E;
  color: #fff; }

.site-footer--social {
  padding-top: 1.5em; }
  .site-footer--social ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .site-footer--social li {
    display: inline-block; }
  .site-footer--social a {
    display: block;
    text-align: center;
    width: 2.4em;
    height: 2.4em;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #6b7576;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .site-footer--social a:hover {
      background: #42b4e6; }
    .site-footer--social a i {
      display: block;
      margin: 0;
      line-height: 2.15;
      font-size: 1.2em; }

.site-footer--contactbtn .button {
  margin: 0; }

.site-footer--tinylinks {
  font-size: .7em; }
  .site-footer--tinylinks a {
    text-transform: uppercase;
    color: #fff; }

.site-footer--copyright p {
  font-size: .75em;
  margin: 0; }

@media (min-width: 40.063em) {
  .site-footer--top {
    text-align: left; }
  .site-footer--bottom {
    text-align: left; }
  .site-footer--social, .site-footer--tinylinks {
    text-align: right; }
  .site-footer--social {
    padding-top: .25em; }
    .site-footer--social li {
      margin-right: .5em; }
      .site-footer--social li:last-child {
        margin-right: 0; } }

.modal-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(54, 59, 59, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease; }
  .is-showing-modal .modal-overlay {
    opacity: 1;
    visibility: visible; }

.modal-overlay--inner {
  max-width: 1440px;
  margin: 0 auto; }

.modal-overlay--btn {
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px; }

#modal-overlay-close {
  background: transparent;
  display: inline-block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 2.5em;
  height: 2.5em;
  color: #42b4e6; }
  #modal-overlay-close:hover i {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); }
  #modal-overlay-close i {
    display: block;
    text-align: center;
    line-height: 2;
    font-size: 1.25em;
    -webkit-transition: all 0.35s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 0.35s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 0.35s cubic-bezier(0.075, 0.82, 0.165, 1); }

.reveal-modal {
  box-shadow: none;
  outline: none;
  background: transparent;
  border: none;
  min-height: 70vh; }
  .reveal-modal .close-reveal-modal {
    color: #42b4e6; }
  .reveal-modal.open .modal-inner-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 0.7s cubic-bezier(0.075, 0.82, 0.165, 1); }

.modal-inner-content {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translatey(-20px);
  -moz-transform: translatey(-20px);
  -ms-transform: translatey(-20px);
  -o-transform: translatey(-20px);
  transform: translatey(-20px);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none; }

.reveal-modal-bg {
  background: rgba(54, 59, 59, 0.975); }

.simsci-modal-title {
  padding-top: 1rem; }
  .simsci-modal-title p {
    color: #fff;
    max-width: 42rem;
    margin-right: auto;
    margin-left: auto; }

.modal-form-content {
  max-width: 45rem;
  margin-right: auto;
  margin-left: auto; }
  .modal-form-content .hs-form-field {
    padding-bottom: 10px; }
  .modal-form-content .input .inputs-list {
    list-style: none;
    margin-left: 0; }
    .modal-form-content .input .inputs-list > li:first-child {
      margin-top: 10px; }
    .modal-form-content .input .inputs-list input[type="radio"], .modal-form-content .input .inputs-list input[type="checkbox"] {
      margin-right: 10px;
      margin-bottom: 10px; }
      .modal-form-content .input .inputs-list input[type="radio"] + span, .modal-form-content .input .inputs-list input[type="checkbox"] + span {
        -webkit-transition: all 0.35s ease;
        -moz-transition: all 0.35s ease;
        transition: all 0.35s ease; }
      .modal-form-content .input .inputs-list input[type="radio"]:checked + span, .modal-form-content .input .inputs-list input[type="checkbox"]:checked + span {
        color: #19938E; }
    .modal-form-content .input .inputs-list label {
      font-weight: normal; }
  .modal-form-content .hs-error-msgs {
    list-style: none;
    margin: 0 0 10px;
    padding: 0; }
    .modal-form-content .hs-error-msgs label {
      font-weight: normal;
      color: #fc3a3a;
      font-size: .8rem;
      padding-top: 3px; }
  .modal-form-content label {
    font-weight: bold;
    color: #fff; }
  .modal-form-content .hs-button.primary {
    background: #42b4e6;
    color: #fff;
    border: none;
    padding: 1rem 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .modal-form-content .hs-button.primary:hover {
      background: #1ea6e1; }

.site-loader-overlay {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease; }

@-webkit-keyframes loadBar {
  0% {
    -webkit-transform: translateX(-100%); }
  50% {
    -webkit-transform: translateX(0); }
  100% {
    -webkit-transform: translateX(100%); } }

@-moz-keyframes loadBar {
  0% {
    -moz-transform: translateX(-100%); }
  50% {
    -moz-transform: translateX(0); }
  100% {
    -moz-transform: translateX(100%); } }

@keyframes loadBar {
  0% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%); }
  50% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }
  100% {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%); } }

.site-loader-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10em;
  margin-left: -5em;
  margin-top: -.35em; }

.site-loader-bar {
  height: 0.5em;
  position: relative;
  overflow: hidden;
  background: #ededed;
  -webkit-transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .site-loader-bar span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #19938E;
    -webkit-animation: loadBar 1.25s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    -moz-animation: loadBar 1.25s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    animation: loadBar 1.25s cubic-bezier(0.77, 0, 0.175, 1) infinite; }

body.is-fully-loaded .site-loader-bar {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1); }

body.is-fully-loaded .site-loader-overlay {
  visibility: hidden;
  opacity: 0; }

.squeeze-landing .squeeze-hero,
.squeeze-landing .squeeze-hero.has-bg-banner {
  padding: 9.625em 0 4em; }
  .squeeze-landing .squeeze-hero > .row,
  .squeeze-landing .squeeze-hero.has-bg-banner > .row {
    z-index: 1;
    position: relative; }
  .squeeze-landing .squeeze-hero .squeeze-bg-banner,
  .squeeze-landing .squeeze-hero.has-bg-banner .squeeze-bg-banner {
    z-index: 0;
    height: 44.750em; }
  .squeeze-landing .squeeze-hero .squeeze-bg-banner .medium-6,
  .squeeze-landing .squeeze-hero.has-bg-banner .squeeze-bg-banner .medium-6 {
    width: 100%; }
  .squeeze-landing .squeeze-hero .squeeze-hero--copy,
  .squeeze-landing .squeeze-hero.has-bg-banner .squeeze-hero--copy {
    background: rgba(55, 55, 55, 0.5);
    padding: 4.375em 2em 3.75em;
    margin-right: 0; }
  .squeeze-landing .squeeze-hero .squeeze-hero--copy h1,
  .squeeze-landing .squeeze-hero.has-bg-banner .squeeze-hero--copy h1 {
    margin: 0 0 .675em;
    color: #fff; }
  .squeeze-landing .squeeze-hero .squeeze-hero--copy p,
  .squeeze-landing .squeeze-hero.has-bg-banner .squeeze-hero--copy p {
    color: #fff;
    font-size: 1.25em; }
  .squeeze-landing .squeeze-hero .squeeze-hero--supplement,
  .squeeze-landing .squeeze-hero.has-bg-banner .squeeze-hero--supplement {
    margin-top: 7em; }
  .squeeze-landing .squeeze-hero .squeeze-hero--supplement h3,
  .squeeze-landing .squeeze-hero.has-bg-banner .squeeze-hero--supplement h3 {
    color: #19938E;
    font-size: 1.625em; }
  .squeeze-landing .squeeze-hero .squeeze-hero--supplement ol,
  .squeeze-landing .squeeze-hero.has-bg-banner .squeeze-hero--supplement ol {
    list-style: none;
    counter-reset: li;
    margin-left: 1.7em;
    margin-top: 1em; }
  .squeeze-landing .squeeze-hero .squeeze-hero--supplement ol > li::before,
  .squeeze-landing .squeeze-hero.has-bg-banner .squeeze-hero--supplement ol > li::before {
    content: counter(li) ".";
    color: #42b4e6;
    display: inline-block;
    width: 1.4em;
    margin-left: -1.3em; }
  .squeeze-landing .squeeze-hero .squeeze-hero--supplement ol > li,
  .squeeze-landing .squeeze-hero.has-bg-banner .squeeze-hero--supplement ol > li {
    counter-increment: li;
    font-weight: 800;
    line-height: 2;
    margin-bottom: .575em; }
  .squeeze-landing .squeeze-hero .squeeze-hero--supplement ol li,
  .squeeze-landing .squeeze-hero.has-bg-banner .squeeze-hero--supplement ol li {
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1em; }

@media (min-width: 865px) {
  .squeeze-landing .squeeze-hero .squeeze-bg-banner .medium-6,
  .squeeze-landing .squeeze-hero.has-bg-banner .squeeze-bg-banner .medium-6 {
    width: 50%;
    margin-right: 3.125em; }
  .squeeze-landing .squeeze-hero .squeeze-hero--copy,
  .squeeze-landing .squeeze-hero.has-bg-banner .squeeze-hero--copy {
    padding: 4.375em 5em 3.75em; } }

.squeeze-hero {
  position: relative;
  padding: 4em 0; }
  .squeeze-hero.has-bg-banner {
    padding-top: 6em; }
    .squeeze-hero.has-bg-banner .squeeze-hero--copy {
      padding-top: 7em; }

.squeeze-hero--copy {
  padding-top: 3.5em;
  background: rgba(0, 0, 0, 0.5) !important; }
  .squeeze-hero--copy h1, .squeeze-hero--copy h2, .squeeze-hero--copy h3, .squeeze-hero--copy h4, .squeeze-hero--copy h5, .squeeze-hero--copy h6 {
    color: #19938E; }

.squeeze-bg-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 11em;
  background: #6b7576;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover; }

@media (min-width: 40.063em) {
  .has-bg-banner .squeeze-hero--copy {
    padding-top: 8em; } }

@media (min-width: 64.063em) {
  .squeeze-hero {
    padding: 5.5em 0 4em; }
    .squeeze-hero.has-bg-banner {
      padding-top: 10em; }
      .squeeze-hero.has-bg-banner .squeeze-hero--copy {
        padding-top: 10em; }
  .squeeze-bg-banner {
    height: 17em; } }

.close-mobile-form {
  display: none; }

.view-mobile-form {
  display: none;
  margin: 0.5em auto 0.3em auto;
  z-index: 600; }

.squeeze-hero--form {
  transition: all 300ms ease-in-out !important; }

.se-form-default {
  height: auto; }

@media (max-width: 40em) {
  #main.is-form-showing:before {
    content: '';
    height: 100vh;
    width: 100%;
    z-index: 50;
    transition: all 300ms ease;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(255, 255, 255, 0.97); }
  .squeeze-hero--form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 500;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    height: 100vh !important;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transform: translateY(100%); }
    .squeeze-hero--form.mobile-form--showing {
      transform: translateY(0%); }
  [data-sticky-option] {
    width: 100% !important; }
  .enableForm {
    position: fixed;
    bottom: 0;
    background: white;
    width: 100%;
    z-index: 600;
    transform: translateY(0%); }
    .enableForm.mobile-form--showing {
      transform: translateY(100%); }
  .view-mobile-form {
    display: block;
    margin: 0.5em auto 0.3em auto;
    z-index: 600; }
  .close-mobile-form {
    position: absolute;
    top: 15px;
    right: 10px;
    color: #19938E;
    z-index: 700;
    display: block;
    font-size: 1.9em; } }

.the-error-message .title--large {
  padding-bottom: .4em; }

.the-error-message span {
  color: #19938E; }

.error-page {
  margin-top: 3em;
  margin-bottom: 3em;
  padding-top: 2em;
  padding-bottom: 2em; }
  .error-page h2 {
    color: #19938E;
    text-align: center;
    padding-top: .4em;
    padding-bottom: .8em; }
  .error-page ul li {
    color: #19938E;
    margin-bottom: -.8em; }
    .error-page ul li p {
      color: #373737;
      font-size: .8em; }
  .error-page-content h5 {
    color: #19938E;
    padding-bottom: .4em; }

.is-error-content-right {
  padding-top: 1.4em; }

@media (min-width: 64.063em) {
  .is-error-content-right {
    padding-top: 0; } }

.full-nav-header {
  position: relative;
  z-index: 9999; }

.header-top-half {
  background-color: #fff;
  color: #fff;
  padding: 12px 0; }
  .header-top-half a {
    color: #373737; }
    .header-top-half a span {
      font-size: .75em;
      font-weight: bold; }
  .header-top-half ul {
    display: inline-block;
    margin-top: 15px;
    margin-left: 0;
    margin-bottom: 0;
    list-style-type: none; }
    .header-top-half ul li {
      display: inline-block;
      color: #373737; }
  .header-top-half ul.full-nav-addthis {
    margin-left: 18px; }
    .header-top-half ul.full-nav-addthis li:first-child {
      font-size: 0.8em;
      font-weight: bold; }
  .header-top-half .addthis_inline_share_toolbox {
    display: block;
    position: relative;
    top: 3px; }

li.vertical-spacer {
  display: none !important;
  opacity: .25; }

.full-nav-auxlinks {
  text-align: center; }

.full-nav-brand {
  width: 11em;
  margin: 0 auto; }

.full-nav-logo {
  display: block; }

.full-nav-globallink li a i.fa {
  transition: color .2s ease; }

.full-nav-globallink li a span {
  position: relative;
  display: inline-block;
  transition: all .2s ease; }

.full-nav-globallink li a span:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #bfbfbf;
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform .2s ease; }

.full-nav-globallink li a:hover span {
  transform: translateY(-2px); }

.full-nav-globallink li a:hover span:before {
  transform-origin: left center;
  transform: scale(1, 1); }

.header-mid-half {
  background: #19938E;
  border-bottom: 4px solid #13706c; }

.header-mid-title {
  padding-top: 28px;
  padding-bottom: 24px;
  text-align: center; }
  .header-mid-title h3 {
    line-height: 1;
    color: #fff;
    margin: 0;
    font-size: 1.1em; }

.header-bottom-half {
  background-color: #ebebeb; }
  .header-bottom-half .top-bar {
    background: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .header-bottom-half .small-centered {
    padding: 0; }

.top-bar .has-dropdown a {
  color: #373737; }
  .top-bar .has-dropdown a:hover {
    color: #19938E; }

.top-bar ul > li.has-dropdown a:after {
  border-color: #19938E transparent transparent transparent; }

.top-bar-section ul li {
  background: transparent; }

.top-bar-section li:not(.has-form) a:not(.button) {
  background: transparent; }
  .top-bar-section li:not(.has-form) a:not(.button):hover {
    background-color: #222;
    color: #19938E; }

.top-bar-section ul .has-dropdown > a {
  text-transform: uppercase; }
  .top-bar-section ul .has-dropdown > a:hover {
    color: #19938E !important; }

.top-bar-section > ul .dropdown .has-dropdown > a {
  text-transform: none; }

.top-bar-section .has-dropdown.moved > .dropdown {
  background-color: #373737; }

.top-bar-section ul li ul li a:hover {
  background: #222 !important; }

.at-style-responsive {
  padding-top: 5px; }
  .at-style-responsive .at-share-btn {
    padding: 0 !important;
    margin-bottom: -2px !important; }

.header-right-link:hover {
  text-decoration: underline; }

.top-bar .toggle-topbar.menu-icon a {
  color: #373737;
  transition: all .2s ease; }
  .top-bar .toggle-topbar.menu-icon a span:after {
    box-shadow: 0 0 0 1px #373737, 0 7px 0 1px #373737, 0 14px 0 1px #373737; }
  .top-bar .toggle-topbar.menu-icon a:hover {
    color: #19938E; }

ul.dropdown > li a {
  text-transform: none; }

ul.dropdown li a {
  border-bottom: 1px solid #474747; }

ul.dropdown > li:last-child > a {
  border-bottom: none; }

.top-bar.expanded .title-area {
  background: transparent; }

.top-bar.expanded .toggle-topbar.menu-icon a {
  color: #373737; }
  .top-bar.expanded .toggle-topbar.menu-icon a span:after {
    box-shadow: 0 0 0 1px #373737, 0 7px 0 1px #373737, 0 14px 0 1px #373737; }

@media (min-width: 40.063em) {
  li.vertical-spacer {
    display: inline-block !important; }
  .header-mid-title {
    text-align: left; }
  .full-nav-brand {
    margin: 0; }
  .header-top-half ul {
    margin-top: 5px; }
  .full-nav-auxlinks {
    text-align: right; }
  .header-top-half ul.full-nav-addthis {
    margin-left: 0; }
  .top-bar-section ul .has-dropdown > a {
    font-size: .6em;
    padding-left: -5px !important;
    padding-right: 20px !important; }
  .top-bar-section ul .has-dropdown > a:after {
    right: -8px; }
  .top-bar .name {
    display: none; }
  .top-bar .fa-search {
    display: block;
    font-size: 1.4em;
    position: absolute;
    padding-right: 15px;
    right: 0;
    top: 12px; }
  .top-bar-section .dropdown li:not(.has-form):not(.active):hover > a:not(.button):hover {
    color: #19938E !important;
    background-color: #333; } }

@media (min-width: 64.063em) {
  .top-bar-section ul .has-dropdown > a {
    font-size: .8em;
    padding-left: 20px !important;
    padding-right: 35px !important; }
  .top-bar-section ul .has-dropdown > a:after {
    right: -2px; }
  .header-right-link {
    position: absolute;
    top: 75%;
    bottom: 50%;
    right: 0; } }

.block--speclist {
  padding: 0; }
  .block--speclist .row {
    position: relative;
    z-index: 499; }

.block--speclist-bottom {
  padding-top: 1.5em;
  padding-bottom: 3em; }

.block--speclist-top {
  padding-top: 3em; }

.block-speclist_title {
  padding: 1em;
  background: #f2f2f2; }
  .block-speclist_title h5 {
    font-size: 1.1em;
    color: #a6a6a6;
    margin: 0;
    font-weight: bold;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    transition: color 0.3s ease; }

.block-speclist_def {
  padding: .8em 1em 1.2em;
  position: relative;
  overflow: hidden; }
  .block-speclist_def .speclist-close {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 0;
    right: -10px;
    color: #ababab;
    font-size: 1.1em;
    padding: 10px;
    text-align: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease; }

.speclist-def-outer {
  position: relative;
  overflow: hidden; }
  .speclist-def-outer:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(rgba(250, 250, 250, 0.05) 0%, #fafafa 75%, #fafafa 100%); }

.has-spectoggle {
  position: relative; }

[data-spec-toggle] .block-speclist_title {
  position: relative;
  cursor: pointer; }
  [data-spec-toggle] .block-speclist_title:after {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
    font-family: 'FontAwesome';
    content: "\f067";
    font-size: 1.1em;
    color: #ababab;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease; }
  [data-spec-toggle] .block-speclist_title:hover h5 {
    color: #19938E; }

[data-spec-toggle] .speclist-close {
  display: none; }

[data-spec-toggle].spec-toggle-open .block-speclist_title:after {
  color: #19938E;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.row.spec-toggle-open .block-speclist_title h5,
.row.spec-toggle-open .speclist-close {
  color: #19938E; }

.row.spec-toggle-open .speclist-close {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

@media (min-width: 40.063em) {
  .block--speclist-bottom {
    padding: 2em 0;
    position: relative; }
    .block--speclist-bottom:before {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 25.5%;
      background: #f0f0f0;
      -webkit-transition: width 0.5s ease;
      -moz-transition: width 0.5s ease;
      transition: width 0.5s ease; }
    .block--speclist-bottom .row {
      padding-top: 1.2rem;
      padding-bottom: 0;
      border-bottom: 2px solid #e6e6e6; }
      .block--speclist-bottom .row:last-of-type {
        border-bottom: none; }
  .block-speclist_title {
    padding-left: 0;
    background: none; }
  .block-speclist_def {
    padding-right: 10%; }
  [data-spec-toggle] .has-spectoggle {
    position: relative; }
  [data-spec-toggle] .speclist-close {
    display: block; }
    [data-spec-toggle] .speclist-close:hover {
      color: #19938E; }
  [data-spec-toggle] .block-speclist_title:after {
    display: none; } }

@media (min-width: 64.063em) {
  .block--speclist-bottom {
    padding: 2em 0 3em; }
    .block--speclist-bottom:before {
      bottom: 0;
      width: 26%; } }

@media (min-width: 1199px) {
  .block--speclist-bottom:before {
    width: 27%; } }

@media (min-width: 1280px) {
  .block--speclist-bottom:before {
    width: 28.3333%; } }

@media (min-width: 1370px) {
  .block--speclist-bottom:before {
    width: 29.666667%; } }

@media (min-width: 1440px) {
  .block--speclist-bottom:before {
    width: 31%; } }

@media (min-width: 1540px) {
  .block--speclist-bottom:before {
    width: 32.5%; } }

/*
@media (min-width:1670px) {

	.block--speclist-bottom {
		&:before {
			width: 33.5%;
		}
	}

}

@media (min-width:1770px) {

	.block--speclist-bottom {
		&:before {
			width: 34.333333%;
		}
	}

}

*/
.block-alt {
  position: relative; }

.block-alt_img {
  position: relative; }
  .block-alt_img figure {
    position: relative;
    height: 0;
    padding-bottom: 42%; }
  .block-alt_img img {
    position: absolute;
    width: 100%;
    display: block; }

.block-alt_img-overlay {
  display: block;
  position: absolute;
  z-index: 99;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 22.5%;
  background: rgba(25, 147, 142, 0.8); }
  .no-touch .block-alt_img-overlay {
    mix-blend-mode: multiply; }

.block-alt_img-border {
  display: block;
  position: absolute;
  z-index: 101;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #19938E; }

.block-alt_content h3 {
  margin: 0 0 .4rem; }

.block-alt_content .button {
  margin: 0; }

.block-alt_liner {
  padding: 20px 20px 30px; }

.block-alt_top,
.block-alt_bot {
  position: relative;
  z-index: 499; }

.block-alt_top .block-alt_img img {
  bottom: 0;
  left: 0; }

.block-alt_bot .block-alt_img img {
  top: 0;
  left: 0; }

.block-alt_bot .block-alt_img.has-top-bleed img {
  top: auto;
  bottom: 0; }

.block-alt_bot .block-alt_img figure {
  overflow: hidden; }

.block-halfimg .block-alt_img figure {
  height: auto;
  padding-bottom: 0; }

.block-halfimg .block-alt_img img {
  position: relative;
  width: 100%;
  display: block; }

@media (min-width: 40.063em) {
  .block-alt_img {
    width: 55%; }
  .block-alt_content {
    width: 45%; }
  .block-alt_top .block-alt_img,
  .block-halfimg_left .block-alt_img {
    float: left; }
  .block-alt_top .block-alt_content,
  .block-halfimg_left .block-alt_content {
    float: left; }
  .block-alt_bot .block-alt_img,
  .block-halfimg_right .block-alt_img {
    float: right; }
    .block-alt_bot .block-alt_img figure,
    .block-halfimg_right .block-alt_img figure {
      overflow: visible; }
  .block-alt_bot .block-alt_content,
  .block-halfimg_right .block-alt_content {
    right: 55%; }
  .block-alt_bot .block-alt_liner,
  .block-halfimg_right .block-alt_liner {
    float: right; }
  .block-alt_liner {
    max-width: 29.5em;
    padding: 20px;
    padding-top: 0;
    padding-bottom: 0; } }

@media (min-width: 64.063em) {
  .block-alt_liner {
    padding: 20px 30px; } }

@media (min-width: 90.063em) {
  .block-alt_liner {
    padding: 35px; } }

.block--tallcards > .row {
  position: relative;
  z-index: 199;
  padding-top: 1.25rem;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-top: -2rem;
  margin-bottom: -2rem; }

.block-tallcards--bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; }

@media (max-width: 790px) {
  .block--tallcards .medium-block-grid-2 p, .block--cards .medium-block-grid-2 p {
    margin: 0;
    font-size: 1em;
    line-height: 1.3; } }

@media (max-width: 585px) {
  .block--tallcards .medium-block-grid-2 p, .block--tallcards .medium-block-grid-3 p, .block--cards .medium-block-grid-2 p, .block--cards .medium-block-grid-3 p {
    margin: 0.5em 0em;
    font-size: 1em;
    line-height: 1.2; }
  .block--tallcards .medium-block-grid-2 li, .block--tallcards .medium-block-grid-3 li, .block--cards .medium-block-grid-2 li, .block--cards .medium-block-grid-3 li {
    width: 80% !important;
    float: none !important;
    margin: 0px 0px 0px 10% !important; }
  .block--tallcards .medium-block-grid-4 h3, .block--cards .medium-block-grid-4 h3 {
    font-size: 0.8em; }
  .block--tallcards .medium-block-grid-4 li, .block--cards .medium-block-grid-4 li {
    width: 50%; }
    .block--tallcards .medium-block-grid-4 li p, .block--cards .medium-block-grid-4 li p {
      font-size: 0.7em; }
  .block--tallcards .medium-block-grid-4 .hovercard-infopanel--liner h4, .block--cards .medium-block-grid-4 .hovercard-infopanel--liner h4 {
    font-size: 0.7em; } }

.hovercard-fullbleed {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  transition: all 0.35s ease; }
  .hovercard-fullbleed figure {
    position: relative; }
    .hovercard-fullbleed figure img {
      display: block;
      width: 100% !important;
      height: auto !important;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: -moz-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .hovercard-fullbleed:hover {
    box-shadow: rgba(107, 117, 118, 0.1) 0 2px 10px; }
    .hovercard-fullbleed:hover .hovercard-infopanel {
      -webkit-transform: translateY(12%);
      -moz-transform: translateY(12%);
      -ms-transform: translateY(12%);
      -o-transform: translateY(12%);
      transform: translateY(12%); }
    .hovercard-fullbleed:hover .hovercard-titlepanel h3 {
      -webkit-transform: translateY(150%);
      -moz-transform: translateY(150%);
      -ms-transform: translateY(150%);
      -o-transform: translateY(150%);
      transform: translateY(150%);
      opacity: 0;
      visibility: hidden; }
    .hovercard-fullbleed:hover .hovercard-img--bg {
      -webkit-transform: translateY(-120%);
      -moz-transform: translateY(-120%);
      -ms-transform: translateY(-120%);
      -o-transform: translateY(-120%);
      transform: translateY(-120%); }
    .hovercard-fullbleed:hover figure img {
      -webkit-transform: translateY(-50%) scale(1.1);
      -moz-transform: translateY(-50%) scale(1.1);
      -ms-transform: translateY(-50%) scale(1.1);
      -o-transform: translateY(-50%) scale(1.1);
      transform: translateY(-50%) scale(1.1); }
    .hovercard-fullbleed:hover .video-btn {
      -webkit-transform: translateY(100%);
      -moz-transform: translateY(100%);
      -ms-transform: translateY(100%);
      -o-transform: translateY(100%);
      transform: translateY(100%);
      opacity: 0; }

.hovercard-hasvideo .video-btn {
  z-index: 1;
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hovercard-img--bg {
  display: block;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 147, 142, 0.85);
  mix-blend-mode: multiply;
  -webkit-transform: translateY(-5em);
  -moz-transform: translateY(-5em);
  -ms-transform: translateY(-5em);
  -o-transform: translateY(-5em);
  transform: translateY(-5em);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: -moz-transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hovercard-img--border {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #19938E; }

.hovercard-tall .hovercard-img--bg {
  -webkit-transform: translateY(-6em);
  -moz-transform: translateY(-6em);
  -ms-transform: translateY(-6em);
  -o-transform: translateY(-6em);
  transform: translateY(-6em); }

.hovercard-tall .hovercard-titlepanel h3 {
  margin-top: -6px; }

.hovercard-titlepanel {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 5em; }
  .hovercard-titlepanel h3 {
    font-size: 1.35em;
    padding: 20px;
    padding-top: 25px;
    color: #fff;
    position: relative;
    z-index: 5;
    opacity: 1;
    margin: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    transition: all 0.35s ease; }

.hovercard-infopanel {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .hovercard-infopanel h4 {
    font-size: 1.4em;
    padding-top: 5%;
    color: #19938E; }

.hovercard-infopanel--liner {
  padding: 10% 8%; }

.hover-card {
  -webkit-box-shadow: rgba(107, 117, 118, 0.15) 0 2px 2px;
  -moz-box-shadow: rgba(107, 117, 118, 0.15) 0 2px 2px;
  box-shadow: rgba(107, 117, 118, 0.15) 0 2px 2px; }

.hover-card:hover .hover-card_content {
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -o-transform: translateY(10%);
  transform: translateY(10%); }
  .hover-card:hover .hover-card_content p, .hover-card:hover .hover-card_content a {
    opacity: 1; }

.hover-card_liner {
  height: 0;
  padding-bottom: 132%;
  position: relative;
  overflow: hidden; }

.hover-card_img {
  background: #6b7576;
  padding-bottom: 132%; }
  .hover-card_img img {
    display: block;
    width: auto;
    height: 238px; }

.hover-card_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 92%;
  background: #fff;
  -webkit-transition: all 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translateY(65%);
  -moz-transform: translateY(65%);
  -ms-transform: translateY(65%);
  -o-transform: translateY(65%);
  transform: translateY(65%); }
  .hover-card_content p {
    margin: 0;
    font-size: .8em;
    line-height: 1.3; }
  .hover-card_content .button {
    font-size: .75em;
    padding-right: 1.3em;
    padding-left: 1.3em; }
    html.touch .hover-card_content .button {
      padding-top: .6em;
      padding-bottom: .7em; }
  .hover-card_content p, .hover-card_content a {
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease; }

.hover-card_title {
  padding: 10px 10px 5px; }
  .hover-card_title small {
    display: block;
    font-weight: 500;
    font-size: .85em;
    text-transform: uppercase;
    padding-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #42b4e6; }
  .hover-card_title h3 {
    line-height: 1.3;
    margin: 0;
    font-size: 1rem;
    color: #19938E; }

.hover-card_desc, .hover-card_btn {
  padding: 0 10px; }

.hover-card_desc {
  padding-bottom: 10px; }

.hover-card_btn {
  position: absolute;
  padding: 10px;
  background: #fff;
  bottom: 10px;
  left: 0;
  width: 100%; }
  .hover-card_btn .button {
    margin: 0; }

.hovercards-row {
  max-width: 450px;
  margin: 0 auto; }

@media (min-width: 430px) {
  .hover-card_title {
    padding: 15px 15px 10px; }
    .hover-card_title h3 {
      font-size: 1.25rem; }
  .hover-card_desc, .hover-card_btn {
    padding: 0 15px; }
  .hover-card_desc {
    padding-bottom: 10px; }
  .hover-card_btn {
    position: static;
    padding-top: 10px;
    padding-bottom: 10px; } }

@media (min-width: 641px) {
  .hover-card_btn {
    position: absolute;
    bottom: 15px; } }

@media (min-width: 40.063em) {
  .hovercards-row {
    max-width: none;
    margin: 0; }
  .hover-card_title {
    padding: 10px 10px 5px; }
    .hover-card_title h3 {
      font-size: 1rem; }
  .hover-card_desc, .hover-card_btn {
    padding: 0 10px; }
  .hover-card_desc {
    padding-bottom: 5px; } }

@media (min-width: 900px) {
  .hover-card_btn {
    position: static; } }

@media (min-width: 992px) {
  .hover-card_title {
    padding: 15px 15px 10px; }
    .hover-card_title h3 {
      font-size: 1.2rem; }
  .hover-card_desc p {
    font-size: .95em; }
  .hover-card_desc, .hover-card_btn {
    padding: 0 15px; }
  .hover-card_btn {
    padding-top: 15px;
    position: static; }
    .hover-card_btn .button {
      font-size: .9em; } }

@media (min-width: 1320px) {
  .hover-card_title {
    padding: 20px 20px 10px; }
    .hover-card_title h3 {
      font-size: 1.3rem; }
  .hover-card_desc, .hover-card_btn {
    padding: 0 20px; }
  .hover-card_btn {
    padding-top: 20px; } }

@media (min-width: 992px) {
  .block-newsitem .hover-card_btn {
    padding-top: 15px; } }

.block--newsreel,
.block--boxslider {
  padding: 3em 0; }
  .block--newsreel .hover-card_title h3.de-blog-title,
  .block--boxslider .hover-card_title h3.de-blog-title {
    font-size: 1.1rem; }

.newsreel-row {
  position: relative; }
  .newsreel-row:after {
    clear: both;
    content: "";
    display: table; }
  .newsreel-row:before {
    content: "";
    display: table; }
  .newsreel-row .flickity-prev-next-button {
    line-height: 1;
    display: block;
    border-radius: 0;
    margin: 0;
    margin-top: -25px;
    background: rgba(255, 255, 255, 0.9);
    width: auto;
    height: auto;
    padding: 1rem;
    box-shadow: rgba(55, 55, 55, 0.1) 0 1px 2px;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    transition: all 0.35s ease; }
    .newsreel-row .flickity-prev-next-button:before {
      display: block;
      background: #19938E;
      padding: .3rem 1rem;
      font-size: 1.5rem; }
    .newsreel-row .flickity-prev-next-button svg {
      display: block;
      background: #42b4e6; }
      .newsreel-row .flickity-prev-next-button svg path {
        fill: #fff; }
    .newsreel-row .flickity-prev-next-button.previous {
      left: 0;
      padding-left: 0; }
      .newsreel-row .flickity-prev-next-button.previous[disabled] {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%); }
    .newsreel-row .flickity-prev-next-button.next {
      right: 0;
      padding-right: 0; }
      .newsreel-row .flickity-prev-next-button.next[disabled] {
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%); }

.block-newsitem {
  width: 245px;
  float: left;
  margin-right: 25px;
  margin-top: 5px;
  margin-bottom: 5px; }
  .block-newsitem .hover-card_title h5 {
    line-height: 1; }

.block-news_signup {
  z-index: 999;
  width: 300px;
  float: left;
  top: 0;
  left: 50%; }
  .block-news_signup h4 {
    line-height: 1.1;
    font-size: 1.55rem;
    margin-bottom: 1rem;
    color: #19938E; }
  .block-news_signup p {
    line-height: 1.5;
    font-size: .9em; }
  .block-news_signup h6 {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 1.5em; }

.block-news_signup-liner {
  position: relative;
  padding: 30px 0 0;
  border-top: 2px solid #f2f2f2; }

@media (min-width: 40.063em) {
  .block--newsreel,
  .block--boxslider {
    padding: 3.7em 0; }
  .newsreel-row .flickity-prev-next-button {
    display: none; }
  .block-newsitem {
    width: 270px; } }

@media (min-width: 64.063em) {
  .block-news {
    padding: 5em 0; } }

.block--cards.cards-static .hovercard-static {
  position: relative;
  overflow: hidden;
  cursor: pointer; }

.block--cards.cards-static .hovercard-static-link {
  display: block; }

.block--cards.cards-static .hovercard-static-title {
  color: #fff;
  font-size: 1.125em;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%; }
  .block--cards.cards-static .hovercard-static-title .title-inner {
    position: relative; }
  .block--cards.cards-static .hovercard-static-title span {
    position: relative;
    z-index: 1;
    padding: 31px;
    width: 100%;
    display: block;
    border-bottom: 10px solid #19938E;
    transition: all .1s ease-out; }
  .block--cards.cards-static .hovercard-static-title .hovercard-static-titlepanel {
    background: rgba(25, 147, 142, 0.8);
    mix-blend-mode: multiply;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; }

.block--cards.cards-static .hovercard-static:hover .hovercard-static-title span {
  border-bottom: 20px solid #19938E; }

.block--cards.cards-static .hovercard-description {
  margin-top: 36px; }

.block--cards.cards-static .cards-row:first-child {
  margin-top: 62px; }

.static-header-hero {
  background-size: cover; }

.the--cta-box {
  background-color: rgba(0, 0, 0, 0.5);
  margin: 4em 0em 2em 0em;
  padding: 2em;
  width: 100%;
  -webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1); }
  .the--cta-box h1 {
    color: white;
    font-family: "Dual", Arial, sans-serif;
    font-weight: lighter;
    font-size: 28px;
    -webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1); }
  .the--cta-box p {
    font-size: 14px;
    color: white;
    font-family: "Dual", Arial, sans-serif;
    -webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1); }
  .the--cta-box .cta--nester {
    padding: 1em 0em 2em 0em; }

@media (min-width: 500px) {
  .the--cta-box h1 {
    font-size: 38px; }
  .the--cta-box p {
    font-size: 16px; } }

@media (min-width: 900px) {
  .the--cta-box {
    width: 75%; }
    .the--cta-box h1 {
      font-size: 48px; }
    .the--cta-box p {
      font-size: 20px; } }

.social-nest ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  .social-nest ul li {
    -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
    margin: 0em auto 0.4em auto;
    text-align: left;
    font-weight: bolder;
    border-radius: 5px;
    width: 130px;
    text-align: center;
    padding-top: 0.1em; }
  .social-nest ul span {
    font-size: 0.8em; }

.social-nest .twitter,
.social-nest .linkedin {
  background: #0693e3;
  color: white; }
  .social-nest .twitter a,
  .social-nest .linkedin a {
    color: white;
    padding: 0.1em 1.4em 0em 1.4em; }

.social-nest .facebook {
  background: #4065b5;
  color: white; }
  .social-nest .facebook a {
    color: white;
    padding: 0.1em 1.4em 0em 1.4em; }

.social-nest .google {
  color: red;
  background: white; }
  .social-nest .google a {
    color: red;
    padding: 0.1em 1.4em 0em 1.4em; }

@media (min-width: 700px) {
  .social-section-full {
    overflow: hidden; }
  .social-nest ul li {
    -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
    margin: 0em 0.4em;
    text-align: left;
    font-weight: bolder;
    border-radius: 5px;
    width: auto; } }

.fa-search {
  color: #6b7576;
  font-size: 1.2em !important;
  transition: all 800ms ease;
  cursor: pointer; }
  .fa-search:hover {
    color: #19938E; }

.search-title {
  color: white;
  text-align: center;
  font-family: "Dual", Arial, sans-serif; }

.search-form {
  max-width: 800px;
  margin: auto;
  padding-top: 4em; }
  .search-form input {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: 0px;
    outline: none;
    font-family: "Dual", Arial, sans-serif;
    color: white;
    float: left; }
  .search-form input[type="text"] {
    background: none;
    box-shadow: none;
    border-bottom: 2px solid #19938E;
    width: 80%; }
    .search-form input[type="text"]::-webkit-input-placeholder {
      color: white;
      text-transform: uppercase; }
    .search-form input[type="text"]::-moz-placeholder {
      color: white;
      text-transform: uppercase; }
    .search-form input[type="text"]:-moz-placeholder {
      color: white;
      text-transform: uppercase; }
    .search-form input[type="text"]:-ms-input-placeholder {
      color: white;
      text-transform: uppercase; }
  .search-form input[type="submit"] {
    background: #EA3837;
    color: white;
    height: 37px;
    width: 20%; }

.social-section-full {
  overflow: hidden; }

.social-shn {
  position: relative;
  padding-bottom: 8em; }
  .social-shn h3 {
    color: #19938E; }
  .social-shn .social-nest {
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 0.5em;
    float: left;
    position: relative;
    overflow: hidden; }
    .social-shn .social-nest:hover .social-icon-nest {
      bottom: 0;
      right: 0;
      transform: translate(0%, 0%); }
    .social-shn .social-nest:hover .social-inner {
      position: absolute;
      transform: translateY(100%);
      -webkit-transition: all 1200ms cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: all 1200ms cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 1200ms cubic-bezier(0.165, 0.84, 0.44, 1); }
    .social-shn .social-nest:hover .big-social--name {
      transform: translateY(0%);
      opacity: 1;
      -webkit-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1); }
  .social-shn .social-icon-nest {
    position: absolute;
    bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    -webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translate(-80%, 80%);
    background-color: rgba(25, 147, 142, 0.99); }
    .social-shn .social-icon-nest i {
      position: relative;
      color: white;
      z-index: 4; }
    .social-shn .social-icon-nest a {
      color: white; }
  .social-shn .social-inner {
    position: absolute;
    left: -0.6em;
    bottom: -1em;
    padding: 1em;
    font-size: 1.2em;
    color: white;
    -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1); }
  .social-shn figure img {
    width: 100%;
    height: auto; }

.big-social--name {
  position: absolute;
  width: 100%;
  left: 50%;
  margin-left: -50%;
  height: 100%;
  top: 30%;
  color: white;
  z-index: 10;
  font-size: 3em;
  transform: translateY(10%);
  opacity: 0;
  -webkit-transition: all 0ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0ms cubic-bezier(0.165, 0.84, 0.44, 1); }
  .big-social--name p {
    margin: 0; }

@media (min-width: 500px) {
  .social-shn {
    overflow: hidden; }
    .social-shn .social-nest {
      width: 48%;
      margin-left: 1%;
      margin-right: 1%;
      margin-bottom: 0.5em; }
    .social-shn .social-inner {
      position: absolute;
      left: -0.5em;
      bottom: -1em;
      padding: 1em;
      font-size: 1.6em;
      color: white;
      -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1); } }

@media (min-width: 600px) {
  .social-shn .social-inner {
    left: -0.4em;
    bottom: -0.8em; } }

@media (min-width: 720px) {
  .social-shn .social-inner {
    left: -0.3em;
    bottom: -0.6em; } }

@media (min-width: 750px) {
  .social-shn .social-nest {
    width: 24%;
    margin-left: 1.33%;
    margin-right: 0;
    margin-bottom: 0em; }
    .social-shn .social-nest:first-of-type {
      margin-left: 0px; }
  .social-shn .social-inner {
    position: absolute;
    left: -0.1em;
    bottom: -0.5em;
    padding: 1em;
    font-size: 1.2em;
    color: white;
    -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1); } }

@media (min-width: 755px) {
  .social-shn .social-inner {
    left: -0.5em;
    bottom: -1em; } }

@media (min-width: 994px) {
  .social-shn .social-inner {
    left: -0.3em;
    bottom: -0.8em; } }

@media (min-width: 1125px) {
  .social-shn .social-inner {
    left: -0.2em;
    bottom: -0.5em; } }

.social-follow_us .line-spacer {
  margin: 0px 5px;
  color: #19938E;
  font-size: 1.3em;
  display: none; }

.social-follow_us i {
  margin: 10px 0px;
  color: #cccccc;
  font-size: 1.9em;
  width: 33%;
  float: left; }
  .social-follow_us i:hover {
    color: #19938E;
    -webkit-transition: color 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: color 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: color 600ms cubic-bezier(0.165, 0.84, 0.44, 1); }

.social-follow_ {
  color: #19938E;
  font-family: #373737;
  font-size: 2em;
  width: 100%;
  display: inline-block;
  margin-top: 1em; }

@media (min-width: 700px) {
  .social-follow_us .line-spacer {
    margin: 0px 5px;
    color: #19938E;
    font-size: 1.3em;
    display: inline-block; }
  .social-follow_us i {
    margin: 0px 20px;
    color: #cccccc;
    font-size: 1.2em;
    width: auto;
    float: none; }
    .social-follow_us i:hover {
      color: #19938E;
      -webkit-transition: color 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: color 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: color 600ms cubic-bezier(0.165, 0.84, 0.44, 1); }
  .social-follow_ {
    color: #19938E;
    font-family: #373737;
    font-size: 1.3em;
    display: inline;
    margin-top: 0em; } }

.large--link-footer {
  background-color: #626469;
  min-height: 100px;
  height: auto;
  position: relative; }

.linker-containers {
  float: left; }
  .linker-containers h5 {
    margin: 0em 0em 0.4em 0em;
    color: #fff;
    font-size: 1.2em;
    text-transform: uppercase;
    font-family: "Dual", Arial, sans-serif;
    position: relative;
    display: inline-block; }
    .linker-containers h5:before {
      content: "";
      position: absolute;
      right: -24px;
      height: 12px;
      top: -1px;
      width: 1px;
      transition: all 400ms ease;
      background-color: white; }
    .linker-containers h5:after {
      content: "";
      position: absolute;
      right: -29.5px;
      height: 1px;
      background-color: white;
      width: 12px;
      top: 4px; }
    .linker-containers h5.is-showing-links {
      color: #19938E; }
      .linker-containers h5.is-showing-links:before {
        content: "";
        transform: rotate(90deg);
        transition: all 400ms ease; }
      .linker-containers h5.is-showing-links:after {
        content: ""; }
  .linker-containers ul {
    width: 100%;
    padding: 0em 0em 1em 0em;
    font-size: 0.8em;
    list-style-type: none;
    margin: 0;
    color: #BBBCBE;
    font-family: "Dual", Arial, sans-serif; }
    .linker-containers ul a {
      color: #BBBCBE;
      font-family: "Dual", Arial, sans-serif;
      text-decoration: none; }
  .linker-containers li {
    display: none; }

.logo-offset_ {
  width: 100%;
  padding-bottom: 2em; }

.the-large-links {
  width: 100%; }

@media (min-width: 600px) {
  .linker-containers ul {
    width: 100%;
    padding: 0em 0em 1em 0em;
    list-style-type: none;
    margin: 0 1.5%;
    float: left;
    font-family: "Dual", Arial, sans-serif; }
    .linker-containers ul li {
      margin-bottom: 0.2em; }
    .linker-containers ul a {
      font-family: "Dual", Arial, sans-serif;
      text-decoration: none; }
  .logo-offset_ {
    width: 30%;
    padding-bottom: 0em; }
  .the-large-links {
    width: 100%;
    padding-top: 1em; } }

@media (min-width: 900px) {
  .linker-containers {
    width: 100%; }
    .linker-containers h5 {
      font-size: 1em; }
      .linker-containers h5:before {
        content: "";
        display: none; }
      .linker-containers h5:after {
        content: "";
        display: none; }
      .linker-containers h5.is-showing-links {
        color: #fff; }
    .linker-containers ul {
      width: 12%;
      padding: 0em 0em 1em 0em;
      list-style-type: none;
      margin: 0 2%;
      float: left;
      font-family: "Dual", Arial, sans-serif; }
      .linker-containers ul li {
        margin-bottom: 0.2em;
        display: block !important;
        font-size: 0.9em; }
      .linker-containers ul a {
        font-family: "Dual", Arial, sans-serif;
        text-decoration: none; }
        .linker-containers ul a:hover {
          color: #19938E; }
  .logo-offset_ {
    width: 30%;
    padding-bottom: 2em;
    padding-right: 2em;
    padding-left: 1.2em; }
  .the-large-links {
    width: 100%;
    padding-top: 1em; } }

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

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          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 */
  -webkit-text-decoration: underline dotted;
          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 {
  -webkit-box-sizing: border-box;
          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"] {
  -webkit-box-sizing: border-box;
          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; }

body {
  font-family: "Muli", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 17px;
  color: #3f3f3f;
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none; }

a {
  color: #590888;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none; }
  a:hover {
    color: #3E1054; }

h1, h2, h3, h4, h5, h6, .lead {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  color: #3D1152; }

h1, .lead {
  font-size: 2.4rem; }

h2 {
  font-size: 2rem; }

h3 {
  font-size: 1.6rem; }

h4 {
  font-size: 1.2rem; }

h5 {
  font-size: 1.4rem; }

h6 {
  font-size: 1rem; }

.hl-halfmargin {
  margin-bottom: .5rem; }

.hero-hl {
  font-size: 2.4rem; }

p {
  margin: 0;
  font-size: 100%;
  line-height: 1.6;
  letter-spacing: .5px; }
  p.fake-hl {
    font-size: 195%;
    line-height: 1.2;
    font-family: "Barlow"; }

.lead {
  margin-top: 3.667rem !important; }

@media (min-width: 541px) {
  p.fake-hl {
    font-size: 210%; }
  .hero-hl {
    font-size: 2.6rem; } }

@media (min-width: 769px) {
  p.fake-hl {
    font-size: 235%; }
  .hero-hl {
    font-size: 2.8rem; } }

@media (min-width: 1281px) {
  h2 {
    font-size: 2.4rem; }
  .hero-hl {
    font-size: 3.4rem; } }

body {
  margin: 0 auto;
  position: relative;
  background: #f8f8f8; }

section {
  background: #fefefe; }

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

#main {
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), padding 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: opacity 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), padding 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: opacity 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), padding 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86); }
  #main.is-loaded {
    opacity: 1; }
  #main .site-container {
    position: relative; }

.site-container {
  overflow: hidden; }

.site-container, .fixed-header-container {
  max-width: 112.5rem;
  margin: auto; }

.inner {
  margin: auto; }
  .inner-small {
    width: 90%;
    max-width: 52rem; }
  .inner-medium {
    width: 90%;
    max-width: 60rem; }
  .inner-default {
    width: 90%;
    max-width: 90rem; }
  .inner-large {
    width: 95%;
    max-width: 106.25rem; }
  .inner-blog-content {
    width: 90%;
    max-width: 47.222222rem; }
  .inner-pull-left {
    width: 90%;
    margin: auto; }

.block {
  position: relative;
  z-index: 4;
  background: #fff; }
  .block-small {
    padding: 1rem 0; }
  .block-default {
    padding: 4rem 0; }
  .block-large {
    padding: 4rem 0; }

.hide-overflow {
  overflow: hidden; }

.float-container:before, .float-container:after {
  clear: both;
  content: "";
  display: table; }

.one-half {
  width: 100%; }

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

.block.bg-gray, section.bg-gray {
  background: #f8f8f8; }

.with-content-above {
  padding-top: 1rem !important; }

.with-content-below {
  padding-bottom: 1rem !important; }

.wysiwyg-output img, .wysiwyg-output iframe {
  display: block;
  margin: 3rem auto 4rem auto;
  width: 100%; }

.wysiwyg-output img {
  max-width: ; }

.wysiwyg-output p {
  margin-bottom: 2rem; }

.wysiwyg-output blockquote span {
  display: block;
  font-size: 125%;
  color: #626469;
  line-height: 1.6;
  position: relative;
  margin-bottom: 4rem; }
  .wysiwyg-output blockquote span:before {
    position: absolute;
    left: -2.25rem;
    top: 0;
    display: block;
    content: '';
    height: 100%;
    width: 8px;
    background: #3D1152; }

.wysiwyg-output ul {
  margin: 0;
  padding-left: 1.25rem;
  list-style-type: none; }

.wysiwyg-output ol {
  padding-left: 1.25rem; }
  .wysiwyg-output ol li {
    margin-bottom: 1rem; }
  .wysiwyg-output ol li:before,
  .wysiwyg-output ol li:after {
    display: none; }

.wysiwyg-output li {
  margin-bottom: 1rem;
  position: relative; }
  .wysiwyg-output li:before {
    position: absolute;
    display: block;
    content: '';
    width: .25rem;
    height: .25rem;
    top: .5rem;
    left: -1rem;
    background: #3D1152;
    border-radius: 50%; }

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  outline: none;
  padding: 0;
  margin: 0;
  border-radius: 0; }

.float-left {
  float: left !important; }

@media (min-width: 769px) {
  .block-small {
    padding: 2rem 0; }
  .block-default {
    padding: 4rem 0; }
  .block-large {
    padding: 6rem 0; }
  .inner-small {
    width: 60%; }
  .inner-default {
    width: 82.5%; }
  .inner-large {
    width: 92.5%; }
  .one-half:nth-child(odd) {
    width: 45%;
    margin-right: 5%; }
  .one-half:nth-child(even) {
    width: 45%;
    margin-left: 5%; } }

@media (min-width: 961px) {
  .wysiwyg-output li:before {
    top: .65rem;
    width: .25rem;
    height: .25rem; }
  .inner-pull-left {
    width: 45%;
    margin-left: 10%; } }

@media (min-width: 1281px) {
  .block-small {
    padding: 2rem 0; }
  .block-default {
    padding: 4.5rem 0; }
  .block-large {
    padding: 8rem 0; }
  .inner-small {
    width: 50%; }
  .inner-default {
    width: 80%; }
  .inner-large {
    width: 90%; } }

.av-sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  text-align: center;
  -webkit-transition: top 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.4s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .av-sticky-cta--liner {
    position: relative; }
    .av-sticky-cta--liner:before {
      pointer-events: none;
      z-index: -1;
      display: block;
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #590888;
      opacity: .8; }
  .av-sticky-cta .inner {
    padding: 1rem 0; }
  .av-sticky-cta--text-half h4, .av-sticky-cta--text-half p {
    color: #fefefe;
    margin: 0; }
  .av-sticky-cta--button-half {
    margin-top: 1rem; }
    .av-sticky-cta--button-half .button.primary {
      width: 100%; }

.st-search-container {
  min-height: 680px; }

.st-ui-injected-on-page-container {
  font-family: inherit !important; }

.st-search-container .st-ui-type-heading {
  font-weight: bold;
  font-size: 18px;
  padding-top: 0 !important; }

.st-search-container .st-ui-container-footer_bar {
  padding-top: 1.5em;
  line-height: 1; }

.st-search-container .st-ui-container-footer_bar a {
  display: inline-block;
  font-weight: bold;
  color: #3D1152;
  padding: 6px 8px 5px;
  border-radius: 2px;
  text-transform: uppercase;
  border: 1px solid #eee;
  margin-right: 4px; }

.st-search-container .st-ui-container-footer_bar a.active {
  color: #aaa; }

.st-search-container .st-ui-container-footer_bar a.active:hover {
  background: transparent; }

.st-search-container .st-ui-container-footer_bar a:last-of-type {
  margin-right: 0; }

.st-search-container .st-ui-container-footer_bar a:hover {
  background: #eee; }

.st-search-container .st-ui-injected-search-summary {
  padding: 1em 0; }

.st-search-container .st-ui-type-detail {
  font-size: 14px; }

.st-search-container .st-ui-type-detail-bold {
  font-weight: bold; }

.st-search-container a.st-ui-result .st-ui-type-detail {
  max-height: 36px; }

.st-ui-type-heading {
  padding: .5rem 0 !important; }

.st-ui-type-detail {
  padding-bottom: .5rem !important; }

.st-search-container {
  min-height: 680px; }

.st-ui-injected-on-page-container {
  font-family: inherit !important; }

.st-search-container .st-ui-type-heading {
  font-weight: bold;
  font-size: 18px;
  padding-top: 0 !important; }

.st-search-container .st-ui-container-footer_bar {
  padding-top: 1.5em;
  line-height: 1; }

.st-search-container .st-ui-container-footer_bar a {
  display: inline-block;
  font-weight: bold;
  color: #3D1152;
  padding: 6px 8px 5px;
  border-radius: 2px;
  text-transform: uppercase;
  border: 1px solid #eee;
  margin-right: 4px; }

.st-search-container .st-ui-container-footer_bar a.active {
  color: #aaa; }

.st-search-container .st-ui-container-footer_bar a.active:hover {
  background: transparent; }

.st-search-container .st-ui-container-footer_bar a:last-of-type {
  margin-right: 0; }

.st-search-container .st-ui-container-footer_bar a:hover {
  background: #eee; }

.st-search-container .st-ui-injected-search-summary {
  padding: 1em 0; }

.st-search-container .st-ui-type-detail {
  font-size: 14px; }

.st-search-container .st-ui-type-detail-bold {
  font-weight: bold; }

.st-search-container a.st-ui-result .st-ui-type-detail {
  max-height: 36px; }

.av-svg-wrapper {
  position: relative;
  width: 1.25rem; }
  .av-svg-wrapper--content {
    padding-bottom: 40%; }
  .av-svg-wrapper svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }

.hr {
  display: block;
  margin-top: -.5rem;
  margin-bottom: 1.25rem;
  -webkit-transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  position: relative;
  width: 8rem;
  height: 3px;
  background-image: -webkit-gradient(linear, left top, right top, from(#f8be43), to(#e3335a));
  background-image: -o-linear-gradient(left, #f8be43, #e3335a);
  background-image: linear-gradient(90deg, #f8be43, #e3335a);
  border-radius: 2px; }
  .hr-small {
    width: 4.5rem; }

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  outline: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
  padding: .75rem 2rem;
  font-size: 18px;
  color: #fefefe;
  font-weight: bold;
  display: inline-block;
  -webkit-transition: color 0.1s ease-in-out,  background 0.1s ease-in-out;
  -o-transition: color 0.1s ease-in-out,  background 0.1s ease-in-out;
  transition: color 0.1s ease-in-out,  background 0.1s ease-in-out; }
  .button.primary {
    background: #f70656; }
    .button.primary:hover {
      color: #fefefe;
      background: #cc0648; }
  .button:hover {
    cursor: pointer; }

.on-dark p,
.on-dark ul,
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark h5, .on-dark h6 {
  color: #fefefe; }

.has-bg-img {
  position: relative; }
  .has-bg-img .bg-img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center; }

.fake-button {
  display: inline-block;
  border: 1px solid #f70656;
  border-radius: 2rem;
  margin-top: 0;
  margin-right: 1rem;
  padding: .85rem 1rem;
  font-size: 80%;
  text-transform: uppercase;
  font-weight: bold;
  margin-left: -1rem;
  margin-bottom: .75rem; }

.flickity-controls {
  pointer-events: none; }
  .flickity-controls i {
    pointer-events: all; }
  .flickity-controls i:hover {
    cursor: pointer; }

.breadcrumb-trail a {
  color: #3f3f3f; }

.breadcrumb-trail a:hover {
  color: #626469; }

.breadcrumb-trail span {
  margin: 0 1rem;
  color: #626469; }

.breadcrumbs {
  padding: 1.5rem 0;
  font-size: 80%;
  background: #f8f8f8; }

@-webkit-keyframes outerButtonScale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1); }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1); }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1); } }

@keyframes outerButtonScale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1); }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1); }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1); } }

@-webkit-keyframes innerButtonScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes innerButtonScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

.play-button {
  position: absolute;
  z-index: 2;
  display: block;
  top: 50%;
  left: 50%;
  background: rgba(254, 254, 254, 0.75);
  border-radius: 50%;
  border: 1rem solid rgba(254, 254, 254, 0.5);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out; }
  .play-button + .video-poster {
    -webkit-transition: -webkit-transform .2s ease-in;
    transition: -webkit-transform .2s ease-in;
    -o-transition: transform .2s ease-in;
    transition: transform .2s ease-in;
    transition: transform .2s ease-in, -webkit-transform .2s ease-in; }
  .play-button:hover {
    cursor: pointer;
    -webkit-animation: outerButtonScale 1.4s infinite;
            animation: outerButtonScale 1.4s infinite; }
    .play-button:hover .inner-circ {
      -webkit-animation: innerButtonScale 1.4s infinite;
              animation: innerButtonScale 1.4s infinite; }
  .play-button .inner-circ {
    padding-bottom: 100%;
    border-radius: 50%;
    width: 5rem;
    background: #f70656;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    position: relative; }
    .play-button .inner-circ:after {
      position: absolute;
      display: block;
      content: '';
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-left: 1.75rem solid #fff;
      border-right: 1rem solid transparent;
      border-top: 1rem solid transparent;
      border-bottom: 1rem solid transparent;
      -webkit-transform: translate(-25%, -50%);
          -ms-transform: translate(-25%, -50%);
              transform: translate(-25%, -50%);
      -webkit-transition: border 0.2s cubic-bezier(0.77, 0, 0.175, 1);
      -o-transition: border 0.2s cubic-bezier(0.77, 0, 0.175, 1);
      transition: border 0.2s cubic-bezier(0.77, 0, 0.175, 1); }

.form-pre-heading {
  text-transform: uppercase;
  font-size: 90%;
  color: #3D1152;
  font-weight: bold;
  position: relative; }
  .form-pre-heading:before, .form-pre-heading:after {
    position: absolute;
    content: '';
    top: 50%;
    left: -52.5%;
    height: 1px;
    width: 4rem;
    background: #fefefe;
    -webkit-transform: translateY(-250%);
        -ms-transform: translateY(-250%);
            transform: translateY(-250%); }
  .form-pre-heading:after {
    left: 112.5%; }

.author-bar {
  background: #f8f8f8;
  position: relative; }

.author-avatar, .author-about {
  float: left; }

.author-avatar {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 3;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#f8f8f8));
  background-image: -o-linear-gradient(left, #fff, #f8f8f8);
  background-image: linear-gradient(90deg, #fff, #f8f8f8);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
  .author-avatar img {
    display: block;
    max-width: 5.33rem;
    border: 0.33rem solid #f70656;
    border-radius: 50%; }

.author-about .author-liner {
  padding: 1rem;
  padding-left: 8rem; }

.author-about h1, .author-about h2, .author-about h3, .author-about h4, .author-about h5, .author-about h6 {
  margin: 0;
  font-size: 1rem; }

.author-about h6 {
  margin-bottom: 1rem; }

section[class*="hero-"] .addthis_inline_share_toolbox {
  margin-top: 2rem; }

.pagination {
  text-align: center;
  margin-top: -2rem;
  padding-top: 0; }
  .pagination .hide {
    display: none; }
  .pagination ul {
    list-style-type: none; }
  .pagination li {
    display: inline-block;
    padding: 0 1rem;
    font-size: 90%;
    vertical-align: middle; }
    .pagination li:nth-child(2) {
      display: none; }
    .pagination li.active {
      background: #3D1152;
      color: #fefefe;
      padding: .66rem 1rem;
      border-radius: 50%; }
      .pagination li.active a {
        color: #fefefe; }
  .pagination a {
    color: #626469; }
    .pagination a:hover {
      color: #3D1152; }
  .pagination i {
    color: #3D1152; }

.fake-select, .text-section {
  display: inline-block;
  width: 100%;
  margin-bottom: 1rem; }

.text-section {
  text-align: center; }

.fake-select {
  border: 1px solid #dedede;
  border-radius: 2rem;
  padding: 1.25rem 2rem;
  font-weight: bold;
  font-family: "Barlow";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  vertical-align: top;
  -webkit-transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1); }
  .fake-select * {
    -webkit-transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1); }
  .fake-select_content {
    position: relative; }
    .fake-select_content .heading, .fake-select_content .option {
      display: block;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
    .fake-select_content .heading {
      border-bottom: 1px solid #dedede;
      padding-right: 9rem; }
      .fake-select_content .heading a {
        color: #626469; }
    .fake-select_content .option {
      display: block;
      padding-right: 2rem;
      padding-bottom: 1rem; }
      .fake-select_content .option a {
        color: #3D1152; }
      .fake-select_content .option a:hover {
        color: #3E1054; }
      .fake-select_content .option:nth-child(2) {
        padding-top: 1rem; }
    .fake-select_content:after {
      position: absolute;
      display: block;
      content: '';
      right: 0;
      top: 50%;
      width: 0;
      height: 0;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      -webkit-transition: border 0.2s cubic-bezier(0.77, 0, 0.175, 1);
      -o-transition: border 0.2s cubic-bezier(0.77, 0, 0.175, 1);
      transition: border 0.2s cubic-bezier(0.77, 0, 0.175, 1); }

.collapsed:hover {
  cursor: pointer; }

.collapsed .fake-select_content .heading {
  border-bottom: none; }

.collapsed .fake-select_content .option {
  position: absolute;
  opacity: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%); }

.collapsed .fake-select_content:after {
  border-left: .5rem solid transparent;
  border-right: .5rem solid transparent;
  border-top: 0.5rem solid #3D1152; }

.expanded .fake-select_content .heading {
  border-bottom: 1px solid #dedede;
  padding-bottom: .5rem; }
  .expanded .fake-select_content .heading:hover {
    cursor: pointer; }

.expanded .fake-select_content .option {
  position: static;
  opacity: 1;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%); }
  .expanded .fake-select_content .option:nth-child(1) {
    -webkit-transition-delay: calc(75ms * 1);
         -o-transition-delay: calc(75ms * 1);
            transition-delay: calc(75ms * 1); }
  .expanded .fake-select_content .option:nth-child(2) {
    -webkit-transition-delay: calc(75ms * 2);
         -o-transition-delay: calc(75ms * 2);
            transition-delay: calc(75ms * 2); }
  .expanded .fake-select_content .option:nth-child(3) {
    -webkit-transition-delay: calc(75ms * 3);
         -o-transition-delay: calc(75ms * 3);
            transition-delay: calc(75ms * 3); }
  .expanded .fake-select_content .option:nth-child(4) {
    -webkit-transition-delay: calc(75ms * 4);
         -o-transition-delay: calc(75ms * 4);
            transition-delay: calc(75ms * 4); }
  .expanded .fake-select_content .option:nth-child(5) {
    -webkit-transition-delay: calc(75ms * 5);
         -o-transition-delay: calc(75ms * 5);
            transition-delay: calc(75ms * 5); }
  .expanded .fake-select_content .option:nth-child(6) {
    -webkit-transition-delay: calc(75ms * 6);
         -o-transition-delay: calc(75ms * 6);
            transition-delay: calc(75ms * 6); }
  .expanded .fake-select_content .option:nth-child(7) {
    -webkit-transition-delay: calc(75ms * 7);
         -o-transition-delay: calc(75ms * 7);
            transition-delay: calc(75ms * 7); }
  .expanded .fake-select_content .option:nth-child(8) {
    -webkit-transition-delay: calc(75ms * 8);
         -o-transition-delay: calc(75ms * 8);
            transition-delay: calc(75ms * 8); }
  .expanded .fake-select_content .option:nth-child(9) {
    -webkit-transition-delay: calc(75ms * 9);
         -o-transition-delay: calc(75ms * 9);
            transition-delay: calc(75ms * 9); }
  .expanded .fake-select_content .option:nth-child(10) {
    -webkit-transition-delay: calc(75ms * 10);
         -o-transition-delay: calc(75ms * 10);
            transition-delay: calc(75ms * 10); }
  .expanded .fake-select_content .option:nth-child(11) {
    -webkit-transition-delay: calc(75ms * 11);
         -o-transition-delay: calc(75ms * 11);
            transition-delay: calc(75ms * 11); }
  .expanded .fake-select_content .option:nth-child(12) {
    -webkit-transition-delay: calc(75ms * 12);
         -o-transition-delay: calc(75ms * 12);
            transition-delay: calc(75ms * 12); }

.expanded .fake-select_content:after {
  top: 0;
  border-left: .5rem solid transparent;
  border-right: .5rem solid transparent;
  border-top: .5rem solid transparent;
  border-bottom: 0.5rem solid #3D1152; }

.has-link-over {
  position: relative;
  z-index: 1; }

.link-over {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; }
  .link-over:hover + .arrow-hover-trigger h1 a, .link-over:hover + .arrow-hover-trigger h2 a, .link-over:hover + .arrow-hover-trigger h3 a, .link-over:hover + .arrow-hover-trigger h4 a, .link-over:hover + .arrow-hover-trigger h5 a, .link-over:hover + .arrow-hover-trigger h6 a {
    color: #cc0648 !important; }
  .link-over:hover + .arrow-hover-trigger i, .link-over:hover + .arrow-hover-trigger .av-hover-arrow {
    opacity: 1;
    color: #cc0648;
    -webkit-transform: translateX(25%);
        -ms-transform: translateX(25%);
            transform: translateX(25%); }
  .link-over:hover + .arrow-hover-trigger .hr {
    opacity: 0;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%); }
  .link-over:hover + .card-liner h1 a, .link-over:hover + .card-liner h2 a, .link-over:hover + .card-liner h3 a, .link-over:hover + .card-liner h4 a, .link-over:hover + .card-liner h5 a, .link-over:hover + .card-liner h6 a {
    color: #3D1152 !important; }
  .link-over:hover + .card-liner i, .link-over:hover + .card-liner .av-hover-arrow {
    opacity: 1;
    -webkit-transform: translateX(25%);
        -ms-transform: translateX(25%);
            transform: translateX(25%); }

.product-sub-nav {
  background: #f8f8f8;
  -webkit-transition: opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none; }
  .product-sub-nav * {
    -webkit-tap-highlight-color: transparent; }
  .product-sub-nav.drawer-open .psn-mobile-toggle i {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
  .product-sub-nav.drawer-open .psn-product-links ul {
    opacity: 1; }
  .product-sub-nav .site-container,
  .product-sub-nav .inner {
    position: relative;
    pointer-events: none; }
  .product-sub-nav .psn-name-container,
  .product-sub-nav .psn-product-links {
    padding: 1rem;
    float: left;
    width: 100%;
    text-align: center; }
  .product-sub-nav .psn-mobile-toggle {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: all; }
    .product-sub-nav .psn-mobile-toggle:hover {
      cursor: pointer; }
    .product-sub-nav .psn-mobile-toggle i {
      position: absolute;
      z-index: 9;
      top: 1rem;
      right: 0;
      color: #3D1152;
      -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      -o-transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .product-sub-nav .psn-name-container {
    text-align: left;
    padding-right: 0;
    padding-left: 0; }
    .product-sub-nav .psn-name-container h6 {
      margin: 0;
      font-size: 90%;
      font-weight: 700; }
  .product-sub-nav .psn-product-links {
    text-align: right;
    padding: 0;
    font-size: 90%; }
    .product-sub-nav .psn-product-links ul {
      height: 0;
      overflow: hidden;
      opacity: 0;
      -webkit-transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      -o-transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86); }
    .product-sub-nav .psn-product-links li {
      position: relative;
      z-index: 9;
      pointer-events: all; }
  .product-sub-nav .psn-button-container {
    float: right;
    width: 100%; }
    .product-sub-nav .psn-button-container .button {
      min-width: 100%;
      pointer-events: all;
      text-align: center;
      border-radius: 0;
      font-size: 90%; }
  .product-sub-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0; }
  .product-sub-nav li {
    display: block;
    padding-bottom: 1rem;
    pointer-events: all; }
    .product-sub-nav li a {
      color: #3f3f3f; }
      .product-sub-nav li a:hover {
        color: #3D1152; }

.product-sub-nav.is-fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 8;
  background: #f8f8f8; }
  .product-sub-nav.is-fixed.user-hovering-fixed-header {
    opacity: 0; }
  .product-sub-nav.is-fixed .site-container {
    background: #f8f8f8;
    overflow-x: hidden;
    border-bottom: 1px solid #dedede; }

.flickity-controls .inner * {
  display: block; }

.flickity-next, .flickity-prev {
  position: absolute;
  z-index: 4;
  pointer-events: all;
  border: 1px solid #fefefe;
  border-radius: 50%;
  width: 3rem;
  overflow: hidden; }
  .flickity-next .control-inner, .flickity-prev .control-inner {
    padding-bottom: 100%;
    width: 200%;
    -webkit-transform: translateX(25%);
        -ms-transform: translateX(25%);
            transform: translateX(25%);
    -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    position: relative; }
  .flickity-next:hover, .flickity-prev:hover {
    cursor: pointer; }

.flickity-prev:hover .control-inner {
  -webkit-transform: translateX(-75%);
      -ms-transform: translateX(-75%);
          transform: translateX(-75%); }

.flickity-next {
  right: 0; }
  .flickity-next .control-inner {
    -webkit-transform: translateX(-75%);
        -ms-transform: translateX(-75%);
            transform: translateX(-75%); }
  .flickity-next:hover .control-inner {
    -webkit-transform: translateX(25%);
        -ms-transform: translateX(25%);
            transform: translateX(25%); }

.caret-left, .caret-right {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
  .caret-left .caret-line, .caret-right .caret-line {
    pointer-events: none;
    position: absolute;
    background: #fefefe;
    height: 2px;
    width: .75rem; }

.caret-left .caret-line:first-of-type {
  -webkit-transform: translate(-50%, -200%) rotate(-45deg);
      -ms-transform: translate(-50%, -200%) rotate(-45deg);
          transform: translate(-50%, -200%) rotate(-45deg); }

.caret-left .caret-line:last-of-type {
  -webkit-transform: translate(-50%, 200%) rotate(45deg);
      -ms-transform: translate(-50%, 200%) rotate(45deg);
          transform: translate(-50%, 200%) rotate(45deg); }

.caret-right .caret-line:first-of-type {
  -webkit-transform: translate(-50%, -200%) rotate(-135deg);
      -ms-transform: translate(-50%, -200%) rotate(-135deg);
          transform: translate(-50%, -200%) rotate(-135deg); }

.caret-right .caret-line:last-of-type {
  -webkit-transform: translate(-50%, 200%) rotate(135deg);
      -ms-transform: translate(-50%, 200%) rotate(135deg);
          transform: translate(-50%, 200%) rotate(135deg); }

.control-inner .caret-left:first-of-type {
  left: 0; }

.control-inner .caret-left:last-of-type {
  right: 0; }

.control-inner .caret-right:first-of-type {
  right: 0; }

.control-inner .caret-right:last-of-type {
  left: 0; }

.hs-blog-id-5523763607 .has-bg-img .bg-img {
  z-index: 1; }

.arrow-hover-trigger {
  position: relative; }
  .arrow-hover-trigger h1, .arrow-hover-trigger h2, .arrow-hover-trigger h3, .arrow-hover-trigger h4, .arrow-hover-trigger h5, .arrow-hover-trigger h6 {
    position: relative;
    display: block;
    color: #3D1152;
    font-size: 1.2rem;
    -webkit-transition: color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86); }
    .arrow-hover-trigger h1 a, .arrow-hover-trigger h2 a, .arrow-hover-trigger h3 a, .arrow-hover-trigger h4 a, .arrow-hover-trigger h5 a, .arrow-hover-trigger h6 a {
      color: #fefefe;
      display: inline-block;
      font-size: 1.2rem; }
  .arrow-hover-trigger i, .arrow-hover-trigger .av-hover-arrow {
    position: absolute;
    bottom: -1.25rem;
    left: 0;
    opacity: 0;
    color: #3D1152;
    -webkit-transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86); }
  .arrow-hover-trigger:hover {
    cursor: pointer; }
    .arrow-hover-trigger:hover h1 a, .arrow-hover-trigger:hover h2 a, .arrow-hover-trigger:hover h3 a, .arrow-hover-trigger:hover h4 a, .arrow-hover-trigger:hover h5 a, .arrow-hover-trigger:hover h6 a {
      color: #3D1152 !important; }
    .arrow-hover-trigger:hover i, .arrow-hover-trigger:hover .av-hover-arrow {
      opacity: 1;
      -webkit-transform: translateX(25%);
          -ms-transform: translateX(25%);
              transform: translateX(25%); }

.inline-placeholder-content {
  -webkit-transition: opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1); }

.has-inline-video {
  -webkit-transition: padding 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: padding 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: padding 0.2s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .has-inline-video.is-playing-video {
    position: relative; }
  .has-inline-video.is-playing-youtube {
    padding-bottom: 34%; }
  .has-inline-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .has-inline-video i {
    position: absolute;
    top: -3rem;
    right: -2rem;
    font-size: 2rem;
    color: #3D1152;
    -webkit-transition: color 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: color 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), color 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), color 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), color 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .has-inline-video i:hover {
      cursor: pointer;
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg);
      color: #3E1054; }

.video-centered img {
  display: block;
  max-width: 100%; }

.opacity-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  pointer-events: none;
  background: transparent;
  -webkit-transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .opacity-layer.is-active {
    z-index: 8;
    background: #000;
    opacity: .667; }

.has-pseudo-line {
  position: relative; }
  .has-pseudo-line:after {
    position: absolute;
    display: block;
    content: '';
    bottom: -.5rem;
    left: 0;
    height: 2px;
    width: 1.25rem;
    background: #3D1152; }

.publish-date {
  padding: 1rem 0;
  padding-bottom: 0; }
  .publish-date p {
    font-size: 90% !important; }

.is-squeeze-hero .one-half .content {
  padding-left: 0 !important; }

.sticky-form-half {
  display: none;
  float: right;
  position: absolute;
  z-index: 8;
  width: 30%;
  top: 7.5rem;
  right: 0; }
  .sticky-form-half .form-wrapper {
    padding: 1rem;
    position: -webkit-sticky;
    position: sticky;
    background: #fefefe;
    border: 1px solid #dedede;
    top: 5rem; }

.se-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  -webkit-transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0; }
  .se-cookie-notice.is-visible {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
  .se-cookie-notice .site-container {
    background: #f8f8f8;
    border-top: 0.25rem solid #3D1152;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .se-cookie-notice .text-half {
    padding: 1rem 0; }
  .se-cookie-notice .action-half {
    text-align: center;
    padding-bottom: 1rem; }

.se-badge--powered-by {
  margin-top: -1.5rem;
  margin-bottom: 1rem; }
  .se-badge--powered-by_content {
    padding: .5rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fefefe;
    font-style: italic;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-radius: .25rem; }
    .se-badge--powered-by_content strong {
      font-weight: 700; }
  .se-badge--powered-by img {
    max-width: 15px;
    margin-right: .5rem; }

@media (min-width: 769px) {
  .fake-select, .text-section {
    width: auto; }
  .text-section {
    margin-top: 1.25rem; }
  .fake-select .heading {
    padding-right: 5rem; }
  .product-sub-nav {
    padding-bottom: 3rem; }
    .product-sub-nav .site-container {
      overflow: visible; }
    .product-sub-nav .psn-name-container {
      width: auto; }
    .product-sub-nav .psn-mobile-toggle {
      display: none; }
    .product-sub-nav .psn-product-links {
      position: absolute;
      top: 4rem;
      left: 0;
      z-index: 2;
      width: 100%;
      text-align: left; }
      .product-sub-nav .psn-product-links ul {
        height: auto;
        overflow: visible;
        opacity: 1; }
    .product-sub-nav .psn-button-container {
      width: auto;
      margin-top: -3.2rem; }
    .product-sub-nav li {
      display: inline-block;
      padding-right: 1rem; }
  .arrow-hover-trigger h1, .arrow-hover-trigger h2, .arrow-hover-trigger h3, .arrow-hover-trigger h4, .arrow-hover-trigger h5, .arrow-hover-trigger h6 {
    font-size: 1.6rem; }
  .arrow-hover-trigger i {
    display: inline-block; } }

@media (min-width: 961px) {
  .av-sticky-cta {
    text-align: left; }
    .av-sticky-cta .inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .av-sticky-cta--text-half, .av-sticky-cta--button-half {
      width: 47.5%; }
    .av-sticky-cta--button-half {
      margin-top: 0;
      text-align: right; }
      .av-sticky-cta--button-half .button.primary {
        width: auto; }
  .fake-select, .text-section {
    margin-right: 1rem;
    margin-bottom: 0; }
  .fake-select .heading {
    padding-right: 9rem; }
  .sticky-form-half {
    display: block; }
  .se-cookie-notice .text-half,
  .se-cookie-notice .action-half {
    float: left; }
  .se-cookie-notice .text-half {
    width: 80%;
    padding: 1.5rem 0;
    text-align: left; }
  .se-cookie-notice .action-half {
    width: 20%;
    text-align: right;
    padding-top: .75rem; } }

@media (min-width: 1025px) {
  .product-sub-nav {
    padding-bottom: 0; }
    .product-sub-nav.no-cta-button {
      padding-bottom: 1.25rem; }
      .product-sub-nav.no-cta-button .psn-product-links {
        padding-top: .125rem; }
      .product-sub-nav.no-cta-button.is-fixed {
        padding-bottom: 0; }
        .product-sub-nav.no-cta-button.is-fixed .inner {
          padding-bottom: 1.25rem; }
    .product-sub-nav .inner {
      position: static; }
    .product-sub-nav .psn-name-container h6 {
      position: absolute;
      top: 40%;
      left: 0;
      font-size: 110%; }
    .product-sub-nav .psn-product-links {
      position: absolute;
      top: 1rem;
      left: 0;
      text-align: center; }
    .product-sub-nav .psn-button-container {
      margin-top: -2rem; }
    .product-sub-nav li {
      padding-right: 1rem; } }

@media (min-width: 1281px) {
  .product-sub-nav .inner {
    position: relative; }
  .product-sub-nav li {
    padding-right: 2rem; }
  .product-sub-nav li a {
    font-size: 110%; }
  .product-sub-nav .button.primary {
    font-size: 110%; }
  .arrow-hover-trigger h1, .arrow-hover-trigger h2, .arrow-hover-trigger h3, .arrow-hover-trigger h4, .arrow-hover-trigger h5, .arrow-hover-trigger h6 {
    margin-top: 2.25rem;
    font-size: 135%; } }

#hs_editor_style {
  display: none; }

.av-sticky-rail-container .hs-form-required,
#hs_form_target_sidebar_form .hs-form-required,
#hs_form_target_hero_form .hs-form-required {
  display: inline;
  color: red; }

.av-sticky-rail-container .legal-consent-container li span,
#hs_form_target_sidebar_form .legal-consent-container li span,
#hs_form_target_hero_form .legal-consent-container li span {
  display: inline !important; }

.av-sticky-rail-container .inputs-list label,
.av-sticky-rail-container .hs-form-field > label,
#hs_form_target_sidebar_form .inputs-list label,
#hs_form_target_sidebar_form .hs-form-field > label,
#hs_form_target_hero_form .inputs-list label,
#hs_form_target_hero_form .hs-form-field > label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px; }

.av-sticky-rail-container .inputs-list > li,
#hs_form_target_sidebar_form .inputs-list > li,
#hs_form_target_hero_form .inputs-list > li {
  margin-bottom: 10px; }

.av-sticky-rail-container .hs-richtext p,
#hs_form_target_sidebar_form .hs-richtext p,
#hs_form_target_hero_form .hs-richtext p {
  line-height: 1.25;
  margin-bottom: 20px; }

.av-sticky-rail-container .hs-fieldtype-radio > label,
#hs_form_target_sidebar_form .hs-fieldtype-radio > label,
#hs_form_target_hero_form .hs-fieldtype-radio > label {
  font-size: 1em;
  margin-bottom: 10px; }

.av-sticky-rail-container .hs-form-field .se-chkbx,
#hs_form_target_sidebar_form .hs-form-field .se-chkbx,
#hs_form_target_hero_form .hs-form-field .se-chkbx {
  top: 0;
  margin-top: 2px; }

.form-half form .hs-form-required {
  display: inline;
  color: red; }

.form-half form .legal-consent-container li span {
  display: inline !important; }

.form-half form .inputs-list label,
.form-half form .hs-form-field > label {
  display: block; }

.form-half form .inputs-list > li {
  margin-bottom: 10px; }

.form-half form .hs-richtext p {
  line-height: 1.25;
  margin-bottom: 20px; }

.form-half form .hs-fieldtype-radio > label {
  font-size: 1em;
  margin-bottom: 10px; }

.form-half form .hs-form-field .se-chkbx {
  top: 0;
  margin-top: 2px; }

.se-form-default form > div .hs-richtext {
  position: static !important; }

.se-form-default form input[type="radio"],
.se-form-default form input[type="checkbox"] {
  margin-bottom: 0; }
  .se-form-default form input[type="radio"] + span, .se-form-default form input[type="radio"] + span *,
  .se-form-default form input[type="checkbox"] + span,
  .se-form-default form input[type="checkbox"] + span * {
    display: inline; }

#hs_cos_wrapper_widget_1516410364413 {
  max-width: 850px;
  margin: 80px auto; }

.hs_cos_wrapper_type_form {
  display: block; }

.hs_cos_wrapper_type_form form.hs-form {
  opacity: 0;
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.hs_cos_wrapper_type_form form.hs-form.is-ready {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.no-js .hs_cos_wrapper_type_form form.hs-form {
  opacity: 1; }

.hs_cos_wrapper_type_form fieldset {
  width: 100%;
  margin: 0;
  padding: 0;
  max-width: none !important; }

.hs-form-field {
  margin-bottom: 15px;
  position: relative; }

.hs-form-field input[type="text"], .hs-form-field input[type="tel"],
.hs-form-field input[type="number"], .hs-form-field input[type="email"], .hs-form-field textarea {
  line-height: 1;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100% !important;
  margin: 0;
  padding: 10px 20px;
  border: 1px solid #dedede !important;
  background-color: #fafafa;
  color: #494b4f;
  font-weight: bold;
  height: 50px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease; }

.hs-form-field input[type="text"]::-webkit-input-placeholder, .hs-form-field input[type="tel"]::-webkit-input-placeholder,
.hs-form-field input[type="number"]::-webkit-input-placeholder, .hs-form-field input[type="email"]::-webkit-input-placeholder, .hs-form-field textarea::-webkit-input-placeholder {
  color: #d1d1d1; }

.hs-form-field input[type="text"]::-moz-placeholder, .hs-form-field input[type="tel"]::-moz-placeholder,
.hs-form-field input[type="number"]::-moz-placeholder, .hs-form-field input[type="email"]::-moz-placeholder, .hs-form-field textarea::-moz-placeholder {
  color: #d1d1d1; }

.hs-form-field input[type="text"]:-ms-input-placeholder, .hs-form-field input[type="tel"]:-ms-input-placeholder,
.hs-form-field input[type="number"]:-ms-input-placeholder, .hs-form-field input[type="email"]:-ms-input-placeholder, .hs-form-field textarea:-ms-input-placeholder {
  color: #d1d1d1; }

.hs-form-field input[type="text"]:-moz-placeholder, .hs-form-field input[type="tel"]:-moz-placeholder,
.hs-form-field input[type="number"]:-moz-placeholder, .hs-form-field input[type="email"]:-moz-placeholder, .hs-form-field textarea:-moz-placeholder {
  color: #d1d1d1; }

.hs-form-field input[type="text"]:focus, .hs-form-field input[type="tel"]:focus,
.hs-form-field input[type="number"]:focus, .hs-form-field input[type="email"]:focus, .hs-form-field textarea:focus {
  border-color: #3D1152 !important;
  -webkit-box-shadow: rgba(213, 213, 213, 0.45) 0 0 20px;
  box-shadow: rgba(213, 213, 213, 0.45) 0 0 20px; }

.hs-form-field select {
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100% !important;
  height: 50px;
  padding-left: 20px;
  border: 1px solid #dedede !important;
  color: #626469; }

.hs-form-field select:focus {
  border-color: #3D1152 !important;
  -webkit-box-shadow: rgba(213, 213, 213, 0.45) 0 0 20px;
  box-shadow: rgba(213, 213, 213, 0.45) 0 0 20px; }

.hs-form-field textarea {
  min-height: 100px;
  resize: vertical; }

.hs-form-field textarea:focus {
  border-color: #3D1152 !important;
  -webkit-box-shadow: rgba(213, 213, 213, 0.45) 0 0 20px;
  box-shadow: rgba(213, 213, 213, 0.45) 0 0 20px; }

.hs-form-field > label[for] {
  line-height: 1;
  margin-bottom: 4px;
  font-size: 0.85em;
  font-weight: bold; }

.hs-form-field legend {
  font-style: italic;
  font-size: 0.7em;
  padding-bottom: 4px; }

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

.hs-form-field ul.inputs-list li {
  display: block; }

.hs-form-field .hs-form-booleancheckbox,
.hs-form-field .hs-form-checkbox, .hs-form-field .hs-form-radio {
  overflow: hidden; }

.hs-form-field .hs-form-booleancheckbox span[data-reactid],
.hs-form-field .hs-form-checkbox span[data-reactid], .hs-form-field .hs-form-radio span[data-reactid] {
  display: inline-block;
  font-weight: bold;
  font-size: 0.95em; }

.hs-form-field .hs-form-booleancheckbox label,
.hs-form-field .hs-form-checkbox label, .hs-form-field .hs-form-radio label {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-left: 26px; }

.hs-form-field .hs-form-booleancheckbox input[type="checkbox"], .hs-form-field .hs-form-booleancheckbox input[type="radio"],
.hs-form-field .hs-form-checkbox input[type="checkbox"],
.hs-form-field .hs-form-checkbox input[type="radio"], .hs-form-field .hs-form-radio input[type="checkbox"], .hs-form-field .hs-form-radio input[type="radio"] {
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  position: absolute;
  border: solid 1px #000}

.hs-form-field .hs-form-booleancheckbox input[type="checkbox"]:checked ~ .se-chkbx span, .hs-form-field .hs-form-booleancheckbox input[type="radio"]:checked ~ .se-chkbx span,
.hs-form-field .hs-form-checkbox input[type="checkbox"]:checked ~ .se-chkbx span,
.hs-form-field .hs-form-checkbox input[type="radio"]:checked ~ .se-chkbx span, .hs-form-field .hs-form-radio input[type="checkbox"]:checked ~ .se-chkbx span, .hs-form-field .hs-form-radio input[type="radio"]:checked ~ .se-chkbx span {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.hs-form-field .se-chkbx {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  border: 1px solid #dedede;
  background: #fafafa; }

.hs-form-field .se-chkbx-type-radio {
  border-radius: 50%; }

.hs-form-field .se-chkbx-type-radio > span {
  border-radius: 50%; }

.hs-form-field .se-chkbx > span {
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background: #3D1152;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease; }

.hs-form-field.has-tagname-select .input {
  position: relative; }

.hs-form-field.has-tagname-select .input:after {
  position: absolute;
  display: block;
  content: '';
  right: 20px;
  top: 50%;
  width: 0;
  height: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: border 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: border 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: border 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: .5rem solid transparent;
  border-right: .5rem solid transparent;
  border-top: 0.5rem solid #3D1152;
  pointer-events: none;
  z-index: 2; }

.hs-form-field .hs-datepicker {
  left: 20px; }

.hs-form-field .hs-error-msgs, .hs-form-field ul.hs-error-msgs {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.75em;
  padding-top: 4px;
  width: 100%; }

.hs-form-field .hs-error-msgs li, .hs-form-field ul.hs-error-msgs li {
  display: block;
  font-style: italic; }

.hs-form-field .hs-error-msgs li label, .hs-form-field ul.hs-error-msgs li label {
  color: #f23232;
  font-weight: bold; }

.on-dark .hs-form-field > label[for] {
  color: #fafafa; }

.on-dark .hs-form-field input[type="text"]:focus, .on-dark .hs-form-field input[type="tel"]:focus,
.on-dark .hs-form-field input[type="number"]:focus, .on-dark .hs-form-field input[type="email"]:focus, .on-dark .hs-form-field textarea:focus, .on-dark .hs-form-field select:focus, .on-dark .hs-form-field textarea:focus {
  border-color: #3D1152 !important;
  -webkit-box-shadow: rgba(213, 213, 213, 0.45) 0 0 20px;
  box-shadow: rgba(213, 213, 213, 0.45) 0 0 20px;
  -webkit-box-shadow: rgba(255, 255, 255, 0.85) 0 0 20px;
  box-shadow: rgba(255, 255, 255, 0.85) 0 0 20px; }

.hs_submit .actions {
  padding-top: 10px; }

.hs_submit .hs-button.primary {
  outline: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f70656;
  color: #fafafa !important;
  border: none !important;
  padding: .75rem 2rem;
  font-size: 100%;
  border-radius: 0;
  font-weight: bold; }

.se-plaz {
  overflow: hidden;
  background-color: #fff;
  z-index: 8; }

.acc-items-list > ul {
  position: relative;
  z-index: 2; }

.acc-items-list .bg-img {
  z-index: 1; }

#hs_cos_wrapper_default_hero {
  display: block; }

.hero-default[data-se-parallax] {
  background: #000;
  padding-top: 8rem;
  z-index: 1; }

.se-plazfilters, .se-plaz {
  position: relative;
  z-index: 8;
  background: #fff; }

.se-plaz--filters {
  text-align: center; }

.se-plaz--list {
  cursor: default;
  position: relative;
  padding: 4rem 0; }

.se-plaz--list ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.se-plaz--list li {
  display: block; }

.se-plaz--item {
  position: relative;
  z-index: 7;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #dedede; }

.se-plaz--item:after {
  clear: both;
  content: "";
  display: table; }

.se-plaz--item:before {
  content: "";
  display: table; }

.se-plaz--item h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  -webkit-transition: color .3s linear;
  -o-transition: color .3s linear;
  transition: color .3s linear; }

.is-dimmed .se-plaz--item h4 {
  color: #a5a5a5; }

.se-plaz--item a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.se-plaz--item a span {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px); }

.se-plaz--item a:hover ~ .se-plaz--legacy h4,
.se-plaz--item a:hover ~ .se-plaz--name h4 {
  color: #3D1152; }

.se-plaz--item a:hover ~ .se-plaz--desc p {
  color: #373737; }

.se-plaz--desc p {
  font-size: 100%;
  -webkit-transition: color .3s ease;
  -o-transition: color .3s ease;
  transition: color .3s ease; }

.se-plaz--select {
  display: inline-block;
  width: 100%;
  max-width: 16rem; }

.se-plaz--select select {
  cursor: pointer;
  padding-top: 4px;
  height: 54px;
  background-color: #fff; }

.se-plaz--textsearch {
  display: inline-block;
  width: 100%;
  max-width: 16rem; }

.se-plaz--textsearch input[type="text"] {
  padding-top: 12px;
  height: 54px !important;
  background-color: #fff !important; }

@media (min-width: 769px) {
  .se-plaz--filters {
    text-align: left; }
  .se-plaz--select {
    margin-left: 1rem; }
  .se-plaz--textsearch {
    margin-left: 1rem; }
  .se-plaz--item {
    border-bottom: none; }
  .se-plaz--item h4 {
    margin: 5px 0;
    padding-right: 15%; }
  .se-plaz--quad {
    width: 25%;
    float: left; }
  .se-plaz--third {
    width: 33.3333333%;
    float: left; }
  .se-plaz--half {
    width: 55%;
    float: right; }
  .se-plaz--list-back {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: #f8f8f8; }
  .se-plaz--list-back:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: #f8f8f8;
    -webkit-transform: translateX(-99%);
    -ms-transform: translateX(-99%);
    transform: translateX(-99%); }
  .se-plaz--borders {
    position: absolute;
    height: 1px;
    background: #dedede;
    width: 32%;
    bottom: 0;
    left: 0; }
  .se-plaz--borders:after {
    display: none; }
  .se-plaz--borders:before {
    content: "";
    display: block;
    position: absolute;
    background: #dedede;
    height: 1px;
    width: 200%;
    left: 140%; }
  .se-plaz--list li:last-child .se-plaz--borders {
    display: none; } }

@media (min-width: 870px) {
  .se-plaz--filters:after {
    clear: both;
    content: "";
    display: table; }
  .se-plaz--filters:before {
    content: "";
    display: table; }
  .se-plaz--inputgroup {
    float: left;
    width: 45%;
    max-width: 25rem; }
  .se-plaz--textsearch, .se-plaz--select {
    margin-left: 0; } }

/*! Flickity v2.0.10
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.odometer.odometer-auto-theme, .odometer.odometer-theme-minimal {
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  position: relative; }

.odometer.odometer-auto-theme, .odometer.odometer-theme-minimal {
  *display: inline; }

.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-minimal .odometer-digit {
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  position: relative; }

.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-minimal .odometer-digit {
  *display: inline; }

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-minimal .odometer-digit .odometer-digit-spacer {
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  visibility: hidden; }

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-minimal .odometer-digit .odometer-digit-spacer {
  *display: inline; }

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-minimal .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden; }

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-minimal .odometer-digit .odometer-ribbon {
  display: block; }

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-minimal .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden; }

.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-minimal .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0); }

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-minimal .odometer-digit .odometer-value.odometer-last-value {
  position: absolute; }

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: -o-transform 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: -webkit-transform 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: transform 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%); }

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-down .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%); }

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: -o-transform 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: -webkit-transform 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: transform 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

.av-404-video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1; }

.av-not-found {
  overflow: hidden;
  background: #000;
  color: #fefefe;
  position: relative; }
  .av-not-found .inner {
    position: relative;
    z-index: 5; }
  .av-not-found .av-svg-wrapper {
    position: relative;
    width: 300px;
    margin: auto;
    -webkit-transform: skewY(-10deg) rotate(10deg);
        -ms-transform: skewY(-10deg) rotate(10deg);
            transform: skewY(-10deg) rotate(10deg); }
    .av-not-found .av-svg-wrapper--content {
      padding-bottom: 7.5%; }
    .av-not-found .av-svg-wrapper svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden; }
  .av-not-found--content {
    padding: 2rem 0; }
  .av-not-found h1, .av-not-found h2 {
    color: #fefefe;
    margin: 0; }
  .av-not-found--text-block {
    text-align: center; }
  .av-not-found--preheading {
    margin-bottom: 1rem; }
    .av-not-found--preheading span {
      color: #3D1152;
      font-style: italic;
      font-weight: 700;
      font-size: 1.2rem; }
  .av-not-found--heading {
    margin-bottom: 1rem; }
    .av-not-found--heading h1 {
      font-size: 3rem; }
  .av-not-found--subheading {
    margin-bottom: 2rem; }
    .av-not-found--subheading h2 {
      font-weight: 400; }
  .av-not-found--body-copy {
    margin-bottom: 1rem; }

@media (min-width: 769px) {
  .av-404-video-container video {
    width: 200%;
    height: 200%; }
  .av-not-found--content {
    padding: 4rem 0; }
  .av-not-found--heading h1 {
    font-size: 4rem; } }

@media (min-width: 992px) {
  .av-404-video-container video {
    width: 150%;
    height: 150%; }
  .av-not-found--content {
    padding: 6rem 0; }
  .av-not-found--heading h1 {
    font-size: 5rem; }
  .av-not-found--subheading {
    margin-top: -1.5rem; } }

@media (min-width: 1281px) {
  .av-not-found--heading h1 {
    font-size: 6rem; } }

@media (min-width: 1601px) {
  .av-not-found--content {
    padding: 8rem 0; }
  .av-not-found--heading h1 {
    font-size: 7rem; } }

.av-third-level-trigger:nth-child(odd) .hs-menu-item.hs-menu-depth-1 {
  background-color: #f8f8f8 !important; }

.av-third-level-trigger:nth-child(even) .hs-menu-item.hs-menu-depth-1 {
  background-color: #fefefe !important; }

.mobile-dd-container .hs-menu-item.hs-menu-depth-1 a {
  display: inline-block;
  position: relative; }
  .mobile-dd-container .hs-menu-item.hs-menu-depth-1 a:after {
    position: absolute;
    top: 50%;
    right: 1rem;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
    content: '';
    border-left: 0.33rem solid #f70656;
    border-right: .33rem solid transparent;
    border-top: .33rem solid transparent;
    border-bottom: .33rem solid transparent; }

.av-third-level-trigger .sub-dd-text:first-of-type:after {
  display: none; }

.av-third-level-heading {
  display: block;
  font-weight: 700 !important;
  margin-bottom: 0rem;
  position: relative; }
  .av-third-level-heading:after {
    display: none !important; }

.av-third-level-subheading {
  display: inline-block;
  padding: 0 2.4rem;
  font-weight: 700 !important;
  margin-top: 1rem; }

.av-third-level-content li a {
  display: block;
  color: #3f3f3f;
  padding: 0 2.4rem;
  margin-bottom: -.5rem; }

.av-services-misc-content a {
  font-weight: 700; }

.se-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100; }
  .se-header .svg-wrapper {
    position: relative;
    width: 120px; }
    .se-header .svg-wrapper .link-over {
      z-index: 10; }
    .se-header .svg-wrapper--content {
      padding-bottom: 28%; }
    .se-header .svg-wrapper svg {
      position: absolute;
      z-index: 9;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden; }
      .se-header .svg-wrapper svg path, .se-header .svg-wrapper svg rect {
        fill: #fff; }
  .se-header.user-hovering > .site-container:after {
    opacity: 1;
    background-color: #3D1152; }
  .se-header > .site-container {
    background-color: transparent;
    position: relative; }
    .se-header > .site-container:after {
      pointer-events: none;
      display: block;
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -webkit-transition: background-color 0.4s linear;
      -o-transition: background-color 0.4s linear;
      transition: background-color 0.4s linear;
      background: #590888;
      opacity: .8; }
  .se-header .st-default-search-input {
    -webkit-transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    background-color: transparent;
    padding: .25rem;
    color: #fefefe;
    -webkit-transition: background 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: background 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: background 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    background-position: right 0 top 50%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #fefefe;
    overflow: hidden; }
    .se-header .st-default-search-input::-webkit-input-placeholder {
      -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      -o-transition: transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      color: #fefefe; }
    .se-header .st-default-search-input:-ms-input-placeholder {
      -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      -o-transition: transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      color: #fefefe; }
    .se-header .st-default-search-input::-ms-input-placeholder {
      -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      -o-transition: transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      color: #fefefe; }
    .se-header .st-default-search-input::placeholder {
      -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      -o-transition: transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      color: #fefefe; }
  .se-header .av-sts-list h6 {
    margin: 0 !important;
    margin-bottom: .25rem !important; }
  .se-header .av-sts-list li {
    padding: 1rem 2rem; }
    .se-header .av-sts-list li:hover {
      background: #dcdcdc; }
  .se-header .list-grid:before, .se-header .list-grid:after {
    clear: both;
    content: "";
    display: table; }
  .se-header .list-grid--item {
    width: 50%;
    float: left;
    margin-bottom: 1rem; }
    .se-header .list-grid--item:nth-child(odd) .list-grid--item_content {
      padding-right: .5rem; }
    .se-header .list-grid--item:nth-child(even) .list-grid--item_content {
      padding-left: .5rem; }
    .se-header .list-grid--item:nth-child(3), .se-header .list-grid--item:nth-child(4), .se-header .list-grid--item:nth-child(5) {
      width: 100%;
      text-align: left; }
      .se-header .list-grid--item:nth-child(3) .list-grid--item_content, .se-header .list-grid--item:nth-child(4) .list-grid--item_content, .se-header .list-grid--item:nth-child(5) .list-grid--item_content {
        padding: 0; }
    .se-header .list-grid--item h6 {
      margin-bottom: .5rem !important; }
      .se-header .list-grid--item h6 a {
        color: #3D1152 !important; }
      .se-header .list-grid--item h6 a:hover {
        color: #590888 !important; }
    .se-header .list-grid--item li {
      margin-bottom: 0; }
  .se-header--search-container {
    float: left;
    width: 50%;
    text-align: right; }
    .se-header--search-container input {
      position: relative;
      z-index: 2; }
  .se-header--bar-above {
    text-align: right; }
    .se-header--bar-above .site-container {
      padding: .5rem 0;
      background: #f8f8f8 !important; }
    .se-header--bar-above_top-list {
      position: relative; }
    .se-header--bar-above li {
      padding-right: .5rem; }
      .se-header--bar-above li a {
        font-size: 80%; }
    .se-header--bar-above li:last-child {
      padding-right: 0; }
    .se-header--bar-above .fa-globe {
      color: #3f3f3f; }
    .se-header--bar-above .fa-globe:hover {
      cursor: pointer;
      color: #cc0648; }
    .se-header--bar-above a {
      color: #3f3f3f; }
      .se-header--bar-above a:hover {
        color: #cc0648; }
  .se-header .se-lang-selector {
    text-align: right;
    height: 0;
    overflow: hidden;
    -webkit-transition: padding 0.1s cubic-bezier(0.6, 0.04, 0.98, 0.335), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: padding 0.1s cubic-bezier(0.6, 0.04, 0.98, 0.335), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), padding 0.1s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), padding 0.1s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), padding 0.1s cubic-bezier(0.6, 0.04, 0.98, 0.335), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .se-header .se-lang-selector--trigger {
      position: relative; }
    .se-header .se-lang-selector img {
      height: 16px;
      width: 24px; }
    .se-header .se-lang-selector.drawer-open {
      padding-top: 1rem;
      height: auto;
      overflow: visible; }
      .se-header .se-lang-selector.drawer-open .se-lang-selector--item {
        opacity: 1; }
    .se-header .se-lang-selector ul {
      list-style-type: none;
      padding: 0;
      margin: 0; }
    .se-header .se-lang-selector li {
      display: block;
      margin-bottom: 1rem; }
    .se-header .se-lang-selector--item {
      padding: 0;
      color: #3f3f3f;
      opacity: 0;
      -webkit-transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      -o-transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86); }
      .se-header .se-lang-selector--item:hover {
        color: #cc0648; }
      .se-header .se-lang-selector--item img, .se-header .se-lang-selector--item span {
        vertical-align: middle; }
  .se-header--mobile {
    display: block;
    position: relative; }
    .se-header--mobile .flex-container,
    .se-header--mobile .site-container {
      background: #fefefe; }
    .se-header--mobile.is-open {
      background: #fefefe; }
      .se-header--mobile.is-open .menu-line {
        background: #000; }
    .se-header--mobile .flex-container {
      padding: .5rem 5%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .se-header--mobile .flex-container .logo-container,
      .se-header--mobile .flex-container .mobile-dd-toggle {
        width: 50%;
        float: none; }
    .se-header--mobile .logo-container img {
      max-width: 100%;
      display: block; }
    .se-header--mobile .mobile-dd-toggle {
      position: relative;
      pointer-events: all; }
      .se-header--mobile .mobile-dd-toggle .hamburger-menu-wrapper {
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 1.5rem;
        height: 1rem; }
        .se-header--mobile .mobile-dd-toggle .hamburger-menu-wrapper.is-toggled .menu-line {
          -webkit-transform: rotate(45deg) translate(0.375rem, 0.375rem);
              -ms-transform: rotate(45deg) translate(0.375rem, 0.375rem);
                  transform: rotate(45deg) translate(0.375rem, 0.375rem);
          opacity: 1; }
          .se-header--mobile .mobile-dd-toggle .hamburger-menu-wrapper.is-toggled .menu-line:nth-child(2) {
            opacity: 0; }
          .se-header--mobile .mobile-dd-toggle .hamburger-menu-wrapper.is-toggled .menu-line:nth-child(3) {
            -webkit-transform: rotate(-45deg) translate(0.375rem, -0.375rem);
                -ms-transform: rotate(-45deg) translate(0.375rem, -0.375rem);
                    transform: rotate(-45deg) translate(0.375rem, -0.375rem); }
    .se-header--mobile .mobile-marketplace-links-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: .75rem 5%; }
      .se-header--mobile .mobile-marketplace-links-container input {
        width: 100%;
        color: #3D1152;
        border-bottom: 1px solid #3D1152;
        padding: 1rem 0; }
        .se-header--mobile .mobile-marketplace-links-container input::-webkit-input-placeholder {
          color: #3D1152; }
        .se-header--mobile .mobile-marketplace-links-container input:-ms-input-placeholder {
          color: #3D1152; }
        .se-header--mobile .mobile-marketplace-links-container input::-ms-input-placeholder {
          color: #3D1152; }
        .se-header--mobile .mobile-marketplace-links-container input::placeholder {
          color: #3D1152; }
    .se-header--mobile .menu-line {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      -webkit-transition: opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      -o-transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      height: 1px;
      width: 100%;
      background: #000; }
      .se-header--mobile .menu-line:nth-child(2) {
        top: 50%; }
      .se-header--mobile .menu-line:nth-child(3) {
        top: 100%; }
    .se-header--mobile .mobile-dd-container {
      position: relative;
      text-align: right;
      -webkit-transition: opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      -o-transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      -webkit-transform: translateY(-200%);
          -ms-transform: translateY(-200%);
              transform: translateY(-200%);
      pointer-events: none;
      opacity: 0;
      overflow: hidden; }
      .se-header--mobile .mobile-dd-container.is-visible {
        overflow: visible;
        opacity: 1;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
        pointer-events: all; }
        .se-header--mobile .mobile-dd-container.is-visible .mobile-dd-trigger {
          height: auto;
          overflow: visible; }
          .se-header--mobile .mobile-dd-container.is-visible .mobile-dd-trigger ul {
            height: auto;
            overflow: visible; }
      .se-header--mobile .mobile-dd-container ul {
        padding: 0;
        margin: 0; }
      .se-header--mobile .mobile-dd-container li {
        display: block;
        padding: 1rem 0;
        padding-right: 10%; }
      .se-header--mobile .mobile-dd-container .mobile-dd-trigger {
        -webkit-tap-highlight-color: transparent;
        height: 0;
        overflow: hidden; }
        .se-header--mobile .mobile-dd-container .mobile-dd-trigger ul {
          height: 0;
          overflow: hidden; }
        .se-header--mobile .mobile-dd-container .mobile-dd-trigger.is-selected span:first-child:after {
          border-top: .33rem solid transparent;
          border-bottom: 0.33rem solid #cc0648;
          -webkit-transform: translateY(-100%);
              -ms-transform: translateY(-100%);
                  transform: translateY(-100%); }
      .se-header--mobile .mobile-dd-container .mobile-dd-heading {
        display: block;
        font-weight: 700;
        position: relative;
        padding-bottom: .5rem;
        color: #3D1152; }
        .se-header--mobile .mobile-dd-container .mobile-dd-heading:after {
          position: absolute;
          top: 40%;
          right: -1.25rem;
          -webkit-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
                  transform: translateY(-50%);
          -webkit-transition: border 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
          transition: border 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
          -o-transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), border 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
          transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), border 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
          transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), border 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
          display: block;
          content: '';
          border-left: .33rem solid transparent;
          border-right: .33rem solid transparent;
          border-top: 0.33rem solid #f70656;
          border-bottom: .33rem solid transparent; }
  .se-header .sub-dd {
    height: 0;
    overflow: hidden;
    margin-right: -11%; }
    .se-header .sub-dd li {
      padding: .75rem 0; }
      .se-header .sub-dd li:first-child {
        padding-top: .75rem; }
      .se-header .sub-dd li:nth-child(odd) {
        background: #f8f8f8; }
    .se-header .sub-dd .sub-dd-text {
      padding-right: 2.4rem;
      padding-bottom: 0;
      font-weight: 400;
      position: relative;
      color: #f70656; }
      .se-header .sub-dd .sub-dd-text:after {
        top: 50%;
        right: 1rem;
        position: absolute;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        -webkit-transition: border 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: border 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
        -o-transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), border 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), border 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), border 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
        display: block;
        content: '';
        border-left: 0.33rem solid #3D1152;
        border-right: .33rem solid transparent;
        border-top: .33rem solid transparent;
        border-bottom: .33rem solid transparent; }
  .se-header--top, .se-header--bottom {
    display: none; }
  .se-header.se-squeeze-header .se-header--top,
  .se-header.se-squeeze-header .se-header--bottom {
    display: block; }
  .se-header.se-squeeze-header .logo-container {
    padding-bottom: .5rem; }
  .se-header.on-light > .site-container {
    background: #590888; }
  .se-header.is-fixed {
    position: fixed; }
    .se-header.is-fixed > .site-container {
      background: #590888; }
    .se-header.is-fixed .fake-border {
      display: none; }
  .se-header .fake-border {
    -webkit-transition: width 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: width 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: width 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: width 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: width 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: absolute;
    bottom: 0rem;
    left: 0;
    height: .25rem;
    width: 100%;
    background: #3D1152;
    overflow: hidden; }
    .se-header .fake-border:after {
      opacity: 0;
      display: block;
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: -webkit-gradient(linear, left top, right top, from(#3D1152), to(#3E1054));
      background-image: -o-linear-gradient(left, #3D1152, #3E1054);
      background-image: linear-gradient(90deg, #3D1152, #3E1054);
      -webkit-transition: opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 3s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 3s cubic-bezier(0.165, 0.84, 0.44, 1);
      -o-transition: transform 3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: transform 3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: transform 3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 3s cubic-bezier(0.165, 0.84, 0.44, 1);
      -webkit-transform: translateX(-100%);
          -ms-transform: translateX(-100%);
              transform: translateX(-100%); }
    .se-header .fake-border.is-animating:after {
      opacity: 1;
      -webkit-transform: translateX(200%);
          -ms-transform: translateX(200%);
              transform: translateX(200%); }
  .se-header ul {
    padding: 0;
    margin: 0;
    list-style-type: none; }
  .se-header li {
    display: inline-block; }
  .se-header .site-container {
    position: relative;
    z-index: 9; }
  .se-header .inner {
    position: relative; }
  .se-header .top-level-items {
    padding: 1rem 0; }
  .se-header .logo-container,
  .se-header .marketplace-links-container {
    float: left;
    width: 50%; }
  .se-header .logo-container figure {
    display: inline-block;
    margin: 0;
    padding: 0; }
  .se-header .nav-links-container {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 99;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    text-align: center;
    pointer-events: none; }
    .se-header .nav-links-container li {
      display: inline-block;
      position: relative;
      padding: 0 .25rem;
      -webkit-transition: padding 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      -o-transition: padding 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: padding 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      font-weight: 700;
      font-size: 105%;
      pointer-events: all; }
    .se-header .nav-links-container li .link-over {
      display: block;
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 3rem;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); }
      .se-header .nav-links-container li .link-over:hover + span {
        color: #f70656; }
    .se-header .nav-links-container span {
      color: #fefefe; }
  .se-header .marketplace-links-container {
    text-align: right; }
    .se-header .marketplace-links-container img {
      padding-left: 1rem;
      padding-top: .33rem;
      width: 35px; }
  .se-header .dd-panels-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 8; }
    .se-header .dd-panels-container .inner-small {
      width: 90%;
      max-width: 90%; }
  .se-header .dd-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    -webkit-transition: opacity 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #3D1152;
    -webkit-transform: translateY(-100%) scale(0);
        -ms-transform: translateY(-100%) scale(0);
            transform: translateY(-100%) scale(0);
    opacity: 0;
    padding-top: 0; }
    .se-header .dd-panel.panel-selected {
      pointer-events: all;
      opacity: 1;
      -webkit-transform: translateY(0) scale(1);
          -ms-transform: translateY(0) scale(1);
              transform: translateY(0) scale(1); }
    .se-header .dd-panel--liner {
      overflow: hidden;
      position: relative;
      background: #f8f8f8; }
    .se-header .dd-panel--third {
      float: left;
      width: 33.3333%;
      background: #fefefe;
      position: relative;
      z-index: 10; }
    .se-header .dd-panel--third:first-child {
      z-index: 11;
      padding-bottom: 4rem; }
      .se-header .dd-panel--third:first-child:after {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        content: '';
        height: 200%;
        width: 1px;
        opacity: .5;
        background: #dedede; }
    .se-header .dd-panel--third:nth-child(2) {
      padding-top: 1rem;
      background: #f8f8f8; }
    .se-header .dd-panel--third:last-child {
      border: 0;
      background: #f8f8f8; }
      .se-header .dd-panel--third:last-child:before {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        height: 200%;
        width: 1px;
        opacity: .5;
        background: #dedede; }
    .se-header .dd-panel h1, .se-header .dd-panel h2, .se-header .dd-panel h3, .se-header .dd-panel h4, .se-header .dd-panel h5, .se-header .dd-panel h6 {
      margin: 0;
      color: #3D1152;
      margin-bottom: 1rem;
      font-size: 100%;
      font-weight: 700;
      -webkit-transition: color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      -o-transition: color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86); }
    .se-header .dd-panel .card-liner {
      padding: 0; }
    .se-header .dd-panel .list-container {
      padding: 3rem 2rem; }
    .se-header .dd-panel .first-third--links {
      margin-top: 3rem;
      color: #3f3f3f; }
      .se-header .dd-panel .first-third--links-container {
        padding: 0; }
      .se-header .dd-panel .first-third--links li {
        display: block;
        padding: .75rem 0;
        padding-left: 2rem;
        -webkit-transition: background 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -o-transition: background 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: background 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86); }
        .se-header .dd-panel .first-third--links li.is-selected {
          background: #f8f8f8; }
      .se-header .dd-panel .first-third--links li:hover {
        background: #f8f8f8; }
        .se-header .dd-panel .first-third--links li:hover h6 {
          color: #3D1152; }
      .se-header .dd-panel .first-third--links .item-content {
        padding: 0 .5rem;
        padding-right: 1rem; }
        .se-header .dd-panel .first-third--links .item-content.heading-only h6 {
          margin-bottom: 0; }
        .se-header .dd-panel .first-third--links .item-content h6 {
          margin-bottom: .5rem;
          font-weight: 600; }
        .se-header .dd-panel .first-third--links .item-content p {
          font-size: 90%; }
    .se-header .dd-panel .stacked-list--first {
      margin-bottom: 2rem; }
    .se-header .dd-panel .stacked-list li {
      display: block;
      font-size: 100%;
      margin-bottom: .75rem; }
    .se-header .dd-panel .stacked-list p {
      font-size: 100%; }
    .se-header .dd-panel .stacked-list a {
      color: #590888; }
    .se-header .dd-panel .stacked-list a:hover {
      color: #3E1054; }
    .se-header .dd-panel .stacked-list .card {
      width: 100%; }
      .se-header .dd-panel .stacked-list .card .hr {
        margin-top: -.5rem;
        margin-bottom: .5rem; }
    .se-header .dd-panel .image-row {
      padding-bottom: 56.25%;
      z-index: 1;
      margin-bottom: 1.5rem; }
    .se-header .dd-panel .body-copy {
      margin-bottom: .5rem; }
      .se-header .dd-panel .body-copy p {
        font-size: 100%; }
    .se-header .dd-panel .action-row a {
      font-size: 100%;
      font-weight: 700;
      color: #590888; }
      .se-header .dd-panel .action-row a:hover {
        color: #3E1054; }
  .se-header .flyouts-container {
    position: relative; }
  .se-header .flyouts-wwo .stacked-list--first {
    margin-bottom: 2rem; }
  .se-header .flyouts-wwo .stacked-list .action-row {
    position: relative; }
    .se-header .flyouts-wwo .stacked-list .action-row:after {
      display: block;
      content: '';
      position: absolute;
      bottom: -2rem;
      left: -25%;
      width: 150%;
      height: 1px;
      background: #3D1152; }
    .se-header .flyouts-wwo .stacked-list .action-row.has-card {
      margin-bottom: 0; }
  .se-header .flyouts-wwo .stacked-list--second {
    margin-top: 1rem;
    padding-top: 3rem; }
  .se-header .flyouts-wwo .stacked-list .all-resources-link {
    margin-top: 2rem; }
    .se-header .flyouts-wwo .stacked-list .all-resources-link a {
      font-weight: 700;
      color: #3D1152; }
  .se-header .flyout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    height: 0;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .se-header .flyout.is-selected {
      opacity: 1;
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0);
      height: auto;
      visibility: visible; }
    .se-header .flyout-news, .se-header .flyout-blog, .se-header .flyout-events, .se-header .flyout-videos, .se-header .flyout-webinars, .se-header .flyout-success-stories, .se-header .flyout-all-resources {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%; }
  .se-header .cta-panel {
    position: relative; }
    .se-header .cta-panel .cta-flyout {
      opacity: 0;
      height: 0;
      -webkit-transform: translateY(100%);
          -ms-transform: translateY(100%);
              transform: translateY(100%);
      -webkit-transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      -o-transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      -webkit-transition-delay: 100ms;
           -o-transition-delay: 100ms;
              transition-delay: 100ms; }
      .se-header .cta-panel .cta-flyout .heading-row h6 {
        font-size: 120%; }
      .se-header .cta-panel .cta-flyout .body-copy p {
        font-size: 90%;
        color: #3f3f3f !important; }
      .se-header .cta-panel .cta-flyout .action-row a {
        font-size: 90%; }
      .se-header .cta-panel .cta-flyout.is-selected {
        position: absolute;
        z-index: 10;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        opacity: 1;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
        height: auto; }

@media (min-width: 541px) {
  .se-header--bar-above li {
    padding-right: 1rem; } }

@media (min-width: 900px) {
  .se-header .se-lang-selector.drawer-open {
    padding-top: 0;
    padding-bottom: .5rem; }
  .se-header .se-lang-selector li {
    display: inline-block;
    margin-bottom: 0; }
  .se-header .se-lang-selector--item:last-child .se-lang-selector--item_content {
    padding-right: 0; }
  .se-header .se-lang-selector--item_content {
    padding-left: 1rem;
    padding-top: 1rem; }
  .se-header .dd-panel--third {
    min-height: 650px; }
  .se-header .logo-container {
    padding: 0;
    padding-top: .2rem; }
  .se-header .st-default-search-input {
    padding: 1rem;
    background-position: right 16px top 50%; }
    .se-header .st-default-search-input:focus {
      border-bottom: 1px solid #fefefe;
      background-position: right -50% top 50%; }
      .se-header .st-default-search-input:focus::-webkit-input-placeholder {
        -webkit-transform: translateY(-200%);
                transform: translateY(-200%); }
      .se-header .st-default-search-input:focus:-ms-input-placeholder {
        -ms-transform: translateY(-200%);
            transform: translateY(-200%); }
      .se-header .st-default-search-input:focus::-ms-input-placeholder {
        -ms-transform: translateY(-200%);
            transform: translateY(-200%); }
      .se-header .st-default-search-input:focus::placeholder {
        -webkit-transform: translateY(-200%);
            -ms-transform: translateY(-200%);
                transform: translateY(-200%); }
  .se-header--mobile {
    display: none; }
  .se-header--top, .se-header--bottom {
    display: block; }
  .se-header .dd-panels-container .inner-small {
    width: 100%;
    max-width: 100%; }
  .se-header .marketplace-links-container img {
    width: 50px;
    padding-left: 2rem; } }

@media (min-width: 1281px) {
  .se-header .nav-links-container li {
    padding: 0 1rem; } }

@media (min-width: 1441px) {
  .se-header .nav-links-container li {
    padding: 0 1.5rem; }
  .se-header .marketplace-links-container img {
    width: 70px;
    padding-left: 3rem; }
  .se-header .dd-panels-container .inner-small {
    max-width: 75%; } }

@media (min-width: 1601px) {
  .se-header .nav-links-container li {
    padding: 0 1.5rem; }
  .se-header .marketplace-links-container img {
    width: 70px;
    padding-left: 3rem; } }

.se-site-footer {
  padding-bottom: 0;
  overflow: hidden; }
  .se-site-footer--top {
    position: relative; }
    .se-site-footer--top .inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
  .se-site-footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0; }
  .se-site-footer .footer-small {
    font-weight: 400;
    line-height: 1.2;
    font-size: 90%;
    color: #3D1152;
    font-family: "Barlow"; }
    .se-site-footer .footer-small:last-of-type {
      margin-top: 1rem; }
  .se-site-footer--bottom {
    padding: 1rem 0;
    background: #f8f8f8; }
    .se-site-footer--bottom .inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
    .se-site-footer--bottom_item {
      width: 100%;
      text-align: center;
      margin-bottom: 1rem; }
      .se-site-footer--bottom_item p {
        font-size: 100%; }
      .se-site-footer--bottom_item li {
        margin-bottom: 1rem; }
      .se-site-footer--bottom_item li:last-child {
        margin-bottom: 0; }
        .se-site-footer--bottom_item li:last-child a:hover {
          color: #3D1152; }
        .se-site-footer--bottom_item li:last-child:after {
          display: none; }
      .se-site-footer--bottom_item img {
        width: 75px; }
      .se-site-footer--bottom_item a {
        color: #3f3f3f; }
      .se-site-footer--bottom_item a:hover {
        color: #cc0648; }
  .se-site-footer--legal {
    color: #fefefe; }
    .se-site-footer--legal .bg-img {
      display: none; }
    .se-site-footer--legal .site-container {
      padding: 1rem 0;
      background: #3D1152; }
  .se-site-footer .footer-triangle {
    display: none;
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0; }

.se-footer-item {
  width: 100%;
  margin-bottom: 1rem; }
  .se-footer-item.drawer-open .se-footer-item--heading-row:after {
    -webkit-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg); }
  .se-footer-item--heading-row {
    text-align: center;
    font-family: "Barlow";
    font-size: 120%;
    margin-bottom: 1rem;
    position: relative;
    color: #3D1152;
    -webkit-tap-highlight-color: transparent; }
    .se-footer-item--heading-row:after {
      position: absolute;
      display: block;
      content: '';
      top: .75rem;
      right: 0;
      border-left: .33rem solid transparent;
      border-right: .33rem solid transparent;
      border-top: 0.33rem solid #3D1152;
      border-bottom: .33rem solid transparent;
      -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      -o-transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
      transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .se-footer-item--content-row {
    height: 0;
    overflow: hidden; }
    .se-footer-item--content-row li, .se-footer-item--content-row p {
      font-family: "Barlow"; }
    .se-footer-item--content-row li {
      margin-bottom: 1rem;
      text-align: right; }
      .se-footer-item--content-row li a {
        color: #3f3f3f; }
      .se-footer-item--content-row li a:hover {
        color: #3E1054; }
    .se-footer-item--content-row p {
      text-align: right;
      font-weight: 700; }
  .se-footer-item--social-icons {
    margin-top: 2rem;
    text-align: right; }
    .se-footer-item--social-icons li {
      display: inline-block; }

@media (min-width: 961px) {
  .se-site-footer--top .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .se-site-footer--bottom {
    padding: 1.5rem 0; }
    .se-site-footer--bottom .inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .se-site-footer--bottom_item {
      text-align: left;
      width: 33.3333%;
      margin-bottom: 0;
      font-size: 80%; }
      .se-site-footer--bottom_item:nth-child(2) {
        text-align: center; }
      .se-site-footer--bottom_item:nth-child(3) {
        text-align: right; }
    .se-site-footer--bottom_item li {
      margin-bottom: 0;
      margin-right: .5rem;
      display: inline-block;
      position: relative; }
      .se-site-footer--bottom_item li:after {
        display: block;
        content: '';
        position: absolute;
        top: 3px;
        right: -.4rem;
        height: .8rem;
        width: 1px;
        background: #626469; }
  .se-site-footer--legal {
    font-size: 60%; }
    .se-site-footer--legal .site-container {
      padding: 1.5rem 0; }
  .se-site-footer .footer-triangle {
    display: block;
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0; }
    .se-site-footer .footer-triangle--small {
      bottom: 4rem;
      right: 9rem;
      mix-blend-mode: multiply; }
  .se-footer-item {
    width: 100%;
    margin-bottom: 0;
    padding-right: 1rem; }
    .se-footer-item:last-of-type {
      padding-right: 0; }
    .se-footer-item--heading-row {
      text-align: left; }
      .se-footer-item--heading-row p {
        font-weight: 500; }
      .se-footer-item--heading-row:after {
        display: none; }
    .se-footer-item--content-row {
      height: auto;
      overflow: visible;
      font-size: 90%; }
      .se-footer-item--content-row li {
        text-align: left;
        margin-bottom: .75rem; }
      .se-footer-item--content-row p {
        text-align: left; }
    .se-footer-item--social-icons {
      text-align: left;
      margin-top: 1rem !important; } }

.home-hero {
  position: relative;
  text-align: center; }
  .home-hero h1 {
    font-size: 2rem; }
  .home-hero .hr {
    background: #3D1152; }
  .home-hero .hr:after {
    background: #3D1152; }
  .home-hero .flickity-controls {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-115%);
        -ms-transform: translateY(-115%);
            transform: translateY(-115%); }
    .home-hero .flickity-controls .inner {
      position: relative; }
  .home-hero .body-copy p {
    font-size: 120%; }
  .home-hero .inner-large {
    width: 95%; }

.hero-default .hero-carousel .flickity-page-dots {
  bottom: 2rem; }

.hero-default {
  position: relative; }
  .hero-default:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    background: #000;
    opacity: .125; }
  .hero-default .body-copy {
    margin-bottom: 1em; }
  .hero-default .flickity-controls {
    position: absolute;
    z-index: 3;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-115%);
        -ms-transform: translateY(-115%);
            transform: translateY(-115%); }
    .hero-default .flickity-controls .inner {
      position: relative; }

.hs-content-id-6036757169 .hero-carousel .inner,
.is-sitecore .hero-carousel .inner {
  padding: 3rem 0 !important; }

.hs-content-id-6036757169 .hero-carousel .flickity-controls,
.is-sitecore .hero-carousel .flickity-controls {
  display: none !important; }

.hero-carousel {
  position: relative;
  z-index: 2; }
  .hero-carousel .one-half {
    width: 90%;
    margin: auto;
    padding-bottom: 4rem; }
    .hero-carousel .one-half .hr {
      margin-left: auto;
      margin-right: auto; }
  .hero-carousel .flickity-page-dots {
    position: absolute;
    z-index: 2;
    bottom: 1rem;
    left: 50%;
    -webkit-transform: translateX(-66%);
        -ms-transform: translateX(-66%);
            transform: translateX(-66%); }
  .hero-carousel .dot {
    display: inline-block;
    width: .66rem;
    height: .66rem;
    background: #fefefe;
    border-radius: 50%;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out; }
    .hero-carousel .dot:hover {
      cursor: pointer; }
    .hero-carousel .dot:nth-child(n + 2) {
      margin-left: 1rem; }
    .hero-carousel .dot.is-selected {
      background: #3D1152;
      -webkit-transform: scale(1.3);
          -ms-transform: scale(1.3);
              transform: scale(1.3); }

.carousel-slide {
  width: 100%; }

.testimonial-slider {
  padding-bottom: 2rem; }
  .testimonial-slider .flickity-controls {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .testimonial-slider .flickity-controls #testimonial-carousel-prev,
    .testimonial-slider .flickity-controls #testimonial-carousel-next {
      font-size: 125%;
      color: #f70656; }
    .testimonial-slider .flickity-controls #testimonial-carousel-next {
      float: right; }

.testimonial-carousel {
  position: relative; }
  .testimonial-carousel .carousel-slide {
    margin: 0 2rem; }
  .testimonial-carousel .body-copy {
    color: #fefefe;
    font-size: 80%; }
  .testimonial-carousel .meta-row {
    padding-top: 4rem; }
    .testimonial-carousel .meta-row h6 {
      font-weight: 700; }
  .testimonial-carousel .author-bar,
  .testimonial-carousel .author-avatar {
    background: none; }
  .testimonial-carousel .author-name {
    color: #f70656; }
  .testimonial-carousel .author-title, .testimonial-carousel .author-employer {
    font-size: 100%;
    color: #fefefe; }

@media (min-width: 541px) {
  .home-hero .flickity-controls {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
  .hero-carousel .flickity-page-dots {
    bottom: .5rem;
    left: 7.5%;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); } }

@media (min-width: 769px) {
  .hs-content-id-6036757169 .hero-carousel .inner,
  .is-sitecore .hero-carousel .inner {
    padding: 4rem 0 !important; }
  .hs-content-id-6036757169 .hero-carousel .flickity-controls,
  .is-sitecore .hero-carousel .flickity-controls {
    display: block !important; }
  .home-hero {
    text-align: left; }
    .home-hero h1 {
      font-size: 2.4rem; }
    .home-hero #prev, .home-hero #next {
      -webkit-transform: scale(0.8);
          -ms-transform: scale(0.8);
              transform: scale(0.8); }
  .hero-carousel .one-half {
    width: 50%;
    margin: 0;
    padding: 6rem 0;
    padding-top: 5rem; }
    .hero-carousel .one-half .hr {
      margin-left: 0;
      margin-right: 0; }
  .hero-carousel .flickity-page-dots {
    bottom: 4rem; }
  .testimonial-slider .flickity-controls {
    width: 150%;
    left: -25%; } }

@media (min-width: 1281px) {
  .home-hero #prev, .home-hero #next {
    -webkit-transform: scale(0.75);
        -ms-transform: scale(0.75);
            transform: scale(0.75); } }

.text-block-default {
  text-align: center; }
  .text-block-default .hr-green {
    margin: auto; }
  .text-block-default .lead:nth-child(1) {
    margin-bottom: 0; }
  .text-block-default .lead:nth-child(2) {
    margin-top: 0; }
  .text-block-default .action-row {
    margin-top: 1rem; }

.intro-text {
  text-align: center;
  padding-bottom: 4rem; }
  .intro-text .heading-container h2 {
    margin-bottom: 1rem; }
  .intro-text .hr {
    margin: auto;
    margin-bottom: 1rem; }
    .intro-text .hr:after {
      background: #3D1152; }
  .intro-text .lead {
    margin-bottom: 1rem; }

.cta-banner {
  text-align: center; }
  .cta-banner .inner {
    margin: auto !important; }
  .cta-banner .hr {
    margin: auto; }
  .cta-banner p {
    margin-bottom: 2rem; }
  .cta-banner .heading-container h3 {
    font-weight: 600; }
  .cta-banner .hr {
    margin: 1.5em auto !important; }

.brand-carousel_wrapper {
  text-align: center;
  position: relative; }
  .brand-carousel_wrapper * {
    outline: none; }
  .brand-carousel_wrapper .top-third {
    padding-bottom: 3rem; }
  .brand-carousel_wrapper .bottom-third {
    padding-top: 4rem; }
  .brand-carousel_wrapper .brand-carousel {
    position: relative; }
  .brand-carousel_wrapper .carousel-slide {
    position: relative;
    width: 100%; }
    .brand-carousel_wrapper .carousel-slide a {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2;
      width: 100%;
      height: 100%; }
      .brand-carousel_wrapper .carousel-slide a:hover + .slide-liner {
        border: 1px solid #fff;
        background: #fefefe;
        -webkit-box-shadow: 0 0 15px #eee;
                box-shadow: 0 0 15px #eee; }
  .brand-carousel_wrapper .hr {
    margin: auto; }
  .brand-carousel_wrapper .slide-liner {
    position: relative;
    z-index: 1;
    border: 1px solid #eee;
    padding-bottom: 50%;
    margin: 0 2rem;
    -webkit-transition: background 0.2s ease-in-out, border 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out, border 0.2s ease-in-out;
    transition: background 0.2s ease-in-out, border 0.2s ease-in-out; }
    .brand-carousel_wrapper .slide-liner img {
      max-width: 40%;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  .brand-carousel_wrapper .flickity-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 1;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%); }
    .brand-carousel_wrapper .flickity-controls #brand-carousel-prev {
      float: left; }
    .brand-carousel_wrapper .flickity-controls #brand-carousel-next {
      float: right; }

#brand-carousel-prev,
#brand-carousel-next {
  color: #590888;
  font-size: 2rem; }

@media (min-width: 769px) {
  .brand-carousel_wrapper .hr {
    margin-top: -.5rem;
    margin-bottom: 1rem; }
  .brand-carousel .carousel-slide {
    width: 33%; }
  .brand-carousel .slide-liner {
    margin: 0 .5rem;
    padding-bottom: 66.6667%; }
  .brand-carousel .flickity-controls {
    width: 115%;
    top: 50%;
    left: -7.5%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); } }

@media (min-width: 1281px) {
  .brand-carousel .carousel-slide {
    width: calc(100% / 6); }
  .brand-carousel .slide-liner {
    margin: 0 .5rem;
    padding-bottom: 85%; }
    .brand-carousel .slide-liner img {
      max-width: 75%; } }

.card {
  text-align: center;
  position: relative; }
  .card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
    margin-bottom: 1.75rem; }
  .card-liner {
    padding: 2rem; }
  .card .hr {
    margin-left: auto;
    margin-right: auto;
    left: -.5rem; }
  .card .image-row {
    overflow: hidden;
    padding-bottom: 66.666667%; }
    .card .image-row img {
      display: block;
      margin: auto;
      max-width: 100%; }
  .card .hr {
    margin-left: 0; }
  .card .bg-img {
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    background-size: cover;
    background-position: 50% 50%; }
  .card .pre-heading-row {
    font-size: 85%;
    font-weight: 700;
    font-family: "Barlow"; }
    .card .pre-heading-row span:first-child {
      margin-right: 1rem; }
    .card .pre-heading-row span:last-child {
      color: #3D1152;
      font-weight: 700; }
  .card .heading-row a {
    color: #3D1152;
    font-weight: 700;
    font-size: 100%; }
  .card .body-copy {
    font-size: 100%; }
  .card .action-row {
    padding-top: 2rem; }
  .card .meta-row {
    padding: .5rem 1.5rem;
    border: 1px solid #dedede; }
    .card .meta-row h6 {
      margin-bottom: 0; }
    .card .meta-row h5 {
      margin-bottom: 0; }
    .card .meta-row.only-border-top {
      border: none;
      border-top: 1px solid #dedede; }
  .card .author-bar, .card .author-avatar {
    background: transparent; }
  .card .author-avatar img {
    max-width: 3rem;
    border-width: .25rem; }
  .card .author-about {
    padding-left: 4rem; }
  .card .author-liner {
    padding: .75rem 0; }
    .card .author-liner .hr {
      margin: .25rem 0;
      height: 1px; }
    .card .author-liner h6 {
      text-transform: uppercase;
      font-size: 60%; }
    .card .author-liner h5 {
      margin-top: .33rem;
      font-weight: bold; }

@media (min-width: 769px) {
  .card {
    width: 33%;
    float: left;
    text-align: left; }
    .card-liner {
      padding: 5rem 4rem; }
    .card .hr {
      margin: 0;
      margin-top: -.75rem;
      margin-bottom: .5rem;
      left: 0; }
    .card .author-liner h6 {
      text-transform: uppercase;
      font-size: 60%; }
    .card .author-liner h5 {
      margin-top: .33rem;
      font-size: 75%;
      font-weight: bold; } }

.cards-fullwidth h3 {
  margin-top: .75rem; }

.cards-fullwidth h4 {
  font-size: 120%; }

.cards-fullwidth .hr {
  margin-left: auto; }

.cards-fullwidth .cards-row:nth-child(n + 2) {
  display: none; }

.cards-fullwidth .action-row {
  display: none; }

.cards-fullwidth.with-content-above {
  padding-top: 0 !important; }

.cards-fullwidth.with-content-below {
  padding-bottom: 0 !important; }

.cards-fullwidth.has-borders:not(.has-6-cards) .card-liner {
  border-bottom: 1px solid #dedede; }

.cards-fullwidth.has-borders:not(.has-6-cards) .card:last-of-type .card-liner {
  border: none; }

.cards-fullwidth.has-links .action-row {
  display: block; }

.cards-fullwidth.has-2-cards .hr {
  margin-left: auto; }

.cards-fullwidth.has-2-cards .card {
  width: 100%; }

.cards-fullwidth.has-4-cards .hr {
  margin-left: auto; }

.cards-fullwidth.has-4-cards .card {
  width: 100%; }

.cards-fullwidth.has-6-cards .cards-row:nth-child(n + 2) {
  display: block; }

.cards-fullwidth.has-6-cards .card {
  width: 100%;
  padding-bottom: 0;
  border-bottom: 1px solid #dedede; }

.cards-fullwidth .card h1, .cards-fullwidth .card h2, .cards-fullwidth .card h3, .cards-fullwidth .card h4, .cards-fullwidth .card h5, .cards-fullwidth .card h6 a {
  color: #3D1152; }

.cards-fullwidth .card .hr {
  display: none !important; }

.cards-fullwidth .card i {
  bottom: -1.75rem; }

.cards-fullwidth .card:hover h1 a, .cards-fullwidth .card:hover h2 a, .cards-fullwidth .card:hover h3 a, .cards-fullwidth .card:hover h4 a, .cards-fullwidth .card:hover h5 a, .cards-fullwidth .card:hover h6 a {
  color: #cc0648; }

.cards-fullwidth .card:hover i {
  opacity: 1;
  -webkit-transform: translateX(25%);
      -ms-transform: translateX(25%);
          transform: translateX(25%); }

@media (min-width: 769px) {
  .cards-fullwidth.has-borders:not(.has-6-cards) .card-liner {
    border-bottom: none;
    border-right: 1px solid #dedede; }
  .cards-fullwidth .hr {
    margin-left: 0; }
  .cards-fullwidth .card-liner {
    padding: 3rem 1rem; }
  .cards-fullwidth.has-2-cards .hr {
    margin-left: 0; }
  .cards-fullwidth.has-2-cards .card {
    width: 50%; }
  .cards-fullwidth.has-4-cards .hr {
    margin-left: 0; }
  .cards-fullwidth.has-4-cards .card {
    width: 25%; }
  .cards-fullwidth.has-4-cards .card-liner {
    padding: 3rem 2rem; }
  .cards-fullwidth.has-6-cards .card {
    width: 33%;
    float: left;
    border-bottom: 0;
    padding-bottom: 2rem; }
  .cards-fullwidth.has-6-cards .card-liner {
    padding: 2rem; }
  .cards-fullwidth.has-6-cards.has-borders .card {
    border-bottom: 1px solid #dedede; }
    .cards-fullwidth.has-6-cards.has-borders .card:nth-child(1), .cards-fullwidth.has-6-cards.has-borders .card:nth-child(2), .cards-fullwidth.has-6-cards.has-borders .card:nth-child(4), .cards-fullwidth.has-6-cards.has-borders .card:nth-child(5) {
      border-right: 1px solid #dedede; } }

@media (min-width: 961px) {
  .cards-fullwidth h4 {
    font-size: 140%; }
  .cards-fullwidth .card-liner {
    padding: 3rem; }
  .cards-fullwidth .heading-row {
    margin-top: -.75rem; }
  .cards-fullwidth.has-6-cards .card-liner {
    padding: 5rem 4rem; } }

.form-fullwidth {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #170421), to(#3E1054));
  background-image: -o-linear-gradient(bottom, #170421 50%, #3E1054);
  background-image: linear-gradient(0deg, #170421 50%, #3E1054);
  text-align: center; }
  .form-fullwidth .one-half {
    float: left; }
  .form-fullwidth .text-half {
    padding-bottom: 2rem; }
    .form-fullwidth .text-half .hr {
      margin: auto;
      margin-bottom: 2rem; }
  .form-fullwidth .bg-img {
    display: none; }
  .form-fullwidth .form .form-liner {
    padding: 0; }
  .form-fullwidth .form-half a {
    color: #f70656; }
    .form-fullwidth .form-half a:hover {
      color: #cc0648; }

@media (min-width: 769px) {
  .form-fullwidth {
    text-align: left;
    padding: 4rem 0; }
    .form-fullwidth .one-half {
      width: 50%;
      margin: 0; }
    .form-fullwidth .text-half {
      padding-bottom: 0;
      width: 40%;
      margin-top: .5rem;
      margin-right: 10%; }
      .form-fullwidth .text-half h2 {
        margin-bottom: 1rem; }
      .form-fullwidth .text-half .hr {
        margin-left: 0; }
    .form-fullwidth .form-half {
      margin-top: -1rem; }
      .form-fullwidth .form-half span {
        color: #fefefe !important; }
      .form-fullwidth .form-half h3 {
        margin-top: 0; } }

.hero-default {
  text-align: center;
  padding: 0;
  padding-bottom: 2rem; }
  .hero-default h1 {
    font-size: 2rem; }
  .hero-default .hr {
    margin-left: auto;
    margin-right: auto; }
  .hero-default--product .se-badge--powered-by {
    margin-top: 1rem;
    margin-bottom: 2rem; }
    .hero-default--product .se-badge--powered-by_content {
      padding: 0;
      background: none;
      color: #fefefe;
      font-style: italic;
      display: block;
      border-radius: 0; }
    .hero-default--product .se-badge--powered-by img {
      margin: auto;
      display: block;
      max-width: 40%; }
  .hero-default .preheading-container {
    text-transform: uppercase; }
    .hero-default .preheading-container h3 {
      font-size: 100%;
      font-weight: 700;
      letter-spacing: 0px; }
  .hero-default .flickity-page-dots .is-selected {
    background: #f70656; }
  .hero-default .bg-img {
    z-index: 1; }
  .hero-default .flickity-controls {
    position: absolute;
    top: 85%;
    left: 0;
    width: 100%; }
  .hero-default .event-info {
    display: none; }
  .hero-default .addthis_inline_share_toolbox {
    display: none; }
  .hero-default.is-event .default-copy {
    display: none; }
  .hero-default.is-event .event-info {
    display: block; }
  .hero-default.has-social-buttons .addthis_inline_share_toolbox {
    display: block; }
  .hero-default.has-video-half .inner-default {
    position: relative; }
  .hero-default.has-video-half .one-half {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 2rem;
    -webkit-transition: padding 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: padding 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: padding 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86); }
  .hero-default.has-video-half .video-half .video-poster-container {
    overflow: hidden;
    z-index: 2; }
  .hero-default.has-video-half .video-half img {
    display: block;
    max-width: 100%;
    border-bottom: 0.25rem solid #3D1152; }
  .hero-default.has-video-half .video-half .green-cover {
    position: absolute;
    background: #3D1152;
    mix-blend-mode: multiply;
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    bottom: -80%;
    left: -5%;
    width: 110%;
    height: 100%; }
    .hero-default.has-video-half .video-half .green-cover:last-of-type {
      top: -25%;
      left: -10%;
      width: 10%;
      height: 150%;
      -webkit-transition-delay: .2s;
           -o-transition-delay: .2s;
              transition-delay: .2s; }
  .hero-default.has-form .one-half {
    width: 100%;
    padding-top: 0;
    text-align: center; }
  .hero-default.has-form .one-half:first-child .liner {
    padding: 0 2rem; }
  .hero-default.has-form #hs_form_target_squeeze_form form {
    background: #f8f8f8;
    padding: 2rem;
    position: static; }
  .hero-default.has-form form label {
    display: none; }
  .hero-default.has-form form input {
    min-width: 100%;
    border: 1px solid #dedede; }
  .hero-default .one-half {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
    padding-top: 4rem; }
  .hero-default .heading-container .hr {
    margin: 0rem auto 2rem auto; }

@media (min-width: 541px) {
  .hero-default .flickity-controls {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .hero-default .flickity-controls #prev {
      float: left; } }

@media (min-width: 769px) {
  .hero-default {
    padding: 4rem 0;
    padding-bottom: 5rem;
    text-align: left; }
    .hero-default.is-squeeze-hero .hr.hr-gray {
      margin-top: .45em; }
    .hero-default h1 {
      font-size: 2.4rem; }
    .hero-default .hr {
      margin-left: 0; }
    .hero-default--product .se-badge--powered-by {
      margin-top: 0; }
      .hero-default--product .se-badge--powered-by img {
        margin: 0;
        max-width: 25%; }
    .hero-default .one-half {
      width: 55%; }
    .hero-default .one-half h1 {
      margin-top: 0; }
    .hero-default.has-video-half .one-half, .hero-default.has-video-half .video-half {
      width: 50%;
      float: left; }
    .hero-default.has-video-half .one-half {
      margin-right: 0;
      margin-bottom: 0; }
      .hero-default.has-video-half .one-half .liner {
        padding-left: 0;
        padding-right: 1rem; }
    .hero-default.has-video-half .video-half {
      position: absolute;
      top: 0;
      right: 0; } }

@media (min-width: 769px) {
  .hero-default .heading-container .hr {
    margin-left: 0;
    margin-bottom: 1rem; }
  .hero-default.has-video-half .one-half {
    padding-right: 2rem; }
  .hero-default .one-half {
    width: 60%; }
    .hero-default .one-half h1 {
      font-size: 180%; } }

@media (min-width: 1281px) {
  .hero-default .one-half {
    width: 60%; }
    .hero-default .one-half h1 {
      font-size: 200%;
      margin-bottom: 1.75rem; }
  .hero-default .body-copy {
    width: 75%; } }

@media (min-width: 961px) {
  .hero-default.has-form .one-half {
    float: left;
    margin: 0;
    padding: 3rem 0;
    text-align: left; }
    .hero-default.has-form .one-half:first-child {
      width: 60%; }
    .hero-default.has-form .one-half:last-child {
      width: 40%; }
  .hero-default.has-form #hs_form_target_squeeze_form {
    position: absolute; } }

@media (min-width: 1441px) {
  .hero-default {
    padding: 8rem 0; }
    .hero-default.has-video-half .one-half {
      padding-top: 0;
      padding-bottom: 6rem; }
    .hero-default--product .se-badge--powered-by img {
      max-width: 30%; }
    .hero-default--product .carousel-slide {
      padding: 8rem 0; }
    .hero-default .one-half {
      width: 40%;
      padding: 6rem 0;
      padding-bottom: 5rem; }
      .hero-default .one-half h1 {
        font-size: 275%; }
      .hero-default .one-half .body-copy {
        width: 90%; } }

@media (min-width: 1601px) {
  .hero-default {
    padding: 10rem 0;
    padding-bottom: 10rem; }
    .hero-default.has-video-half .one-half {
      padding-bottom: 8rem; } }

.intro-has-video.block-default {
  padding-top: 3rem; }

.intro-has-video .fake-button {
  display: none; }

.intro-has-video .lead {
  margin-bottom: 0; }

.intro-has-video.has-fake-button-text .fake-button {
  display: inline; }

.intro-has-video.has-action-row .action-row {
  display: block; }

.intro-has-video .action-row a {
  color: #3D1152; }

.intro-has-video .action-row a:hover {
  color: #3E1054; }

.intro-has-video .video-half {
  position: relative;
  padding-top: 2rem; }
  .intro-has-video .video-half .inner-medium {
    overflow: hidden; }

.intro-has-video .video-poster {
  max-width: 100%;
  display: block;
  margin: auto; }

@-webkit-keyframes growLine {
  0% {
    width: 0; }
  100% {
    width: 6rem; } }

@keyframes growLine {
  0% {
    width: 0; }
  100% {
    width: 6rem; } }

.accordion-wrapper:not(.bg-gray) .accordion-item {
  background: #fff; }

.accordion-wrapper .top-half {
  text-align: center;
  padding-bottom: 2rem; }
  .accordion-wrapper .top-half .hr {
    margin: auto; }

.accordion-wrapper .heading-container .hr {
  margin: auto;
  margin-top: -1rem;
  margin-bottom: 1.25rem; }

.acc-items-list {
  background-color: #000;
  display: none; }

.accordion {
  overflow: hidden; }
  .accordion ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
  .accordion * {
    outline: none; }
  .accordion .bg-img {
    display: none; }
  .accordion-item {
    display: block;
    position: relative;
    overflow: hidden; }
  .accordion-item-heading {
    padding: .5rem 0;
    padding-left: .5rem;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #dedede; }
    .accordion-item-heading * {
      display: inline; }
    .accordion-item-heading:hover {
      cursor: pointer; }
    .accordion-item-heading .accordion-caret {
      margin-right: .5rem; }
  .accordion-item-body {
    pointer-events: none;
    height: 0;
    padding: 0 2rem; }
    .accordion-item-body.visible {
      pointer-events: all; }
    .accordion-item-body .liner {
      padding: 2rem 0; }
  .accordion .body-copy ul {
    margin: 2rem 0;
    padding: 0 !important;
    padding-left: 1rem !important;
    margin-bottom: 0;
    list-style-type: disc; }
  .accordion .body-copy li {
    padding-bottom: 1rem; }
  .accordion .body-copy a {
    color: #3D1152; }
  .accordion .body-copy a:hover {
    color: #3E1054; }
  .accordion .action-row {
    padding: 1rem 0;
    padding-top: 0; }
    .accordion .action-row_list li {
      padding-bottom: 1rem; }
    .accordion .action-row_list a {
      color: #3D1152; }
    .accordion .action-row .button {
      margin-top: 1rem; }

.card-infopanel {
  display: none; }

@media (min-width: 961px) {
  .accordion-wrapper .top-half {
    padding-bottom: 4rem; }
  .accordion-wrapper .bottom-half .inner:before, .accordion-wrapper .bottom-half .inner:after {
    display: table;
    content: '';
    clear: both; }
  .accordion, .acc-items-list {
    float: left; }
  .acc-items-list {
    width: 45%;
    display: block;
    font-weight: bold;
    overflow: hidden; }
    .acc-items-list ul {
      text-align: right;
      list-style-type: none;
      padding: 5rem;
      margin: 0;
      padding-right: 6rem; }
    .acc-items-list li {
      padding-bottom: 3rem; }
      .acc-items-list li:last-child {
        padding-bottom: 0; }
    .acc-items-list span {
      -webkit-transition: color 0.2s ease-in-out;
      -o-transition: color 0.2s ease-in-out;
      transition: color 0.2s ease-in-out;
      font-weight: 400; }
      .acc-items-list span:hover {
        cursor: pointer;
        color: #cc0648; }
      .acc-items-list span.active {
        position: relative; }
        .acc-items-list span.active:after {
          display: block;
          content: '';
          position: absolute;
          top: 50%;
          right: -7rem;
          width: 6rem;
          height: 1px;
          background: #fff;
          -webkit-animation: growLine .600s 1;
                  animation: growLine .600s 1; }
  .accordion {
    width: 55%;
    font-size: 90%; }
    .accordion .hr,
    .accordion .hr:after {
      margin-top: 0; }
    .accordion ul:not(.action-row_list) {
      padding: 4rem 3rem 3rem 4rem; }
    .accordion .action-row_list {
      list-style-type: disc;
      padding-left: 1rem; }
    .accordion .action-row a:not(.button):hover {
      color: #3E1054; }
    .accordion-caret {
      display: none; }
    .accordion-item {
      height: 0;
      background: #f8f8f8; }
    .accordion-item-heading {
      border: none;
      padding: 0;
      padding-top: .5rem; }
      .accordion-item-heading h4 {
        font-weight: 700;
        font-size: 1.4rem; }
      .accordion-item-heading:hover {
        cursor: default; }
    .accordion-item-body {
      height: auto;
      pointer-events: all;
      padding: 0; }
      .accordion-item-body .liner {
        padding-top: 1rem; } }

@media (min-width: 1281px) {
  .acc-items-list {
    font-size: 110%; }
  .accordion {
    font-size: 100%; } }

.cards-grid_wrapper .heading-container {
  text-align: center; }
  .cards-grid_wrapper .heading-container .lead {
    margin-bottom: 1rem; }
  .cards-grid_wrapper .heading-container .hr {
    margin: auto; }
  .cards-grid_wrapper .heading-container p {
    margin-top: 1rem; }

.cards-grid .inner-default:before, .cards-grid .inner-default:after {
  display: table;
  content: '';
  clear: both; }

.cards-grid .card {
  text-align: left;
  width: 100%; }
  .cards-grid .card .hr {
    display: none !important; }
  .cards-grid .card:nth-last-child(-n+2) .action-row {
    border: none;
    padding-bottom: 0; }

.cards-grid .card-liner {
  padding: 2rem 0;
  padding-bottom: 0; }

.cards-grid .pre-heading-row {
  font-size: 85%; }
  .cards-grid .pre-heading-row span {
    font-weight: bold; }
    .cards-grid .pre-heading-row span:first-of-type {
      margin-right: 1rem; }

.cards-grid .heading-row h5 {
  font-size: 120%;
  margin: 1rem 0; }

.cards-grid .heading-row .hr {
  margin-left: .5rem; }

.cards-grid .body-copy {
  font-size: 100%; }

.cards-grid .action-row {
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee; }

@media (min-width: 769px) {
  .cards-grid {
    padding-top: 2rem; }
    .cards-grid .card {
      width: 45%; }
      .cards-grid .card:nth-child(odd) {
        margin-right: 5%; }
    .cards-grid .card-liner {
      padding: 2rem 4rem; }
      .cards-grid .card-liner:nth-child(-n+2) {
        padding-bottom: 0rem; }
    .cards-grid .heading-row h5 {
      font-size: 160%; }
    .cards-grid .heading-row .hr {
      margin-left: 0; } }

.cards-slider_wrapper.slider-false .cards-row:before, .cards-slider_wrapper.slider-false .cards-row:after {
  clear: both;
  content: "";
  display: table; }

.cards-slider_wrapper.slider-false .flickity-controls {
  display: none; }

.cards-slider_wrapper.slider-false .card {
  margin: 0 !important;
  margin-bottom: .5rem !important; }
  .cards-slider_wrapper.slider-false .card-liner {
    padding: 0 .25rem; }

.cards-slider_wrapper .inner {
  position: relative; }
  .cards-slider_wrapper .inner > .action-row {
    text-align: center; }

.cards-slider_wrapper .hr {
  margin-left: auto;
  margin-right: auto; }

.cards-slider_wrapper .heading-container {
  text-align: center; }

.cards-slider_wrapper .cards-row {
  padding-bottom: 4rem; }

.cards-slider_wrapper .card {
  width: 100%;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 .25rem !important; }
  .cards-slider_wrapper .card .hr {
    display: none !important; }
  .cards-slider_wrapper .card:before, .cards-slider_wrapper .card:after {
    display: table;
    content: '';
    clear: both; }
  .cards-slider_wrapper .card .hr {
    margin-left: .5rem; }

.cards-slider_wrapper .card-liner {
  padding: 0; }

.cards-slider_wrapper .card-content {
  -webkit-transition: background 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: background 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: background 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  padding: 4rem 2rem;
  border: 1px solid #dedede; }

.cards-slider_wrapper .heading-row h5 {
  font-size: 100%;
  line-height: 1.6; }

.cards-slider_wrapper .heading-row a {
  line-height: 1.6; }

.cards-slider_wrapper .flickity-controls {
  position: absolute;
  top: 50%;
  left: -4%;
  -webkit-transform: translateY(-350%);
      -ms-transform: translateY(-350%);
          transform: translateY(-350%);
  width: 108%; }
  .cards-slider_wrapper .flickity-controls #cards-slider-prev {
    float: left; }
  .cards-slider_wrapper .flickity-controls #cards-slider-next {
    float: right; }

@media (min-width: 769px) {
  .cards-slider_wrapper .inner-medium .body-copy {
    text-align: center;
    margin-top: 2rem; }
  .cards-slider_wrapper .heading-container .hr {
    margin: auto;
    margin-top: -1rem;
    margin-bottom: -1rem; }
  .cards-slider_wrapper .card {
    width: 33%;
    margin: 0 .66rem; }
    .cards-slider_wrapper .card:hover .card-content {
      background: #fefefe;
      border: 1px solid #fefefe;
      -webkit-box-shadow: 0 0 15px #eee;
              box-shadow: 0 0 15px #eee; }
  .cards-slider_wrapper .heading-row h5 {
    font-size: 100%; }
  .cards-slider_wrapper .heading-row .hr {
    margin-left: 0; }
  .cards-slider_wrapper .flickity-controls {
    left: -7.5%;
    width: 115%; }
    .cards-slider_wrapper .flickity-controls #cards-slider-prev:hover, .cards-slider_wrapper .flickity-controls #cards-slider-next:hover {
      cursor: pointer; } }

.image-cards .card {
  margin-bottom: 2rem; }
  .image-cards .card:nth-child(1) .green-slide {
    -webkit-animation-delay: calc(.4s * 1);
            animation-delay: calc(.4s * 1);
    -webkit-transition-delay: calc(.4s * 1);
         -o-transition-delay: calc(.4s * 1);
            transition-delay: calc(.4s * 1); }
  .image-cards .card:nth-child(2) .green-slide {
    -webkit-animation-delay: calc(.4s * 2);
            animation-delay: calc(.4s * 2);
    -webkit-transition-delay: calc(.4s * 2);
         -o-transition-delay: calc(.4s * 2);
            transition-delay: calc(.4s * 2); }
  .image-cards .card:nth-child(3) .green-slide {
    -webkit-animation-delay: calc(.4s * 3);
            animation-delay: calc(.4s * 3);
    -webkit-transition-delay: calc(.4s * 3);
         -o-transition-delay: calc(.4s * 3);
            transition-delay: calc(.4s * 3); }

.image-cards .card:last-of-type {
  margin-bottom: 0; }

.image-cards .card:last-of-type .card-content {
  padding-bottom: 0; }

.image-cards .card-liner {
  padding: 0; }

.image-cards .card-content {
  padding: .5rem; }

.image-cards .image-row {
  padding-bottom: 0; }

.image-cards .image-row.has-green-slide {
  position: relative; }

.image-cards .image-row .green-slide {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5%;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#3D1152), to(#3E1054));
  background-image: -o-linear-gradient(left, #3D1152, #3E1054);
  background-image: linear-gradient(90deg, #3D1152, #3E1054);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: translateX(-110%);
      -ms-transform: translateX(-110%);
          transform: translateX(-110%); }

.image-cards .image-row .green-sliver {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5%;
  background: #3D1152;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  mix-blend-mode: multiply; }

@-webkit-keyframes slideRight {
  from {
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%); }
  to {
    -webkit-transform: translateX(110%);
            transform: translateX(110%); } }

@keyframes slideRight {
  from {
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%); }
  to {
    -webkit-transform: translateX(110%);
            transform: translateX(110%); } }

.image-cards .image-row.slide-triggered .green-slide {
  -webkit-animation-name: slideRight;
          animation-name: slideRight;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1; }

.image-cards .image-row.slide-complete .green-sliver {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0); }

.image-cards .heading-row h4 {
  margin-top: 1.5rem; }

.image-cards .heading-row, .image-cards .body-copy, .image-cards .action-row {
  width: 100%;
  margin: auto; }

@media (min-width: 769px) {
  .image-cards .card {
    margin-bottom: 0; }
  .image-cards .card:last-of-type .card-content {
    padding-bottom: .5rem; } }

@media (min-width: 961px) {
  .image-cards .heading-row, .image-cards .body-copy, .image-cards .action-row {
    width: 70%;
    margin: auto; } }

@media (min-width: 1281px) {
  .image-cards .heading-row, .image-cards .body-copy, .image-cards .action-row {
    width: 80%;
    margin: auto; } }

.cards-small-grid .card-liner {
  padding: .5rem; }

.cards-small-grid .card-content {
  padding: 2rem 1rem;
  border: 1px solid #dedede;
  -webkit-transition: background .2s ease-in-out;
  -o-transition: background .2s ease-in-out;
  transition: background .2s ease-in-out; }

.cards-small-grid .heading-row h5 {
  margin-bottom: 1.5rem; }

.cards-small-grid .action-row {
  font-size: 75%;
  padding: 0; }

.cards-small-grid.grid-4 .card {
  width: 100%; }

.cards-small-grid.bg-gray .card-content:hover {
  background: #fefefe;
  cursor: pointer; }

@media (min-width: 541px) {
  .cards-small-grid.grid-4 .card {
    width: 50%;
    float: left; } }

@media (min-width: 769px) {
  .cards-small-grid .card-content {
    padding: 4rem 2rem; } }

@media (min-width: 961px) {
  .cards-small-grid.grid-4 .card {
    width: 25%; } }

.two-up-cards .heading-row h5 {
  margin-top: 1rem; }

.two-up-cards .card .hr {
  margin-left: auto; }

.two-up-cards .card-liner {
  padding: .5rem; }

.two-up-cards .card-content {
  padding: 2rem;
  background: #f8f8f8; }

@media (min-width: 769px) {
  .two-up-cards .card {
    width: 50%; }
    .two-up-cards .card .hr {
      margin-left: 0rem; }
    .two-up-cards .card-content {
      padding: 5rem 5rem; } }

.image-cards-two-up .card {
  width: 100%;
  margin-bottom: 1rem; }
  .image-cards-two-up .card .hr {
    display: none !important;
    margin-left: .5rem; }

.image-cards-two-up .card-liner {
  padding: .5rem; }

.image-cards-two-up .image-row {
  padding-bottom: 0; }

.image-cards-two-up .heading-row h4 a {
  font-weight: 700;
  color: #3D1152; }

.image-cards-two-up .card-content {
  padding: 0rem;
  padding-right: 1rem;
  text-align: left; }

.image-cards-two-up.has-3-cards .card, .image-cards-two-up.has-4-cards .card {
  width: 100%; }

@media (min-width: 769px) {
  .image-cards-two-up .card {
    width: 50%; }
    .image-cards-two-up .card .hr {
      margin-left: 0; } }

@media (min-width: 961px) {
  .image-cards-two-up h4 {
    font-size: 120%;
    margin-top: 1rem; }
  .image-cards-two-up .card-content {
    padding: 0 2rem; }
  .image-cards-two-up .image-row img {
    margin-bottom: 1rem; }
  .image-cards-two-up.has-3-cards .card {
    width: 33%; } }

@media (min-width: 1281px) {
  .image-cards-two-up.has-4-cards .card {
    width: 25%; } }

.scenarios .card {
  width: 100%;
  padding: 2rem 0;
  padding-bottom: 1.5rem;
  text-align: left;
  border-bottom: 1px solid #dedede; }
  .scenarios .card:first-child .liner {
    padding-left: 0; }
  .scenarios .card:last-child .liner {
    padding-right: 0; }

.scenarios .cards-row .card .hr {
  margin-left: .5rem; }

.scenarios .card-liner {
  padding: 0 .5rem; }

.scenarios .card .image-row {
  padding-bottom: 66.6667%;
  margin-bottom: 2rem; }

.scenarios .card .challenge-row, .scenarios .card .solution-row {
  padding: 0 .5rem; }

.scenarios .card .challenge-row {
  padding-bottom: 0rem; }

.scenarios .card .solution-row {
  padding-top: 0rem; }

.scenarios .heading-row h5 {
  margin: 1rem 0;
  font-size: 140%; }

.scenarios .body-copy a {
  color: #3D1152; }

.scenarios .body-copy a:hover {
  color: #3E1054; }

.scenarios .fake-button {
  border: none;
  display: block;
  font-size: 100%;
  font-weight: 700;
  padding: 0;
  margin: 0 auto; }

.scenarios .middle-row {
  margin-bottom: 3rem; }
  .scenarios .middle-row a {
    color: #f70656; }
    .scenarios .middle-row a:hover {
      color: #cc0648; }
  .scenarios .middle-row .challenge-row {
    padding-bottom: 2rem; }
    .scenarios .middle-row .challenge-row .fake-button {
      color: #626469; }
  .scenarios .middle-row--item {
    margin-bottom: 1.5rem; }
    .scenarios .middle-row--item:after {
      display: table;
      clear: both;
      content: ''; }
  .scenarios .middle-row .content {
    padding: 0 .5rem; }
  .scenarios .middle-row .image-half,
  .scenarios .middle-row .text-half {
    float: left; }
  .scenarios .middle-row .image-half {
    width: 25%;
    padding-bottom: 25%; }
    .scenarios .middle-row .image-half img {
      max-width: 100%;
      display: block;
      margin: auto; }
  .scenarios .middle-row .text-half {
    width: 75%; }
    .scenarios .middle-row .text-half--content {
      padding-left: 1rem; }
    .scenarios .middle-row .text-half h6 {
      margin: 0;
      font-size: 95%;
      font-weight: 700; }
    .scenarios .middle-row .text-half a {
      display: block;
      margin-top: .5rem; }

@media (min-width: 769px) {
  .scenarios .card .hr {
    margin: auto;
    margin-bottom: 1rem; } }

@media (min-width: 961px) {
  .scenarios .cards-row .card .hr {
    margin-left: 0rem; }
  .scenarios .card {
    width: 33.3333%;
    padding: 0 0 2rem 0;
    border-bottom: 0; }
  .scenarios.has-2-cards .card, .scenarios.has-4-cards .card {
    width: 50%; } }

@media (min-width: 1281px) {
  .scenarios .card .challenge-row, .scenarios .card .solution-row {
    padding: 0 1.5rem; }
  .scenarios .card .challenge-row {
    padding-bottom: 2rem; }
  .scenarios .card .solution-row {
    padding-top: 0rem; }
  .scenarios.has-4-cards .card {
    width: 25%; }
  .scenarios .middle-row {
    margin-top: -2rem; }
    .scenarios .middle-row .content {
      padding: 0 1.5rem; }
    .scenarios .middle-row .text-half h6 {
      font-size: 100%; } }

.filter-block .inner {
  padding: 3rem 0; }

.filter-block select {
  display: inline-block;
  margin-left: 4rem; }

.hs-blog-id-5523759678 .posts-list.first-list {
  padding: 4rem 0; }

.posts-list {
  padding: 3rem 0; }
  .posts-list .image-row.has-bg-img {
    z-index: 1; }
  .posts-list.first-list {
    padding-top: 0; }
  .posts-list .card {
    width: 100%;
    text-align: left; }
    .posts-list .card h5 {
      font-size: 125% !important; }
    .posts-list .card.card-video {
      width: 100%; }
      .posts-list .card.card-video .card-liner {
        padding: 0;
        margin: .5rem; }
      .posts-list .card.card-video .card-content {
        padding: 4rem 2rem; }
    .posts-list .card.card-webinar {
      width: 100%; }
    .posts-list .card .hr {
      margin-left: .5rem; }
    .posts-list .card-liner {
      padding: 0;
      padding-bottom: 1rem; }
    .posts-list .card-content {
      padding: 2rem;
      border: 1px solid #dedede;
      -webkit-transition: height 0.2s ease-in-out;
      -o-transition: height 0.2s ease-in-out;
      transition: height 0.2s ease-in-out; }
    .posts-list .card .pre-heading-row {
      font-family: "Barlow"; }
    .posts-list .card .heading-row a {
      font-size: inherit; }
  .posts-list .video-cards .card-content {
    padding: 2rem;
    border-bottom: 1px solid #dedede; }
  .posts-list .event-cards .card-content, .posts-list .news-cards .card-content {
    border-bottom: 1px solid #dedede; }

@media (min-width: 769px) {
  .posts-list .card .hr {
    margin-left: 0 !important; }
  .posts-list .card.card-video {
    width: 100%; }
  .posts-list .card-liner {
    padding: .5rem; }
  .posts-list .author-liner h6 {
    text-transform: uppercase;
    font-size: 60%; }
  .posts-list .author-liner h5 {
    margin-top: .33rem;
    font-size: 75%;
    font-weight: bold; } }

@media (min-width: 961px) {
  .posts-list .card {
    width: 33.3333%;
    margin-bottom: 0; }
    .posts-list .card.card-video {
      width: 66.6667%; }
      .posts-list .card.card-video .hr, .posts-list .card.card-video .hr:after {
        background: #fefefe; }
      .posts-list .card.card-video .card-content {
        border: none; }
    .posts-list .card.card-webinar {
      width: 50%; }
    .posts-list .card-content {
      padding: 3rem; }
  .posts-list.video-cards .card-content {
    padding: 2rem; }
  .is-webinar-listing .card {
    width: 50%; } }

.hs-blog-post .hero-default--opacity-layer {
	position: relative;
}
.hs-blog-post .hero-default--opacity-layer .bg-img::after {
	content: '';
	display: block;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	background: rgba(0,0,0,.5);
	z-index: 1;
}

.hs-blog-post .form-fullwidth .inner {
  position: relative;
  z-index: 2; }

.blog-author--bio-row {
  width: 90%;
  margin: auto;
  margin-top: 2rem; }

.blog-main {
  background: #fefefe; }
  .blog-main_content, .blog-main .sidebar-container_match-sibling {
    width: 100%; }
  .blog-main_content {
    padding-top: 2rem;
    background: transparent; }
    .blog-main_content .liner {
      max-width: 90%;
      margin: auto; }
    .blog-main_content .heading-container .fake-button {
      display: block;
      margin-left: auto;
      text-align: center; }
    .blog-main_content .body-copy {
      padding-bottom: 2rem; }
    .blog-main_content div[class*="addthis"] {
      margin-bottom: 4rem; }
    .blog-main_content hr {
      display: block;
      width: 110%;
      margin-left: -5%;
      height: 1px;
      border: 0;
      border-top: 1px solid #ededed; }
    .blog-main_content .blog-author {
      padding-top: 3.5rem; }
  .blog-main .sidebar-container_match-sibling {
    padding-bottom: 2rem;
    padding-top: 0; }
  .blog-main_sidebar {
    text-align: center; }
    .blog-main_sidebar .liner {
      padding: 3rem 1rem; }
    .blog-main_sidebar .hbspt-form input:not(.button) {
      min-width: 100%; }
    .blog-main_sidebar .hbspt-form .actions {
      text-align: center; }
  .blog-main .secondary-content_hero {
    border-bottom: 0.5rem solid #3D1152; }
    .blog-main .secondary-content_hero img {
      display: block; }

.content--post-body {
  padding: 6rem 0; }
  .content--post-body img {
    display: block;
    max-width: 110%;
    margin-left: -5%; }
  .content--post-body .author-avatar img {
    max-width: 5.33rem;
    margin-left: 0; }
  .content--post-body .sticky-form-container {
    width: 90%;
    margin: auto; }
  .content--post-body .mobile-form-container {
    display: block; }
  .content--post-body .webinar-quote {
    margin: 2rem 0; }

@media (min-width: 541px) {
  .blog-main_sidebar {
    text-align: center; }
    .blog-main_sidebar .liner {
      padding: 3rem 1rem; }
    .blog-main_sidebar .hbspt-form input:not(.button) {
      min-width: 75%;
      display: block;
      margin: auto; }
    .blog-main_sidebar .hbspt-form .actions {
      text-align: center; } }

@media (min-width: 769px) {
  .blog-main_content {
    padding-top: 4rem; }
    .blog-main_content .heading-container .fake-button {
      display: inline-block;
      margin-left: 0; }
  .content--post-body .sticky-form-container {
    width: 80%; } }

@media (min-width: 961px) {
  .blog-main_sidebar, .blog-main_content {
    float: left; }
  .blog-main_content {
    width: 65%;
    padding-top: 0; }
    .blog-main_content .liner {
      max-width: 95%;
      margin-right: 5%; }
  .blog-main_sidebar {
    overflow-y: scroll; }
  .blog-main .sidebar-container_match-sibling {
    padding-top: 0;
    width: 35%;
    margin-right: 0;
    text-align: center;
    float: right; }
    .blog-main .sidebar-container_match-sibling .liner {
      margin: auto;
      padding: 6rem 2rem; }
    .blog-main .sidebar-container_match-sibling .heading-container h4 {
      font-size: 150%; }
    .blog-main .sidebar-container_match-sibling input {
      min-width: 100% !important; }
    .blog-main .sidebar-container_match-sibling input[type="submit"] {
      text-align: center; }
  .main-content-and-sidebar-wrapper {
    width: 90%;
    margin-left: 10%;
    padding-top: 6rem; } }

@media (min-width: 1025px) {
  .content--post-body {
    padding: 4rem 0; }
    .content--post-body.has-sticky-form .inner,
    .content--post-body.has-sticky-form .sticky-form-container {
      float: left; }
    .content--post-body.has-sticky-form .sticky-form-container {
      width: 20%;
      margin-left: 5%; }
    .content--post-body.has-sticky-form .form-outer-liner {
      position: -webkit-sticky;
      position: sticky;
      top: 8rem;
      border: 1px solid #dedede;
      padding: 1rem; }
    .content--post-body .inner {
      width: 55%;
      margin-left: 10%;
      margin-right: 0; }
    .content--post-body .mobile-form-container {
      height: 0;
      visibility: hidden; }
      .content--post-body .mobile-form-container h3 {
        margin: 0; } }

@media (min-width: 1281px) {
  .blog-main .sidebar-container_match-sibling {
    width: 30%; } }

@media (min-width: 1441px) {
  .main-content-and-sidebar-wrapper {
    padding-top: 8rem; } }

.video-meta-details h5 {
  display: inline-block; }
  .video-meta-details h5:nth-child(2) {
    padding-left: 4rem; }

#se-related-videos .image-row .bg-img {
  z-index: 0;
  max-width: calc(100% - .5rem);
  margin-left: .25rem; }
  #se-related-videos .image-row .bg-img .button {
    margin-top: 4rem; }

.hs-blog-id-6049291244 .av-sticky-rail-container,
.hs-blog-id-6073775618 .av-sticky-rail-container {
  display: none; }

.hs-blog-id-6049291244 .av-event-info,
.hs-blog-id-6073775618 .av-event-info {
  font-size: 125%;
  font-weight: 700;
  color: #fefefe;
  margin-bottom: 1rem; }

.av-webinar-video-container {
  margin: 1rem 0; }

.is-event .sidebar-container_match-sibling .bg-img {
  display: none; }

.is-event .sidebar-container_match-sibling .liner {
  padding: 2.5rem 2rem;
  background: #fefefe; }

.is-event .sidebar-container_match-sibling .heading-container {
  padding-bottom: .5rem; }
  .is-event .sidebar-container_match-sibling .heading-container .form-pre-heading:before, .is-event .sidebar-container_match-sibling .heading-container .form-pre-heading:after {
    background: #ccc; }

.is-event .sidebar-container_match-sibling .actions {
  padding-top: 1.5rem; }

.is-event form input:not(.primary) {
  border: 1px solid #ccc; }

.is-event-content .content-halves {
  margin-bottom: 2rem; }

.is-event-content .event-location {
  margin-bottom: 2rem; }

.is-event .event-details .static-half, .is-event .event-details .dynamic-half {
  float: left; }
  .is-event .event-details .static-half p, .is-event .event-details .dynamic-half p {
    margin-bottom: 2rem; }

.is-event .event-details .static-half {
  width: 20%; }
  .is-event .event-details .static-half p {
    font-weight: bolder; }

.is-event .event-location {
  margin: 3rem 0;
  margin-top: 2rem; }

.av-sticky-rail-container {
  position: absolute;
  z-index: 5;
  top: 80px;
  right: 5%;
  width: 25%;
  height: 2000px; }
  .av-sticky-rail-container--content {
    position: -webkit-sticky;
    position: sticky;
    top: 80px; }
  .av-sticky-rail-container .av-form-wrapper {
    border-top: 10px solid #3D1152;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    .av-sticky-rail-container .av-form-wrapper--content {
      background: #f8f8f8;
      border: 1px solid #dedede;
      padding: 3rem 2rem; }

.av-mobile-event-form {
  background: #f8f8f8;
  border: 1px solid #dedede;
  padding: 3rem 2rem; }

.av-event-button-wrapper h3 {
  margin-top: 0;
  color: #3D1152; }

@media (min-width: 961px) {
  .is-event .sidebar-container_match-sibling .liner {
    border: 1px solid #ccc;
    border-right: none; } }

@media (min-width: 1025px) {
  .hs-blog-id-6049291244 .av-sticky-rail-container,
  .hs-blog-id-6073775618 .av-sticky-rail-container {
    display: block; }
  .hs-blog-id-6049291244 .av-mobile-event-form,
  .hs-blog-id-6073775618 .av-mobile-event-form {
    display: none; }
  .hs-blog-id-6049291244 .av-full-width-content .inner,
  .hs-blog-id-6073775618 .av-full-width-content .inner {
    width: 60%;
    margin-left: 20%; } }

@media (min-width: 1441px) {
  .hs-blog-id-6049291244 .av-full-width-content .inner,
  .hs-blog-id-6073775618 .av-full-width-content .inner {
    width: 50%;
    margin-left: 25%; } }

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: auto;
  z-index: -100;
  pointer-events: none; }
  .modal-container .inner {
    position: relative; }
  .modal-container.is-playing {
    padding-top: 6rem;
    z-index: 100;
    background: rgba(0, 0, 0, 0.75);
    pointer-events: all; }

.video-player-modal {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%); }
  .video-player-modal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.modal-close-trigger {
  position: absolute;
  top: -2.5rem;
  right: -2rem;
  color: #3D1152;
  font-size: 2rem;
  -webkit-transition: color 0.2s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 0.2s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: transform 0.2s cubic-bezier(0.77, 0, 0.175, 1), color 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.2s cubic-bezier(0.77, 0, 0.175, 1), color 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.2s cubic-bezier(0.77, 0, 0.175, 1), color 0.2s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.2s cubic-bezier(0.77, 0, 0.175, 1); }
  .modal-close-trigger.hidden {
    display: none; }
  .modal-close-trigger:hover {
    cursor: pointer;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    color: #3E1054; }

.hs-blog-listing .form-fullwidth .inner,
.hs-blog-listing .cta-banner .inner {
  position: relative;
  z-index: 2; }

.is-success-story .blog-main_content {
  float: none;
  width: 100%; }

.is-success-story .text-block-default {
  padding-bottom: 0;
  text-align: left; }
  .is-success-story .text-block-default .heading-container h1 {
    margin-bottom: 1rem; }
  .is-success-story .text-block-default .action-row {
    text-align: center;
    padding-top: 0;
    margin-top: -2rem; }

.is-success-story .cards-row {
  padding-top: 3rem; }

.is-success-story .card {
  width: 100%; }
  .is-success-story .card .heading-row h3 {
    color: #3D1152;
    margin-top: 0;
    text-align: center; }
  .is-success-story .card .action-row {
    padding-top: 0;
    text-align: center; }
  .is-success-story .card-liner {
    padding: .5rem; }
  .is-success-story .card-content {
    font-size: 90%;
    text-align: left;
    padding: 3rem 1rem;
    background: #f8f8f8; }

.is-success-story .post-body {
  padding: 3rem 0; }

@media (min-width: 769px) {
  .is-success-story .card .body-copy {
    font-size: 100%; } }

@media (min-width: 961px) {
  .is-success-story .card {
    width: 33.3333%; }
  .is-success-story .card .card-content {
    font-size: 100%;
    padding: 3rem 2rem; }
  .is-success-story .card .action-row {
    text-align: left; } }

.resources-landing .hero-default .one-half {
  width: 100%; }

.resources-landing-posts {
  padding-top: 0; }
  .resources-landing-posts .inner-default {
    width: 95%; }
  .resources-landing-posts .cards-row:last-of-type {
    padding-bottom: 4rem; }
  .resources-landing-posts .card-content {
    padding: 3rem; }
  .resources-landing-posts .card .hr {
    margin-left: .5rem; }
  .resources-landing-posts .card .body-copy {
    padding-bottom: 1rem; }
    .resources-landing-posts .card .body-copy p {
      font-size: 90%;
      letter-spacing: 0; }
  .resources-landing-posts .card .pre-heading-row span {
    font-family: "Barlow";
    font-size: 100%; }
  .resources-landing-posts .card .heading-row h5 {
    margin-top: 0;
    margin-bottom: 1rem; }
    .resources-landing-posts .card .heading-row h5 a {
      font-weight: 400;
      color: #3D1152; }
  .resources-landing-posts .card .action-row {
    padding: 1rem 0; }
  .resources-landing-posts .card .meta-row {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: .5rem 1rem;
    width: 100%;
    border: none;
    border-top: 1px solid #dedede; }
  .resources-landing-posts .card-content {
    position: relative;
    border-bottom: 1px solid #dedede;
    overflow: hidden;
    -webkit-transition: background 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-box-shadow 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: background 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-box-shadow 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: background 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), box-shadow 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: background 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), box-shadow 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: background 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), box-shadow 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-box-shadow 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86); }
    .resources-landing-posts .card-content:hover {
      background: #fefefe;
      border: 1px solid #f8f8f8;
      -webkit-box-shadow: 0 0 .5rem #dedede;
              box-shadow: 0 0 .5rem #dedede; }
  .resources-landing-posts .card.card-video {
    color: #fefefe; }
    .resources-landing-posts .card.card-video .hr, .resources-landing-posts .card.card-video .hr:after {
      background: #fefefe; }
    .resources-landing-posts .card.card-video .card-liner {
      margin: 0 0 1rem 0; }
      .resources-landing-posts .card.card-video .card-liner:before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .5; }
    .resources-landing-posts .card.card-video .card-content {
      width: 80%;
      padding: 3rem;
      border: none; }
    .resources-landing-posts .card.card-video .card-content:hover {
      background: none;
      border: none;
      -webkit-box-shadow: none;
              box-shadow: none; }
    .resources-landing-posts .card.card-video .pre-heading-row span {
      color: #fefefe; }
    .resources-landing-posts .card.card-video .action-row i {
      color: #3D1152; }
    .resources-landing-posts .card.card-video .play-button {
      display: none; }
    .resources-landing-posts .card.card-video .play-button:hover + .bg-img {
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
  .resources-landing-posts .card-webinar .card-content {
    padding: 2rem; }
  .resources-landing-posts .card-webinar .action-row {
    padding-bottom: 0; }

@media (min-width: 769px) {
  .resources-landing-posts .inner-default {
    width: 90%; }
  .resources-landing-posts .card.card-video .card-liner {
    margin: .5rem; } }

@media (min-width: 961px) {
  .resources-landing .hero-default .one-half {
    width: 45%; }
  .resources-landing-posts {
    padding-top: 6rem; }
    .resources-landing-posts .inner-default {
      width: 100%; }
    .resources-landing-posts .card .hr {
      margin-left: 0; }
    .resources-landing-posts .card.card-video .card-content {
      width: 50%; }
    .resources-landing-posts .card.card-video .action-row {
      display: none; }
    .resources-landing-posts .card.card-video .play-button {
      display: block;
      top: 50%;
      left: 70%; }
    .resources-landing-posts .card.card-webinar .card-content {
      padding: 4rem 3rem; } }

@media (min-width: 1281px) {
  .resources-landing-posts .inner-default {
    width: 80%; }
  .resources-landing-posts .card.card-video .card-content {
    width: 60%; } }

.cards-ltr {
  padding: 4rem 0; }
  .cards-ltr.no-padding-bottom {
    padding-bottom: 0; }
  .cards-ltr.no-padding-top {
    padding-top: 1rem; }
  .cards-ltr .special-inner {
    position: relative; }
  .cards-ltr .inner-default {
    max-width: 90%; }
  .cards-ltr .image-half,
  .cards-ltr .card-half {
    width: 100%;
    float: none; }
  .cards-ltr .image-half {
    position: relative;
    margin-bottom: 1rem; }
  .cards-ltr figure {
    margin: 0;
    padding: 0; }
  .cards-ltr .image-half img {
    display: block;
    margin: auto;
    max-width: 100%; }
  .cards-ltr .card {
    width: 100%; }
    .cards-ltr .card-liner {
      padding: 0; }
    .cards-ltr .card-content {
      text-align: center; }
    .cards-ltr .card h4 {
      margin: 0; }
    .cards-ltr .card .action-row {
      padding: 0; }
    .cards-ltr .card .hr {
      margin: 1rem auto; }
    .cards-ltr .card .hr:after {
      background: #3D1152; }

@media (min-width: 769px) {
  .cards-ltr .card .hr {
    margin-left: 0; }
  .cards-ltr .card-content {
    text-align: left; } }

@media (min-width: 961px) {
  .cards-ltr.text-first .image-half,
  .cards-ltr.text-first .card-half {
    width: 50%;
    float: right; }
  .cards-ltr.text-first .card-half .inner {
    margin-left: auto;
    margin-right: 0; }
  .cards-ltr .inner-medium {
    max-width: 90%;
    padding-bottom: 4rem; }
  .cards-ltr .image-half,
  .cards-ltr .card-half {
    width: 50%;
    float: left; }
  .cards-ltr .image-half {
    margin-bottom: 0; }
  .cards-ltr .card-half .inner {
    margin-left: 0; }
  .cards-ltr .card h4 {
    font-size: 2rem; }
  .cards-ltr .card .hr {
    margin-left: 0; }
  .cards-ltr .card-liner {
    padding: 0; }
  .cards-ltr .card-content {
    padding: 0 4rem; } }

@media (min-width: 1281px) {
  .cards-ltr .inner-medium {
    max-width: 80%; } }

@media (min-width: 1441px) {
  .cards-ltr .inner-medium {
    max-width: 70%; }
  .cards-ltr .card h4 {
    font-size: 2.4rem; } }

@media (min-width: 1601px) {
  .cards-ltr .inner-medium {
    max-width: 70%; } }

.webinar-quote .liner {
  padding: 0 1rem; }

.webinar-quote .quote-row h1 {
  font-size: 150%; }

.webinar-quote .author-bar, .webinar-quote .author-avatar {
  background: none; }

.webinar-quote .author-name {
  color: #fefefe;
  font-weight: 700; }

.webinar-quote .author-title, .webinar-quote .author-employer {
  font-size: 90%; }

.webinar-speaker {
  padding-top: 2rem;
  padding-bottom: 0; }
  .webinar-speaker img {
    display: block;
    max-width: 100%; }
  .webinar-speaker .heading-container h4,
  .webinar-speaker .heading-container .hr {
    margin-bottom: 1.5rem; }
  .webinar-speaker .about-row h4 {
    color: #3D1152;
    margin-bottom: 0rem; }

@media (min-width: 769px) {
  .webinar-quote .liner {
    padding: 0 4rem; }
  .webinar-quote .quote-row h1 {
    font-size: 200%; }
  .webinar-quote .author-title, .webinar-quote .author-employer {
    font-size: 100%; } }

.mobile-resources-sub-nav {
  display: block;
  padding-top: 7rem; }
  .mobile-resources-sub-nav .fake-select {
    margin-bottom: 0; }

.sub-nav {
  display: none;
  text-align: center;
  padding-top: 1rem; }
  .sub-nav .inner {
    position: relative; }
  .sub-nav .sub-nav-items-container,
  .sub-nav .sub-nav-action-container {
    width: 100%;
    padding-top: .5rem; }
  .sub-nav .sub-nav-action-container {
    padding-bottom: 1.5rem; }
  .sub-nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: left; }
  .sub-nav li {
    margin-bottom: .5rem;
    font-size: 80%;
    display: inline-block;
    padding-right: .5rem; }
  .sub-nav .button.primary {
    font-size: 90%;
    padding: .75rem; }

@media (min-width: 961px) {
  .mobile-resources-sub-nav {
    display: none; }
  .sub-nav {
    display: block;
    text-align: left;
    background: #f8f8f8;
    padding-top: 0; }
    .sub-nav .sub-nav-items-container,
    .sub-nav .sub-nav-action-container {
      display: inline-block;
      float: none;
      width: auto; }
    .sub-nav .sub-nav-items-container {
      padding: 0; }
    .sub-nav .sub-nav-action-container {
      position: absolute;
      top: 50%;
      right: 0;
      padding-bottom: 0;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); }
    .sub-nav li {
      display: inline-block;
      position: relative;
      margin-bottom: 0;
      font-size: 90%;
      padding: 1rem .5rem;
      background: none;
      border-radius: 0; }
    .sub-nav li:hover {
      background: none;
      cursor: default; }
    .sub-nav li.active:after {
      position: absolute;
      bottom: -.33rem;
      left: 0;
      width: 90%;
      height: .33rem;
      display: block;
      content: '';
      background: #3D1152; }
    .sub-nav li:first-of-type {
      padding-left: 0; }
    .sub-nav li:last-of-type {
      padding-right: 0; }
    .sub-nav a:not(.primary) {
      color: #626469;
      font-weight: 700; }
    .sub-nav a:hover {
      color: #3D1152; }
    .sub-nav .button.primary {
      font-size: 100%;
      margin-top: -.5rem;
      padding: 1rem; } }

@media (min-width: 1025px) {
  .sub-nav li {
    font-size: 100%;
    padding: 1.5rem .5rem; } }

@media (min-width: 1281px) {
  .sub-nav li {
    padding: 2rem 1rem; } }

@media (min-width: 1441px) {
  .sub-nav li {
    padding: 2rem 1.5rem; } }

.is-webinar .mobile-form-container {
  display: block;
  margin-bottom: 4rem; }

.is-webinar-hero .heading-container .hr {
  margin-left: auto; }

.is-webinar-hero .video-or-form-half {
  position: relative;
  z-index: 5; }

.is-webinar-hero .one-half {
  width: 100%; }

.is-webinar-hero .inner.has-sticky-form .scrollmagic-pin-spacer,
.is-webinar-hero .inner.has-sticky-form .is-form-half {
  display: none; }

.is-webinar-hero--v2 .inner:after {
  display: table;
  content: '';
  clear: both; }

.is-webinar-hero--v2.has-false-form:after {
  display: none; }

.is-webinar-hero--v2.has-false-form .text-half {
  width: 100%; }

.false-form-container {
  visibility: hidden;
  height: 0;
  position: absolute;
  padding: 0;
  background: #f8f8f8; }
  .false-form-container .inner {
    position: relative;
    margin-right: 15%; }
  .false-form-container h3 {
    margin: 0; }

.social-share-wrapper {
  padding-top: 4rem 0;
  margin-top: 2rem; }

.webinar-speakers {
  padding-top: 6rem;
  padding-bottom: 0;
  position: relative; }
  .webinar-speakers .line-thin {
    display: block;
    content: '';
    position: absolute;
    top: 3rem;
    left: 10%;
    width: 55%;
    height: 1px;
    background: #dedede; }

.speaker-card {
  margin-bottom: 2rem; }
  .speaker-card--heading-row {
    margin-bottom: 1rem; }
    .speaker-card--heading-row .author-headshot {
      padding-bottom: 6rem;
      z-index: 2;
      width: 7rem;
      border: 0.5rem solid #f70656;
      border-radius: 50%;
      overflow: hidden; }
    .speaker-card--heading-row .heading-row--content {
      background: #f8f8f8;
      margin-left: 3rem;
      margin-top: -6.75rem;
      padding: 1.5rem 6rem;
      padding-left: 5rem; }
      .speaker-card--heading-row .heading-row--content h6 {
        margin: 0;
        font-size: 90%;
        font-weight: 700; }
  .speaker-card--body-row {
    padding-left: 2rem; }
    .speaker-card--body-row strong:first-of-type {
      display: inline-block;
      margin-bottom: 1rem; }

@media (min-width: 769px) {
  .is-webinar-hero .heading-container .hr {
    margin-left: 0; }
  .speaker-card {
    width: 50%;
    float: left; }
    .speaker-card--liner {
      padding: 0 1rem; }
    .speaker-card--heading-row .heading-row--content {
      padding-bottom: 1rem;
      padding-top: 1rem; }
      .speaker-card--heading-row .heading-row--content h6 {
        margin-bottom: 1rem; }
    .speaker-card--body-row {
      font-size: 90%; } }

@media (min-width: 961px) {
  .is-webinar .mobile-form-container {
    display: none; }
  .is-webinar-hero .inner.has-sticky-form {
    position: relative; }
    .is-webinar-hero .inner.has-sticky-form .scrollmagic-pin-spacer,
    .is-webinar-hero .inner.has-sticky-form .is-form-half {
      display: block; }
    .is-webinar-hero .inner.has-sticky-form .is-form-half .hr {
      margin: auto; }
    .is-webinar-hero .inner.has-sticky-form .one-half,
    .is-webinar-hero .inner.has-sticky-form .scrollmagic-pin-spacer {
      float: left; }
    .is-webinar-hero .inner.has-sticky-form .one-half {
      width: 50%; }
    .is-webinar-hero .inner.has-sticky-form .scrollmagic-pin-spacer {
      position: absolute !important;
      top: 2rem !important;
      right: 0 !important;
      width: 30% !important;
      margin-left: 20% !important; }
      .is-webinar-hero .inner.has-sticky-form .scrollmagic-pin-spacer .content {
        padding-bottom: 4rem;
        background: #f8f8f8; }
  .is-webinar-hero .one-half {
    margin: 0;
    padding: 0;
    float: left;
    width: 50%; }
  .is-webinar-hero .one-half .content {
    padding: 2rem; }
  .speaker-card--heading-row {
    margin-bottom: 2rem; }
    .speaker-card--heading-row .heading-row--content {
      padding-bottom: 2rem; } }

.after-post-section {
  padding-top: 0; }

@media (min-width: 1025px) {
  .is-webinar-hero--v2 .text-half .content {
    padding-left: 0; }
  .is-webinar-hero--v2.has-false-form:after {
    display: none; }
  .is-webinar-hero--v2.has-false-form .text-half {
    width: 60%; }
  .false-form-container {
    visibility: visible;
    width: 100%;
    margin: 0 5%;
    float: right; }
    .false-form-container h3 {
      margin: 1rem 0; }
    .false-form-container .form-wrapper {
      position: absolute;
      top: 0;
      right: 0;
      z-index: 7;
      width: 25%;
      padding: 2rem;
      background: #fefefe;
      border: 1px solid #dedede; } }

.form-dd-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  -webkit-transition: opacity 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: opacity 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  overflow-y: scroll; }
  .form-dd-modal .site-container {
    position: relative; }
  .form-dd-modal .inner {
    position: relative; }
  .form-dd-modal .hr {
    display: none; }
  .form-dd-modal .form-step {
    margin-bottom: 1rem; }
    .form-dd-modal .form-step span {
      font-weight: 700;
      font-size: 1.3rem; }
    .form-dd-modal .form-step span, .form-dd-modal .form-step p {
      color: #fefefe; }
  .form-dd-modal .modal-close-icon {
    position: absolute;
    top: -2rem;
    right: 0;
    z-index: 99;
    font-size: 2rem;
    color: #fefefe; }
    .form-dd-modal .modal-close-icon i {
      -webkit-transition: color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      -o-transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86); }
    .form-dd-modal .modal-close-icon:hover {
      cursor: pointer; }
      .form-dd-modal .modal-close-icon:hover i {
        color: #3D1152;
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }

.form-dd-modal.is-visible {
  -webkit-transform: translateY(11%);
      -ms-transform: translateY(11%);
          transform: translateY(11%);
  opacity: 1; }
  .form-dd-modal.is-visible .site-container {
    border-bottom: 0.25rem solid #3D1152; }

@media (min-width: 961px) {
  .form-dd-modal {
    z-index: 8; }
    .form-dd-modal .hr {
      display: block; }
    .form-dd-modal .text-half {
      float: left;
      width: 60%; }
      .form-dd-modal .text-half .liner {
        padding-top: 8rem; }
      .form-dd-modal .text-half h2 {
        margin-top: 0;
        margin-bottom: .66rem; }
    .form-dd-modal .form-half {
      float: right; }
  .form-dd-modal.is-visible {
    opacity: 1; } }

@media (min-width: 1281px) {
  .form-dd-modal .liner {
    padding: 0 2rem; }
  .form-dd-modal .text-half {
    float: left;
    width: 60%; }
    .form-dd-modal .text-half h2 {
      font-size: 2rem;
      margin-bottom: 2rem; }
  .form-dd-modal .form-half {
    width: 40%;
    float: left; } }

.portfolio-accordion-container {
  overflow: hidden; }
  .portfolio-accordion-container .inner-default {
    max-width: 75rem; }
  .portfolio-accordion-container .hr {
    margin: auto;
    margin-top: -1rem;
    margin-bottom: 1rem; }
  .portfolio-accordion-container i {
    -webkit-transition: color 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: color 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), color 0.2s ease-in-out;
    transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), color 0.2s ease-in-out;
    transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), color 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86); }
  .portfolio-accordion-container * {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-tap-highlight-color: transparent; }
  .portfolio-accordion-container .inner-default {
    position: relative; }
  .portfolio-accordion-container .gray-false-bg {
    display: none; }
  .portfolio-accordion-container .text-half {
    text-align: center;
    padding-bottom: 0; }
  .portfolio-accordion-container .text-half .lead {
    margin-top: 0 !important; }

.portfolio-accordion-item {
  position: relative;
  padding-top: 2rem;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .portfolio-accordion-item:hover {
    cursor: pointer;
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05); }
    .portfolio-accordion-item:hover .heading-row h4, .portfolio-accordion-item:hover p {
      color: #3D1152; }
    .portfolio-accordion-item:hover i {
      color: #3E1054; }
  .portfolio-accordion-item .heading-row,
  .portfolio-accordion-item .item-content {
    width: 100%; }
  .portfolio-accordion-item .heading-row {
    position: relative; }
    .portfolio-accordion-item .heading-row i {
      -webkit-transition: color 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: color 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      -o-transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), color 0.2s ease-in-out;
      transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), color 0.2s ease-in-out;
      transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), color 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      display: block; }
    .portfolio-accordion-item .heading-row h4 {
      margin-bottom: 1rem; }
    .portfolio-accordion-item .heading-row p {
      font-size: 70%;
      margin-top: -1rem; }
  .portfolio-accordion-item .heading-row h4 {
    margin-top: 0;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
    font-size: 150%;
    font-weight: 700; }
  .portfolio-accordion-item .item-content {
    position: relative;
    background: #fefefe;
    overflow: hidden; }
    .portfolio-accordion-item .item-content:after {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 1px;
      width: 100%;
      background: #dedede;
      content: ''; }
  .portfolio-accordion-item i {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    color: #3D1152;
    font-size: 1.5rem; }
  .portfolio-accordion-item .action-row {
    margin-bottom: 3rem; }
  .portfolio-accordion-item.is-opened i {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg); }

@media (min-width: 541px) {
  .portfolio-accordion-container .gray-false-bg {
    display: block;
    position: absolute;
    top: -2rem;
    left: -62.5%;
    width: 100%;
    height: 300%;
    background: #f8f8f8;
    z-index: -1; }
  .portfolio-accordion-container .text-half {
    padding-bottom: 4rem; }
  .portfolio-accordion-item {
    position: relative; }
    .portfolio-accordion-item .heading-row,
    .portfolio-accordion-item .item-content {
      float: left; }
    .portfolio-accordion-item .heading-row {
      width: 33%;
      overflow: hidden; }
      .portfolio-accordion-item .heading-row i {
        display: none; }
      .portfolio-accordion-item .heading-row:after {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 1px;
        width: 100%;
        background: #dedede;
        content: ''; }
    .portfolio-accordion-item.last-item .heading-row:after,
    .portfolio-accordion-item.last-item .item-content:after {
      display: none; }
    .portfolio-accordion-item .item-content {
      width: 57%;
      margin-left: 10%; }
    .portfolio-accordion-item i {
      -webkit-transition: color 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: color 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      -o-transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), color 0.2s ease-in-out;
      transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), color 0.2s ease-in-out;
      transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), color 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      display: block;
      margin-top: 2.5%; } }

.value-visual {
  padding: 4rem 0;
  font-family: "Barlow", sans-serif; }
  .value-visual .first-char-margin-fix .odometer-digit:first-of-type {
    margin-right: -.5rem; }
  .value-visual .od-obj {
    opacity: 0;
    position: relative;
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
    -webkit-transition: height 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), padding 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 0.75s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: height 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), padding 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 0.75s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: height 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), padding 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 0.75s cubic-bezier(0.785, 0.135, 0.15, 0.86); }
    .value-visual .od-obj.did-initialize {
      opacity: 1; }
    .value-visual .od-obj:after {
      display: block;
      content: '';
      position: absolute;
      bottom: -1.5rem;
      left: 50%;
      width: 50%;
      height: 1px;
      background: #dedede;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }
    .value-visual .od-obj:last-of-type {
      margin-bottom: 0; }
      .value-visual .od-obj:last-of-type:after {
        display: none; }
  .value-visual .odometer,
  .value-visual .od-suffix-target {
    color: #3E1054;
    font-size: 3rem;
    display: inline-block;
    vertical-align: middle; }
  .value-visual .od-suffix-target {
    margin-bottom: 3px; }
  .value-visual .od-description-target {
    display: block;
    font-family: "Muli"; }

@media (min-width: 769px) {
  .value-visual {
    padding: 6rem 0; }
    .value-visual .od-obj {
      width: 25%;
      margin-bottom: 0; }
      .value-visual .od-obj:after {
        top: 50%;
        left: 100%;
        height: 175%;
        width: 1px;
        -webkit-transform: translate(0, -50%);
            -ms-transform: translate(0, -50%);
                transform: translate(0, -50%); } }

.features-2-column .card {
  width: 100%;
  text-align: left; }
  .features-2-column .card .hr {
    display: none; }
  .features-2-column .card-liner {
    padding: 0 3rem; }
  .features-2-column .card .heading-row h3 {
    margin-bottom: .75rem; }

.features-2-column .action-row {
  margin-top: 1rem;
  text-align: center; }

@media (min-width: 769px) {
  .features-2-column .cards-row {
    margin-bottom: 1.5rem; }
  .features-2-column .card {
    width: 50%;
    margin-bottom: 1rem; } }

.two-column-fpo-text.with-content-above {
  padding-top: 0; }

.two-column-fpo-text.with-content-below {
  padding-bottom: 0; }

.two-column-fpo-text .text-half,
.two-column-fpo-text .image-half {
  float: left;
  width: 100%; }

.two-column-fpo-text .image-half img {
  display: block;
  max-width: 100%; }

.two-column-fpo-text .card {
  width: 100%;
  margin-bottom: 3rem; }
  .two-column-fpo-text .card h6 {
    margin: 0;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 125%; }
  .two-column-fpo-text .card .hr {
    margin-left: auto;
    margin-right: auto; }
  .two-column-fpo-text .card-liner {
    padding: 0; }

@media (min-width: 769px) {
  .two-column-fpo-text .text-half,
  .two-column-fpo-text .image-half {
    width: 50%; }
  .two-column-fpo-text .text-half {
    padding: 0 2rem;
    padding-left: 0; }
  .two-column-fpo-text .card .hr {
    margin-left: 0;
    margin-right: auto; } }

@media (min-width: 1025px) {
  .two-column-fpo-text .text-half {
    padding: 0 4rem; } }

.intro-overlap {
  padding-bottom: 0; }
  .intro-overlap .no-padding-top {
    padding-top: 0 !important; }
  .intro-overlap .text-content {
    text-align: center; }
  .intro-overlap .hr {
    margin-left: auto;
    margin-right: auto; }
  .intro-overlap .top-half {
    position: relative;
    z-index: 2;
    margin-bottom: -3rem; }
    .intro-overlap .top-half .image-half {
      position: relative; }
      .intro-overlap .top-half .image-half img {
        display: block;
        margin: auto;
        max-width: 100%; }
    .intro-overlap .top-half .text-half {
      padding-bottom: 2.5rem; }
  .intro-overlap .bottom-half {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #170421), to(#3E1054));
    background-image: -o-linear-gradient(bottom, #170421 50%, #3E1054);
    background-image: linear-gradient(0deg, #170421 50%, #3E1054);
    padding-bottom: 2rem; }
    .intro-overlap .bottom-half .heading-container h2,
    .intro-overlap .bottom-half .body-copy p {
      color: #fefefe; }
    .intro-overlap .bottom-half.on-dark h4 {
      color: #fefefe !important; }
    .intro-overlap .bottom-half .text-half {
      padding-top: 4rem; }
    .intro-overlap .bottom-half .card {
      width: 100%; }
      .intro-overlap .bottom-half .card .icon-row {
        height: 60px; }
        .intro-overlap .bottom-half .card .icon-row img {
          max-width: 50px; }
      .intro-overlap .bottom-half .card h4 {
        font-size: 140%;
        color: #fefefe; }
        .intro-overlap .bottom-half .card h4 a {
          color: #fefefe; }
      .intro-overlap .bottom-half .card .body-copy {
        color: #fefefe; }
        .intro-overlap .bottom-half .card .body-copy ul li:before {
          background: #fefefe; }
      .intro-overlap .bottom-half .card i {
        color: #f70656;
        bottom: -1.66rem; }
      .intro-overlap .bottom-half .card-liner {
        padding-bottom: 0; }
      .intro-overlap .bottom-half .card:last-of-type .card-liner {
        padding-bottom: 2rem; }
      .intro-overlap .bottom-half .card:hover h1 a, .intro-overlap .bottom-half .card:hover h2 a, .intro-overlap .bottom-half .card:hover h3 a, .intro-overlap .bottom-half .card:hover h4 a, .intro-overlap .bottom-half .card:hover h5 a, .intro-overlap .bottom-half .card:hover h6 a {
        color: #f70656 !important; }
      .intro-overlap .bottom-half .card:hover i {
        opacity: 1;
        -webkit-transform: translateX(25%);
            -ms-transform: translateX(25%);
                transform: translateX(25%); }

@media (min-width: 769px) {
  .intro-overlap.has-3-cards .bottom-half .card {
    width: 33.333333%; }
    .intro-overlap.has-3-cards .bottom-half .card:nth-child(n+3) {
      margin-top: 0; }
  .intro-overlap .text-content .hr {
    margin-left: auto;
    margin-right: auto; }
  .intro-overlap .hr {
    margin-left: 0; }
  .intro-overlap .top-half {
    margin-bottom: -5rem; }
  .intro-overlap .bottom-half .text-half {
    padding-top: 8rem; }
  .intro-overlap .bottom-half .card {
    width: 50%; }
    .intro-overlap .bottom-half .card:nth-child(n+3) {
      margin-top: 4rem; }
  .intro-overlap .bottom-half .card-liner {
    padding: 0 1rem; } }

@media (min-width: 1281px) {
  .intro-overlap .bottom-half {
    padding-bottom: 4rem; }
    .intro-overlap .bottom-half .cards-row {
      padding-top: 2rem; }
    .intro-overlap .bottom-half .card {
      width: 25%; }
      .intro-overlap .bottom-half .card .icon-row {
        margin-bottom: 2rem; }
      .intro-overlap .bottom-half .card .heading-row h4 {
        margin-top: .75rem; }
      .intro-overlap .bottom-half .card:nth-child(n+3) {
        margin-top: 0; }
  .intro-overlap.has-5-cards .cards-half .cards-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .intro-overlap.has-5-cards .cards-half .card {
    width: 33.3333%; } }

.csu .inner-medium {
  width: 100%; }

.csu a {
  color: #f70656; }
  .csu a:hover {
    color: #cc0648; }

.csu .column-2,
.csu .column-3,
.csu .column-4 {
  position: relative; }
  .csu .column-2:before,
  .csu .column-3:before,
  .csu .column-4:before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #fefefe;
    width: 2px;
    height: 200%; }

.csu .column-1 {
  width: 10%; }

.csu .column-2 {
  width: 20%; }

.csu .column-3 {
  width: 30%; }

.csu .column-4 {
  width: 30%; }

.csu--table-header-row {
  background: #f8f8f8; }
  .csu--table-header-row_liner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }

.header-row-item {
  padding: .5rem;
  color: #3D1152;
  font-size: 70%;
  font-weight: 700; }
  .header-row-item p {
    display: block;
    font-size: 120%;
    font-family: "Barlow"; }

.csu--row:nth-child(odd) {
  background: #f8f8f8; }

.csu--row_liner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.csu--row-item {
  padding: .5rem; }
  .csu--row-item p, .csu--row-item li, .csu--row-item a {
    margin: 0;
    font-size: 60%;
    line-height: 1.6; }
  .csu--row-item ul {
    margin: 1rem 0; }

@media (min-width: 414px) {
  .csu .inner-medium {
    width: 90%; } }

@media (min-width: 541px) {
  .header-row-item {
    font-size: 80%;
    padding: 1rem; }
  .csu--row-item {
    padding: 1rem; }
    .csu--row-item p, .csu--row-item li, .csu--row-item a {
      font-size: 70%; } }

@media (min-width: 769px) {
  .csu--row-item p, .csu--row-item li, .csu--row-item a {
    font-size: 80%; } }

@media (min-width: 1025px) {
  .csu--row-item p, .csu--row-item li, .csu--row-item a {
    font-size: 90%; } }

.contact-support--heading-row {
  background: #3E1054;
  color: #fefefe;
  padding: 1rem;
  font-weight: 700; }
  .contact-support--heading-row:before, .contact-support--heading-row:after {
    clear: both;
    content: "";
    display: table; }
  .contact-support--heading-row .column-2,
  .contact-support--heading-row .column-3 {
    padding-left: 1rem; }

.contact-support--content-row {
  position: relative;
  background: #fefefe;
  border-bottom: 1px solid #dedede;
  -webkit-transition: padding 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: padding 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: padding 0.2s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .contact-support--content-row i {
    color: #3D1152; }
  .contact-support--content-row.is-expanded {
    padding-bottom: 2rem; }
    .contact-support--content-row.is-expanded .region-name {
      font-weight: 700;
      color: #3D1152; }
    .contact-support--content-row.is-expanded i {
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg); }
  .contact-support--content-row:hover {
    cursor: pointer; }
  .contact-support--content-row_liner {
    padding: 1rem;
    padding-right: 0;
    padding-bottom: 0; }
    .contact-support--content-row_liner:before, .contact-support--content-row_liner:after {
      clear: both;
      content: "";
      display: table; }

.contact-support .column-1,
.contact-support .column-2,
.contact-support .column-3 {
  float: left;
  width: 33%; }

.contact-support .columns-2-and-3 {
  float: left;
  width: 100%; }

.region-name {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .region-name i {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    -webkit-transition: color 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: color 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: color 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: color 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: color 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1); }

.numbers-list {
  margin-top: 2.5rem;
  height: 0;
  overflow: hidden; }
  .numbers-list:hover {
    cursor: default; }
  .numbers-list--item:nth-child(odd) {
    background: #f8f8f8; }
  .numbers-list--item_liner {
    padding: .5rem; }
    .numbers-list--item_liner:before, .numbers-list--item_liner:after {
      clear: both;
      content: "";
      display: table; }
  .numbers-list--item-column {
    float: left;
    width: 50%; }
  .numbers-list--item-column_additional-info span {
    display: block;
    font-size: 70%;
    margin-bottom: .25rem; }

@media (min-width: 769px) {
  .contact-support .columns-2-and-3 {
    width: 66.6667%; } }

.se-table-container {
  padding-bottom: 4rem;
  overflow-x: scroll; }

.table-heading-row {
  background: #3f3f3f;
  padding: 1rem;
  color: #fefefe;
  font-weight: 700; }
  .table-heading-row:before, .table-heading-row:after {
    clear: both;
    content: "";
    display: table; }

.table-column {
  float: left;
  padding: 0 1rem; }

.table-row {
  padding: 1rem; }
  .table-row:before, .table-row:after {
    clear: both;
    content: "";
    display: table; }
  .table-row:nth-child(even) {
    background: #f8f8f8; }

.se-table-parent {
  min-width: 900px;
  max-width: 930px;
  margin: auto; }

.se-table--third-party-licenses .se-table-parent {
  min-width: 1060px;
  max-width: 1100px; }

.se-table--third-party-licenses .column-1 {
  width: 30%; }

.se-table--third-party-licenses .column-2 {
  width: 15%; }

.se-table--third-party-licenses .column-3 {
  width: 55%; }

.se-table--software-trademarks .column-1 {
  width: 60%; }

.se-table--software-trademarks .column-2 {
  width: 20%; }

.se-table--software-trademarks .column-3 {
  width: 20%; }

.se-table--service-offerings .table-row:nth-child(even) {
  background: #fefefe; }

.se-table--service-offerings .table-row:nth-child(odd) {
  background: #f8f8f8; }

.se-table--service-offerings .column-1 {
  width: 25%;
  font-weight: 700; }

.se-table--service-offerings .column-2 {
  width: 75%; }

.se-service-offering {
  border-top: 5px solid #3D1152; }

.service-offering--heading-row {
  background: #3f3f3f !important;
  color: #fefefe; }
  .service-offering--heading-row .column-2 {
    font-weight: 700; }

.av-sitemap-section {
  padding: 12rem 0 !important; }
  .av-sitemap-section h4 {
    font-weight: 700; }
  .av-sitemap-section ul {
    list-style-type: disc; }
  .av-sitemap-section li {
    line-height: 1.6; }

.af-text-section h2 {
  margin-top: 0; }

.af-text-section .hr {
  margin-bottom: 0; }

.af-text-section .default-copy p {
  padding: 1.5rem 0 0; }

.af-hero .af--hr, .af-what .af--hr, .af-why .af--hr, .af-how .af--hr, .af-widget-container .cards-ltr .af--hr {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.71, 0.23, 0.07, 0.9);
  transition: -webkit-transform 1.2s cubic-bezier(0.71, 0.23, 0.07, 0.9);
  -o-transition: transform 1.2s cubic-bezier(0.71, 0.23, 0.07, 0.9);
  transition: transform 1.2s cubic-bezier(0.71, 0.23, 0.07, 0.9);
  transition: transform 1.2s cubic-bezier(0.71, 0.23, 0.07, 0.9), -webkit-transform 1.2s cubic-bezier(0.71, 0.23, 0.07, 0.9);
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0); }

.af-hero .hr--af--active, .af-what .hr--af--active, .af-why .hr--af--active, .af-how .hr--af--active, .af-widget-container .cards-ltr .hr--af--active {
  -webkit-transform: scaleX(1) !important;
      -ms-transform: scaleX(1) !important;
          transform: scaleX(1) !important; }

.af-hero-flex-carousel {
  background: #404040; }
  .af-hero-flex-carousel .heading-container {
    margin-bottom: 3.5rem !important; }
  .af-hero-flex-carousel .flickity-viewport {
    position: absolute !important;
    height: 100% !important;
    width: 100%;
    top: 0;
    left: 0 !important; }
  .af-hero-flex-carousel .flickity-button, .af-hero-flex-carousel .flickity-prev-next-button,
  .af-hero-flex-carousel .flickity-page-dots {
    display: none; }
  .af-hero-flex-carousel .content {
    position: relative; }
  .af-hero-flex-carousel .hero-flex-image {
    left: 0 !important; }
  .af-hero-flex-carousel .af-subheading-carousel {
    position: relative;
    height: 6.5rem; }
  .af-hero-flex-carousel .is-selected, .af-hero-flex-carousel .flickity-slider,
  .af-hero-flex-carousel .flickity-viewport {
    cursor: default;
    pointer-events: none !important; }
  .af-hero-flex-carousel .subheading-carousel-cell {
    width: 100%;
    height: 100%;
    left: 0 !important; }
    .af-hero-flex-carousel .subheading-carousel-cell p {
      margin-bottom: 3.5rem;
      font-family: 'Barlow', sans-serif;
      font-weight: 100; }
  .af-hero-flex-carousel .flickity-slider {
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important; }
  .af-hero-flex-carousel .body-copy {
    margin-bottom: 0; }
  .af-hero-flex-carousel .af-flickity-init-cta {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: .15s opacity;
    -o-transition: .15s opacity;
    transition: .15s opacity; }

@-webkit-keyframes slideFadeUp {
  66% {
    opacity: 0;
    -webkit-transform: translateY(3.3rem);
            transform: translateY(3.3rem); }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }

@keyframes slideFadeUp {
  66% {
    opacity: 0;
    -webkit-transform: translateY(3.3rem);
            transform: translateY(3.3rem); }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }

@keyframes slideRight {
  to {
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw); } }

@-webkit-keyframes fadeIn {
  to {
    opacity: 1; } }

@keyframes fadeIn {
  to {
    opacity: 1; } }

@-webkit-keyframes scaleRight {
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1); } }

@keyframes scaleRight {
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1); } }

.af-hero .bg-img--animated {
  background: black;
  -webkit-animation: 1s forwards 2s cubic-bezier(0.075, 0.82, 0.165, 1) slideRight;
          animation: 1s forwards 2s cubic-bezier(0.075, 0.82, 0.165, 1) slideRight;
  z-index: 2; }

.af-hero .one-half {
  padding-top: 7rem;
  padding-bottom: 7rem; }

.af-hero .heading-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(5rem);
      -ms-transform: translateY(5rem);
          transform: translateY(5rem);
  opacity: 0;
  -webkit-animation: 1s forwards 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) slideFadeUp;
          animation: 1s forwards 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) slideFadeUp;
  margin: 0 0 .83em 0; }
  .af-hero .heading-container .af-svg-container {
    width: 104px;
    margin-right: .25em; }
  .af-hero .heading-container svg path, .af-hero .heading-container svg rect {
    fill: #fefefe; }
  .af-hero .heading-container h1 {
    text-align: left;
    margin: 0; }

.af-hero .af-svg-container {
  position: relative; }
  .af-hero .af-svg-container .af-svg-liner {
    padding-bottom: 22%; }
  .af-hero .af-svg-container svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }

.af-hero .heading-liner {
  display: inline-block; }

.af-hero .hr {
  margin: 0rem auto 2rem auto;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-animation: 0.6s forwards 1.8s cubic-bezier(0.71, 0.23, 0.07, 0.9) scaleRight;
          animation: 0.6s forwards 1.8s cubic-bezier(0.71, 0.23, 0.07, 0.9) scaleRight; }

.af-hero .af-subheading--container {
  opacity: 0;
  -webkit-animation: 2s forwards 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) fadeIn;
          animation: 2s forwards 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) fadeIn; }

.af-what {
  padding: 6rem 0; }
  .af-what .inner {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center; }
  .af-what .hr {
    margin-left: auto;
    margin-right: auto; }

.af-text-left, .af-img-right {
  float: left;
  width: 100%; }

.af-text-left {
  padding-bottom: 3rem; }

.af-img-right:hover .af-img {
  -webkit-transform: scale(1.25);
      -ms-transform: scale(1.25);
          transform: scale(1.25);
  -webkit-transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1);
  transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1);
  -o-transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1);
  transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1);
  transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1), -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1); }

.af-img-aspect-box {
  position: relative; }
  .af-img-aspect-box .af-img-aspect-liner-1-1 {
    padding-bottom: 90.5%;
    overflow: hidden; }
  .af-img-aspect-box .af-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: rotateZ(-45deg) scale(0.75);
        -ms-transform: rotate(-45deg) scale(0.75);
            transform: rotateZ(-45deg) scale(0.75);
    opacity: 0;
    -webkit-transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.75);
    transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.75);
    -o-transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.75);
    transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.75);
    transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.75), -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.75); }
    .af-img-aspect-box .af-img--active {
      -webkit-transform: rotateZ(0) scale(1);
          -ms-transform: rotate(0) scale(1);
              transform: rotateZ(0) scale(1);
      opacity: 1; }

.af-accordion {
  padding-top: 3rem; }
  .af-accordion h3 {
    color: #fefefe;
    position: relative;
    margin: 0;
    padding: 1rem 0; }
    .af-accordion h3:hover {
      cursor: pointer; }
    .af-accordion h3::after {
      display: block;
      content: '';
      position: absolute;
      top: 50%;
      right: 0;
      -webkit-transform: translateY(-25%);
          -ms-transform: translateY(-25%);
              transform: translateY(-25%);
      -webkit-transition: -webkit-transform .2s;
      transition: -webkit-transform .2s;
      -o-transition: transform .2s;
      transition: transform .2s;
      transition: transform .2s, -webkit-transform .2s;
      display: inline-block;
      border-top: 5px solid #f8be43;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 5px solid transparent; }
  .af-accordion .af-accordion--tab:not(:first-of-type) {
    border-top: 1px solid rgba(254, 254, 254, 0.5); }
  .af-accordion .af-accordion--tab .tab--active::after {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg); }
  .af-accordion .af-accordion-list {
    list-style-type: none;
    margin: 0; }
    .af-accordion .af-accordion-list li {
      position: relative;
      margin: 1.5rem 0 0;
      line-height: 1.6; }
      .af-accordion .af-accordion-list li:last-of-type {
        margin-bottom: 1.5rem; }
      .af-accordion .af-accordion-list li::before {
        content: '\2022';
        position: absolute;
        color: #f8be43;
        left: -1rem; }

.af-testimonial {
  padding: 4rem 0; }

.af-blockquote-container {
  color: #590888;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover; }
  .af-blockquote-container .af-blockquote--liner {
    padding: 2.25rem; }
  .af-blockquote-container blockquote {
    margin: 0; }
    .af-blockquote-container blockquote p {
      font-size: 24px;
      font-family: 'Barlow', sans-serif;
      font-weight: 100;
      letter-spacing: -1px;
      line-height: 1.4;
      margin-bottom: 2rem;
      color: #fefefe; }
  .af-blockquote-container cite {
    font-style: normal;
    font-size: 16px;
    font-weight: 700;
    line-height: 38px;
    color: #f7b11e; }

.af-video-overlap {
  padding-bottom: 23.5vw;
  background: #fefefe;
  display: none; }

.af-why {
  padding-bottom: 7vw;
  background: -webkit-gradient(linear, left top, left bottom, from(#710aac), to(#3D1152));
  background: -o-linear-gradient(top, #710aac, #3D1152);
  background: linear-gradient(to bottom, #710aac, #3D1152); }
  .af-why .af-video-inner {
    display: none;
    width: 58%;
    max-height: 5.25vw; }
  .af-why .wistia_responsive_padding {
    -webkit-transform: translateY(-83.333%);
        -ms-transform: translateY(-83.333%);
            transform: translateY(-83.333%); }
  .af-why h2, .af-why p, .af-why li {
    color: #fefefe; }
  .af-why p, .af-why li {
    font-weight: 700; }
  .af-why .inner:nth-of-type(1) {
    width: 58%; }
  .af-why .w-big-play-button {
    background: #fefefe !important;
    border-radius: 3rem !important; }
    .af-why .w-big-play-button svg polygon {
      fill: #f70656 !important; }
  .af-why .af-text-left--liner {
    padding-top: 7vw;
    text-align: center; }
    .af-why .af-text-left--liner .hr {
      margin-left: auto;
      margin-right: auto; }
    .af-why .af-text-left--liner h2 {
      margin-top: 0; }

.af-how {
  padding: 4rem 0; }
  .af-how .af-text-section {
    text-align: center; }
    .af-how .af-text-section .hr {
      margin-left: auto;
      margin-right: auto; }
  .af-how .af-tiers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding-top: 3rem; }
  .af-how .af-tier {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 100%;
    text-align: center; }
    .af-how .af-tier:first-of-type {
      background: #aaaaaa;
      font-weight: 700; }
    .af-how .af-tier:not(:last-of-type) {
      border-bottom: 1px solid #b8b8b8; }
    .af-how .af-tier:hover .af-tier--heading {
      color: #a41ef2;
      letter-spacing: 2px;
      -webkit-transform: scale(1.1);
          -ms-transform: scale(1.1);
              transform: scale(1.1); }
  .af-how .af-tier--heading {
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
    color: #710aac;
    font-family: 'Muli', sans-serif;
    letter-spacing: 1px;
    -webkit-transition: letter-spacing 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: letter-spacing 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: letter-spacing 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: letter-spacing 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: letter-spacing 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 18px; }
  .af-how .af-subtier {
    margin-bottom: 1.33em; }
  .af-how .last-tagline {
    padding: 1rem 0 2.5rem;
    text-align: center; }

.af-tagline {
  color: #3D1152;
  font-weight: 700; }

.af-widget-container .cards-ltr .float-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .af-widget-container .cards-ltr .float-container::before {
    display: none; }

.af-widget-container .cards-ltr .image-half, .af-widget-container .cards-ltr .card-half {
  float: none !important;
  width: auto !important;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%; }

.af-widget-container .cards-ltr img {
  width: 90%; }

.af-widget-container .text-first .float-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

.af-widget-container .text-first .image-half {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1; }

.af-widget-container .wysiwyg-output ul {
  list-style: none !important; }
  .af-widget-container .wysiwyg-output ul li {
    line-height: 1.6;
    font-size: 18px; }
    .af-widget-container .wysiwyg-output ul li::before {
      content: '';
      background: #f70656 !important; }

.af-widget-container .cta-banner h3 {
  margin-top: .5em;
  font-family: 'Barlow', sans-serif;
  font-size: 28px;
  font-weight: 100;
  line-height: 50px; }

.af-widget-container .cta-banner .hr {
  margin-top: 0 !important; }

.af-widget-container .cta-banner .button {
  padding: 1.25rem 2.25rem !important; }

.av-svg-container #outer-circle {
  opacity: 0.25; }

.av-svg-container .sv-container {
  position: relative; }

.av-svg-container .sv-aspect-ratio {
  padding-bottom: 75%; }

.av-svg-container svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1);
  transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1);
  -o-transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1);
  transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1);
  transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1), -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1); }

.av-svg-container .sub-heading {
  opacity: 0; }

.av-svg-container .svg-text-container {
  opacity: 0; }
  .av-svg-container .svg-text-container text {
    display: inline-block;
    cursor: default; }

@media (min-width: 769px) {
  .af-hero .heading-container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .af-hero .hr {
    margin-left: 0;
    margin-bottom: 1rem; }
  .af-how .af-tiers {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
  .af-how .af-tier {
    padding: 1.5vw 3vw;
    width: auto; }
    .af-how .af-tier:first-of-type {
      text-align: left; }
    .af-how .af-tier:not(:last-of-type) {
      border-bottom: none;
      border-right: 1px solid #b8b8b8; }
  .af-testimonial .inner-default {
    width: 90%; } }

@media (min-width: 961px) {
  .af-hero-flex-carousel .one-half {
    padding: 10rem 0 !important; }
  .af-hero-flex-carousel .subheading-carousel-cell {
    pointer-events: none; }
    .af-hero-flex-carousel .subheading-carousel-cell p {
      font-size: 28px; }
  .af-hero .heading-container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .af-what {
    padding: 8rem 0 0; }
    .af-what .af-text-left {
      width: 70%;
      padding-right: 0;
      padding-bottom: 4rem; }
  .af-text-left, .af-img-right {
    float: left; }
  .af-text-left {
    width: 30%;
    padding-right: 3vw; }
  .af-img-right {
    width: 70%; }
  .af-why .af-inner {
    width: 50%; }
  .af-why .af-accordion {
    width: 80%;
    margin: 0 auto; }
  .af-what {
    padding: 7vw 0; }
  .af-how .inner:first-of-type, .af-how .inner:last-of-type {
    width: 50%; }
  .af-how .af-tier--heading {
    font-size: 1.5vw; }
  .af-how .last-tagline {
    padding: 2rem 0 0; }
  .af-blockquote-container blockquote {
    margin: 0; }
    .af-blockquote-container blockquote p {
      font-size: 32px; }
  .af-blockquote-container cite {
    font-size: 22px; }
  .af-blockquote-container .af-blockquote--liner {
    padding: 4vw 5vw; }
  .af-widget-container .cards-ltr .float-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .af-widget-container .cards-ltr img {
    width: auto; }
  .af-widget-container .text-first .image-half {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
    .af-widget-container .text-first .image-half img {
      margin-right: 0; }
  .af-widget-container .image-first .image-half img {
    margin-left: 0; }
  .af-widget-container .cta-banner h3 {
    font-size: 40px; }
  .af-widget-container .cta-banner .inner {
    width: 40%; } }

@media (min-width: 1170px) {
  .af-how .af-tier {
    padding: 2.3vw 1.8vw; }
  .af-how .af-tier--heading {
    font-size: 1.6rem; } }

@media (min-width: 1281px) {
  .af-hero .heading-container {
    margin-bottom: 1.75rem; } }

@media (min-width: 1441px) {
  .af-hero .heading-container .af-svg-container {
    width: 150px; } }

@media (-ms-high-contrast: none) {
  .af-hero .af-img, .af-what .af-img, .af-why .af-img, .af-how .af-img, .af-widget-container .cards-ltr .af-img {
    opacity: 1 !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important; }
  .af-hero .af--hr, .af-what .af--hr, .af-why .af--hr, .af-how .af--hr, .af-widget-container .cards-ltr .af--hr {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1); }
  .av-svg-container .sub-heading {
    opacity: 1 !important; }
  .av-svg-container .svg-text-container {
    opacity: 1 !important; } }

.se-more-about {
  background: #3D1152; }
  .se-more-about--heading-half h2 {
    color: #fefefe; }
  .se-more-about--list-half ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
  .se-more-about--item {
    border-top: 1px solid #fefefe; }
    .se-more-about--item:last-child {
      border-bottom: 1px solid #fefefe; }
    .se-more-about--item__content {
      padding: 1.5em;
      -webkit-transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
      -o-transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .se-more-about--item h3 {
      color: #fefefe;
      margin: 0; }
    .se-more-about--item a:hover .se-more-about--item__content {
      background: #fefefe; }
    .se-more-about--item a:hover h3 {
      color: #3D1152; }

@media (min-width: 769px) {
  .se-more-about > .inner:before, .se-more-about > .inner:after {
    clear: both;
    content: "";
    display: table; }
  .se-more-about--heading-half, .se-more-about--list-half {
    float: left;
    width: 50%; }
    .se-more-about--heading-half__liner, .se-more-about--list-half__liner {
      padding: 0 2em; }
  .se-advantages-list .text-half {
    margin-bottom: 3em; } }

.se-card {
  margin-bottom: 2em; }
  .se-card .se-figure {
    position: relative;
    margin: 0;
    padding: 0; }
    .se-card .se-figure--liner {
      padding-bottom: 62.5%; }
    .se-card .se-figure img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  .se-card--headline h3 {
    font-size: 22px; }
  .se-card--body {
    font-size: 90%; }

@media (min-width: 769px) {
  .se-card {
    margin-bottom: 0; }
  .se-image-cards > .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 2em; }
  .se-image-cards .se-card {
    width: 33%; }
    .se-image-cards .se-card .se-figure {
      width: 110%;
      margin-left: -5%; } }

@media (min-width: 1281px) {
  .se-image-cards > .inner {
    padding: 0 4em; } }

@media (min-width: 1441px) {
  .se-image-cards > .inner {
    padding: 0 8em; } }

.av-socialblocks {
  padding: 2rem 0; }

.av-socialblocks--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  /* Existing CSS from previous module */
  /* End old CSS */ }
  .av-socialblocks--container .big-social--name {
    text-align: center;
    position: absolute;
    width: 100%;
    left: 50%;
    margin-left: -50%;
    height: 100%;
    top: 30%;
    color: white;
    z-index: 10;
    font-size: 3em;
    -webkit-transform: translateY(10%);
        -ms-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
    -webkit-transition: all 0ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0ms cubic-bezier(0.165, 0.84, 0.44, 1); }
    .av-socialblocks--container .big-social--name p {
      font-size: 16px; }
  .av-socialblocks--container .social-icon-nest {
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translate(-80%, 80%);
        -ms-transform: translate(-80%, 80%);
            transform: translate(-80%, 80%); }

.av-socialblocks h3,
.av-social-follow-us {
  text-align: center; }

.av-socialblock {
  position: relative;
  margin: .5rem;
  width: calc(80% - 1rem); }
  .av-socialblock figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100%; }
    .av-socialblock figure:hover .av-socialblock--overlay {
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1); }
    .av-socialblock figure:hover .social-inner {
      opacity: 0;
      -webkit-transform: translateY(3rem);
          -ms-transform: translateY(3rem);
              transform: translateY(3rem); }
    .av-socialblock figure:hover .big-social--name {
      -webkit-transform: translateY(0%);
          -ms-transform: translateY(0%);
              transform: translateY(0%);
      opacity: 1;
      -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
      -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .av-socialblock figure img {
      display: block;
      width: 100%; }
    .av-socialblock figure .social-inner {
      position: absolute;
      bottom: 5%;
      left: 5%;
      -webkit-transition: 0.15s opacity cubic-bezier(0.165, 0.84, 0.44, 1), 0.3s -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: 0.15s opacity cubic-bezier(0.165, 0.84, 0.44, 1), 0.3s -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
      -o-transition: 0.3s transform cubic-bezier(0.165, 0.84, 0.44, 1), 0.15s opacity cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: 0.3s transform cubic-bezier(0.165, 0.84, 0.44, 1), 0.15s opacity cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: 0.3s transform cubic-bezier(0.165, 0.84, 0.44, 1), 0.15s opacity cubic-bezier(0.165, 0.84, 0.44, 1), 0.3s -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1); }
      .av-socialblock figure .social-inner i {
        color: #fefefe; }
    .av-socialblock figure .av-socialblock--overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: rgba(62, 16, 84, 0.75);
      -webkit-transition: 0.35s -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: 0.35s -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
      -o-transition: 0.35s transform cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: 0.35s transform cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: 0.35s transform cubic-bezier(0.165, 0.84, 0.44, 1), 0.35s -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
      -webkit-transform-origin: bottom left;
          -ms-transform-origin: bottom left;
              transform-origin: bottom left;
      -webkit-transform: scale(0.2);
          -ms-transform: scale(0.2);
              transform: scale(0.2); }

.av-social-follow-us i {
  margin: 0 20px; }

@media (min-width: 541px) {
  .av-socialblock {
    width: calc(50% - 1rem); } }

@media (min-width: 769px) {
  .av-socialblocks--container {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .av-socialblock {
    width: calc(50% - 1rem); }
    .av-socialblock figure .social-inner {
      bottom: 7.5%;
      left: 7.5%; } }

.av-thankyou {
  padding: 4rem 0 2rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }

.av-thankyou--container {
  position: relative;
  text-align: center;
  width: 75%;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 4rem auto 2rem;
  padding: 2em;
  color: #fefefe;
  z-index: 10; }
  .av-thankyou--container h1 {
    color: #fefefe; }

.av-social--container p {
  margin-bottom: 1.25rem;
  font-size: 1.25rem; }

.av-social--container ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  .av-social--container ul li {
    width: 130px;
    margin: 0em  auto 0.4em auto;
    text-align: center;
    font-weight: bolder;
    border-radius: 5px;
    padding: .33rem 1rem; }
    .av-social--container ul li a {
      color: #fefefe;
      padding: .25rem; }

.av-social--container .twitter {
  background: #0693e3; }

.av-social--container .linkedin {
  background: #0693e3; }

.av-social--container .facebook {
  background: #4065b5; }

@media (min-width: 769px) {
  .av-social--container ul li {
    display: inline-block;
    margin: 0em .4em; } }

.hs-menu-wrapper#hs_menu_wrapper_event_menu {
  position: fixed;
  z-index: 100;
  top: 75px;
  left: 0;
  width: 100%;
  background: #f8f8f8;
  text-align: right;
  font-family: "Barlow";
  -webkit-transition: top 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.4s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hs-menu-wrapper#hs_menu_wrapper_event_menu .site-container {
    overflow: visible !important; }
  .hs-menu-wrapper#hs_menu_wrapper_event_menu.mobile-collapsed--false .hs-menu-toggle span:first-child {
    -webkit-transform: rotate(45deg) translate(4px, 10px);
        -ms-transform: rotate(45deg) translate(4px, 10px);
            transform: rotate(45deg) translate(4px, 10px); }
  .hs-menu-wrapper#hs_menu_wrapper_event_menu.mobile-collapsed--false .hs-menu-toggle span:nth-child(2) {
    opacity: 0; }
  .hs-menu-wrapper#hs_menu_wrapper_event_menu.mobile-collapsed--false .hs-menu-toggle span:last-child {
    -webkit-transform: rotate(-45deg) translate(4px, -10px);
        -ms-transform: rotate(-45deg) translate(4px, -10px);
            transform: rotate(-45deg) translate(4px, -10px); }
  .hs-menu-wrapper#hs_menu_wrapper_event_menu.mobile-collapsed .hs-menu-toggle span {
    -webkit-transform: rotate(0deg) translate(0, -50%);
        -ms-transform: rotate(0deg) translate(0, -50%);
            transform: rotate(0deg) translate(0, -50%); }
    .hs-menu-wrapper#hs_menu_wrapper_event_menu.mobile-collapsed .hs-menu-toggle span:nth-child(2) {
      opacity: 1; }
  .hs-menu-wrapper#hs_menu_wrapper_event_menu.mobile-collapsed .hs-menu-parent-wrapper {
    height: 0;
    overflow: hidden; }
  .hs-menu-wrapper#hs_menu_wrapper_event_menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
  .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-toggle {
    position: absolute;
    z-index: 2;
    top: 32px;
    right: 10%;
    height: 20px;
    width: 30px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-toggle:hover {
      cursor: pointer; }
    .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-toggle--liner {
      position: relative; }
    .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-toggle span {
      display: block;
      content: '';
      position: absolute;
      right: 10%;
      background: #3D1152;
      height: 2px;
      width: 30px; }
      .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-toggle span:first-child {
        top: 0; }
      .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-toggle span:nth-child(2) {
        top: 10px; }
      .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-toggle span:last-child {
        top: 20px; }
  .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-parent-wrapper {
    padding-top: 4rem;
    padding-right: 10%;
    position: relative;
    height: auto; }
  .hs-menu-wrapper#hs_menu_wrapper_event_menu li {
    margin-bottom: 1rem; }
  .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-depth-1 {
    margin-bottom: 2rem; }
    .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-depth-1 > a {
      font-weight: 700; }
  .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-children-wrapper {
    margin-top: 1rem;
    padding-right: 1rem; }

@media (min-width: 769px) {
  .hs-menu-wrapper#hs_menu_wrapper_event_menu {
    text-align: left; }
    .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-toggle {
      display: none; }
    .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-parent-wrapper {
      padding: .75rem 0;
      padding-left: 8%; }
      .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-parent-wrapper > li {
        display: inline-block;
        position: relative; }
        .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-parent-wrapper > li.user-hovering .hs-menu-children-wrapper {
          height: auto; }
    .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-depth-1 {
      margin: 0 2rem; }
      .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-depth-1 > a {
        font-weight: 300; }
    .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-depth-2 {
      padding: .5rem 0; }
    .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-children-wrapper {
      position: absolute;
      left: 0;
      top: 160%;
      -webkit-transform: translateX(-33%);
          -ms-transform: translateX(-33%);
              transform: translateX(-33%);
      height: 0;
      width: 200px;
      overflow: hidden;
      padding: 0 1rem;
      margin-top: 0;
      background: #f8f8f8; }
      .hs-menu-wrapper#hs_menu_wrapper_event_menu .hs-menu-children-wrapper .hs-menu-depth-2:first-child {
        padding-top: 1rem; } }

.av-hero-video-slider-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000; }
  .av-hero-video-slider-modal-overlay .modal-overlay--inner {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 80vh;
    width: 80%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 1001; }
  .av-hero-video-slider-modal-overlay .modal-overlay--btn {
    position: absolute;
    top: 0;
    left: 50%;
    font-size: 2rem;
    -webkit-transform: translateY(-125%);
        -ms-transform: translateY(-125%);
            transform: translateY(-125%);
    z-index: 1002;
    cursor: pointer; }
  .av-hero-video-slider-modal-overlay #modal-overlay-close {
    cursor: pointer; }
    .av-hero-video-slider-modal-overlay #modal-overlay-close .fa {
      color: #f70656;
      -webkit-transition: .2s transform ease;
      -o-transition: .2s transform ease;
      transition: .2s transform ease; }
      .av-hero-video-slider-modal-overlay #modal-overlay-close .fa:hover {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
  .av-hero-video-slider-modal-overlay #modal-video-slot {
    position: relative;
    padding-bottom: 56.25%; }
    .av-hero-video-slider-modal-overlay #modal-video-slot iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

#av-hero-slider {
  background: #373737;
  position: relative; }
  #av-hero-slider .h1white {
    font-size: 1.125rem;
    margin: 0 0 .5rem 0; }
    #av-hero-slider .h1white:last-of-type {
      margin-bottom: 1rem; }
  #av-hero-slider .flickity-page-dots {
    position: absolute;
    z-index: 999;
    width: 100%;
    bottom: 1em;
    padding: .5em 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    #av-hero-slider .flickity-page-dots li {
      background: #fefefe;
      height: 1rem;
      width: 1rem;
      margin: 0 .5rem;
      border-radius: 50%;
      opacity: 0.25; }
    #av-hero-slider .flickity-page-dots li.is-selected {
      opacity: 1;
      background: #3D1152; }
  #av-hero-slider .av-hero-slide--bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat; }
  #av-hero-slider .av-hero-slider__play-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  #av-hero-slider .video-hr-ct {
    margin-top: 1rem; }
  #av-hero-slider .video-btn--icon {
    position: relative;
    display: block;
    background: #fefefe;
    opacity: .5;
    width: 5rem;
    height: 5rem;
    border-radius: 50%; }
  #av-hero-slider .fa-play, #av-hero-slider .fa-play::before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  #av-hero-slider .fa-play {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #3D1152; }
    #av-hero-slider .fa-play::before {
      color: #fefefe;
      opacity: 1; }

.av-hero-slider--slide {
  width: 100%; }

.av-hero-slider--vsizer {
  position: relative;
  min-height: 50vh; }

.av-hero-slider--content {
  position: absolute;
  z-index: 1 !important;
  top: 50%;
  max-width: 32em;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  margin-left: -0.9375rem;
  background-blend-mode: overlay; }

.av-hero-slider--content h1, .av-hero-slider--content h2, .av-hero-slider--content h3, .av-hero-slider--content h4, .av-hero-slider--content h5, .av-hero-slider--content h6 {
  color: #fff;
  margin-top: 0;
  font-weight: lighter; }

.av-hero-slider--contentliner {
  padding: 1em 1.2em; }

.av-hero-slider--content p:last-of-type {
  margin-bottom: 0; }

.av-hero-slider--btn {
  padding-top: 1em; }

.av-hero-slider--btn .button {
  margin: 0 0 .5em; }

.av-hero-slide--bg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(51, 51, 51, 0.1)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(51, 51, 51, 0.1) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(51, 51, 51, 0.1) 100%); }

@media (min-width: 40.063em) {
  .av-hero-slider--vsizer {
    padding-bottom: 56.5%; }
  .av-hero-slider__play-container {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: -5%; }
  .video-hr-ct {
    margin-top: 0;
    margin-left: 2rem;
    -webkit-transform: translateY(-0.5rem);
        -ms-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem); }
  .button.primary {
    margin-top: 1rem; } }

@media (min-width: 64.063em) {
  .av-hero-slider--vsizer {
    padding-bottom: 32.5%; }
  .av-hero-slider--content {
    margin-left: 2em; }
  .av-hero-slider--contentliner {
    padding: 1.7em 2em; } }

@media (min-width: 961px) {
  .av-hero-slider--vsizer {
    min-height: 80vh; } }

.av-card {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin-bottom: 2rem; }
  .av-card:hover {
    cursor: pointer; }
    .av-card:hover .av-card--content {
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0); }
    .av-card:hover .av-card--bgimg {
      -webkit-transform: scale(1.1);
          -ms-transform: scale(1.1);
              transform: scale(1.1); }
  .av-card--bgimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .av-card--content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(80%);
        -ms-transform: translateY(80%);
            transform: translateY(80%);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .av-card--content__liner {
      position: relative;
      padding: 1rem;
      height: 350px; }
      .av-card--content__liner:before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #3D1152;
        opacity: .75; }
    .av-card--content h3, .av-card--content p, .av-card--content a {
      margin: 0;
      position: relative;
      z-index: 2;
      color: #fefefe; }
    .av-card--content h3 {
      margin-bottom: 2rem; }
  .av-card--action {
    margin-top: 1rem; }

.av-cards-block .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

@media (min-width: 769px) {
  .av-card {
    width: 47.5%; }
  .av-cards-block .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

@media (min-width: 1025px) {
  .av-card {
    width: 31.5%; }
  .av-cards-block.has-2-cards .av-card, .av-cards-block.has-4-cards .av-card, .av-cards-block.has-8-cards .av-card {
    width: 47.5%; } }

/* [hubspot-metadata] { "type":"asset", "path":"Custom/page/css/redesign/app.css", "id": 6330306018 } [end-hubspot-metadata] */