@charset "UTF-8";


/*!
 * Common colors and constants
 * ===========================
 *
 * Text sizing
 * -----------
 * Body copy: 18px
 * Line height / baseline grid: 24px
 * H6: 20px
 * H5: 24px
 * H4: 30px
 * H3: 36px
 * H2: 44px
 * H1: 52px
 * Small or secondary: 16px, 14px
 *
 * Text colors
 * -----------
 * Copy: #7f7f7f
 * Titles: #4f4f4f
 *
 * Theme colors
 * ------------
 * Primary (RD Purple): #6244bb
 *   Tint: #7257c2
 *   Shade: #5452a3
 * Accent (RD Lime): #8cc63f
 *   Tint: #91cb66
 *   Shade: #79a338
 * Action (RD Orange): #ffb927
 *   Tint: #ffcd79
 *   Shade: #eca42c
 *
 * Other colors
 * ------------
 * Page background: #fff
 * Light wash: #f5f5f7
 * Mid wash: #d0cfd4
 * Dark wash: #000
 * Warnings: #941
 *
 * Measurements
 * ------------
 * Maximum page width: 1920px
 *
 * Breakpoints
 * -----------
 * Small: 480px
 * Medium: 780px
 * Large: 1280px
 * Widescreen: 1600px
 */


/*! ---------- =reset ---------- */

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
ul {
  list-style: disc;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
img {
  -ms-interpolation-mode: bicubic;
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}
audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden], template {
  display: none;
}
a:active, a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b, strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
hr {
  box-sizing: content-box;
  height: 0;
  margin: 48px 0;
  border-bottom: 1px solid #d0cfd4;
}
pre {
  overflow: auto;
}
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
}
button {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/*! ---------- =typography ---------- */

body {
  font: 18px/24px "Open Sans", Helvetica, Arial, sans-serif;
  color: #7f7f7f;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

p, ol, ul, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 24px;
}
p:last-child,
ol:last-child,
ul:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
p, ol, ul {
  orphans: 2;
  widows: 2;
}
ol, ul {
  margin-left: 2em;
}
/*.content ol {
  counter-reset: rd-counter;
}
.content ol li {
  counter-increment: rd-counter;
}
.content ol li::before {
  content: counter(rd-counter);
  color: #8cc63f;
  display: inline-block;
  font-size: inherit;
  left: -20px;
  margin-right: -6px;
  position: relative;
  top: -2px;
  vertical-align: middle;
}*/
.content ol li::marker {
  color: #8cc63f;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Quicksand", "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  color: #4f4f4f;
}
h1 img,
h2 img,
h3 img,
h4 img,
h5 img,
h6 img {
  display: inline-block;
  vertical-align: middle;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  display: block;
}

h1,
.h1 {
  font-size: 52px;
  line-height: 60px;
}
@media (max-width: 779px) {
  h1,
  .h1 {
    font-size: 44px;
    line-height: 48px;
  }
}
@media (max-width: 479px) {
  h1,
  .h1 {
    font-size: 36px;
    line-height: 36px;
  }
}

h2,
.h2 {
  font-size: 44px;
  line-height: 48px;
}
@media (max-width: 779px) {
  h2,
  .h2 {
    font-size: 36px;
    line-height: 36px;
  }
}

h3,
.h3 {
  font-size: 36px;
  line-height: 36px;
}
@media (max-width: 779px) {
  h3,
  .h3 {
    font-size: 30px;
    line-height: 36px;
  }
}

h4,
.h4 {
  font-size: 30px;
  line-height: 36px;
}

h5,
.h5 {
  font-size: 24px;
  line-height: 24px;
}
h6,

.h6 {
  font-size: 20px;
  line-height: 24px;
}

.text-size {
  font-size: 18px;
  line-height: 24px;
}

.align-left { text-align: left; }
.align-center { text-align: center; }
.align-right { text-align: right; }

mark {
  background: #ffb927;
  color: #4f4f4f;
}

.note {
  font-size: 14px;
  opacity: 0.8;
}
pre + .note,
input + .note,
textarea + .note {
  margin-top: -12px;
}

.distinguish {
  color: #6244bb;
}
.highlight {
  color: #8cc63f;
  font-weight: bold;
}
.warn {
  color: #941;
}

.type-family-sample {
  font-size: 36px;
  line-height: 36px;
}

.large-copy {
  font-size: 20px;
  line-height: 30px;
}


/*! ---------- =common =components ---------- */

a {
  text-decoration: none;
  color: #6244bb;
}
a:hover,
a:focus {
  color: #8cc63f;
}
a,
button {
  transition: color 0.15s ease-out,
              background-color 0.15s ease-out,
              border 0.15s ease-out,
              box-shadow 0.15s ease-out,
              opacity 0.15s ease-out;
}

.disclose {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  background: #8cc63f;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  transition: background 0.15s ease-out, transform 0.15s ease-out;
}
.disclose::before {
  content: '\f054';
  display: block;
  font: 900 10px/24px "Font Awesome 5 Pro";
}
a:hover .disclose,
a:focus .disclose {
  background: #6244bb;
  -ms-transform: translateX(2px);
  transform: translateX(2px);
}

.img-left,
.img-right {
  display: block;
  max-width: 40%;
  margin: 0 0 12px;
}
.img-left img,
.img-right img {
  display: block;
}
.img-left {
  float: left;
  margin-right: 12px;
}
.img-right {
  float: right;
  margin-left: 12px;
}

.spacer {
  margin: 24px 0;
}
.spacer--small {
  margin: 12px 0;
}
.spacer--large {
  margin: 48px 0;
}
.spacer--huge {
  margin: 60px 0;
}

figure {
  display: block;
  margin-bottom: 24px;
  border: 1px solid #f5f5f7;
  padding: 6px;
}

figcaption {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  opacity: 0.8;
}

dl:not(:last-child) {
  margin-bottom: 24px;
}

dt {
  float: left;
  clear: left;
  margin-right: 18px;
  font-weight: 700;
}
dt ~ dt {
  margin-top: 12px;
}

dd {
  display: block;
  overflow: hidden;
}
dd ~ dd {
  margin-top: 12px;
}

.to-screen-edges {
  width: auto !important;
  margin-left: -24px;
  margin-right: -24px;
}
.to-screen-edges__content {
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 780px) {
  .to-screen-edges {
    margin-left: -72px;
    margin-right: -72px;
  }
  .to-screen-edges__content {
    padding-left: 72px;
    padding-right: 72px;
  }
}

@media (min-width: 2064px) {
  .to-screen-edges {
    margin-left: calc(-50vw + (1920px / 2));
    margin-right: calc(-50vw + (1920px / 2));
  }
  .to-screen-edges__content {
    padding-left: calc(50vw - (1920px / 2));
    padding-right: calc(50vw - (1920px / 2));
  }
}

.responsive-video {
  margin-bottom: 36px;
}
.responsive-video:last-child {
  margin-bottom: 0;
}
.responsive-video__aspect {
  position: relative;
  padding-bottom: 56.25%;
}
.responsive-video__aspect iframe,
.responsive-video__aspect > div {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  position: absolute !important;
  top: 0; right: 0; bottom: 0; left: 0;
}

.drawable-icon {
  margin-left: auto;
  margin-right: auto;
}
.drawable-icon--medium {
  max-width: 120px;
}
.drawable-icon svg {
  display: block;
  margin: 0 auto;
}
.drawable-icon path,
.drawable-icon circle,
.drawable-icon rect {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
}
.drawable-icon.is-visible path,
.drawable-icon.is-visible circle,
.drawable-icon.is-visible rect {
  animation: draw-icon 1.6s ease-in-out forwards;
}

.pull-quote {
  padding: 24px 0;
  margin: 24px 0;
  border: solid #79a338;
  border-width: 2px 0;
  font-size: 20px;
  line-height: 36px;
  font-weight: 300;
}
.pull-quote__attribution {
  display: block;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
}
.pull-quote__attribution::before {
  content: '– ';
}
p + .pull-quote__attribution {
  margin-top: -18px;
}

@media (min-width: 480px) {
  .pull-quote--left,
  .pull-quote--right {
    max-width: 40%;
    margin-top: 0;
  }
  .pull-quote--left {
    float: left;
    margin-right: 24px;
    padding: 0 24px 0 0;
    border-width: 0 2px 0 0;
  }
  .pull-quote--right {
    float: right;
    margin-left: 24px;
  }
}


.content-box {
  padding: 24px;
  border: 2px solid #5452a3;
  background: #fff;
}
.content-box:not(:last-child) {
  margin-bottom: 24px;
}
.content-box h1,
.content-box h2,
.content-box h3,
.content-box h4,
.content-box h5,
.content-box h6 {
  color: #6244bb;
}
.content-box--highlight {
  border-color: #79a338;
}
.content-box--highlight h1,
.content-box--highlight h2,
.content-box--highlight h3,
.content-box--highlight h4,
.content-box--highlight h5,
.content-box--highlight h6 {
  color: #8cc63f;
}
.content-box--action {
  border-color: #eca42c;
}
.content-box--action h1,
.content-box--action h2,
.content-box--action h3,
.content-box--action h4,
.content-box--action h5,
.content-box--action h6 {
  color: #ffb927;
}

.truncator-expand {
  display: block;
  width: 100%;
  padding-top: 6px;
  margin-top: 12px;
  border-top: 1px dashed #d0cfd4;
  text-align: left;
  color: #8cc63f;
  font-weight: 700;
  font-size: 16px;
}
.margin + .truncator-expand {
  margin-top: -12px;
}
.margin + .truncator-expand:not(:last-child) {
  margin-bottom: 24px;
}
.item-list + .truncator-expand,
.margin-large + .truncator-expand {
  margin-top: -36px;
}
.item-list + .truncator-expand:not(:last-child),
.margin-large + .truncator-expand:not(:last-child) {
  margin-bottom: 48px;
}

.margin-top {
  margin-top: 120px;
}

.color-spec {
  overflow: hidden;
  border: 1px solid #d0cfd4;
}
.color-spec__swatch {
  height: 0;
  padding-bottom: 100%;
}
.color-spec__text {
  padding: 24px 18px;
  font-size: 16px;
}
.color-spec__title {
  font-size: 20px;
  margin-bottom: 12px;
}
.color-spec__text p:not(:last-child) {
  margin-bottom: 12px;
}
.color-spec__role {
  font-style: italic;
  opacity: 0.65;
}

.js .toggle-target:not(.is-active) {
  display: none;
}

.js .rd-modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 48px 24px;
  z-index: -1;
  overflow-y: auto;
  overscroll-behavior: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  visibility: hidden;
  opacity: 0;
}
.js .rd-modal::-webkit-scrollbar {
  display: none;
}
.js .rd-modal.is-active {
  opacity: 1;
  z-index: 999;
  visibility: visible;
  transition: all 0.2s ease-out;
}
.rd-modal__close {
  display: none;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  padding: 24px 24px 0 0;
  font-size: 25px;
  line-height: 36px;
  color: #B2B2B2;
  background: rgba(68, 68, 68, 0.9);
}
.rd-modal__close:hover,
.rd-modal__close:focus {
  color: #FDFDFD;
}
.js .rd-modal__close {
  display: flex;
}
.rd-modal__content {
  width: 100%;
  max-width: 1280px;
  max-height: calc(100vh - (2 * 24px));
  margin: 24px 0;
  padding: 24px;
  border-radius: 5px;
  border: 1px solid #F6F6F6;
  background: #ffffff;
  color: #4f4f4f;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.rd-modal__content p,
.rd-modal__content h1,
.rd-modal__content .h1,
.rd-modal__content h2,
.rd-modal__content .h2,
.rd-modal__content h3,
.rd-modal__content .h3,
.rd-modal__content h4,
.rd-modal__content .h4,
.rd-modal__content h5,
.rd-modal__content .h5,
.rd-modal__content h6,
.rd-modal__content .h6 {
  color: #4f4f4f!important;
}

.rd-modal__content--thin {
  max-width: 640px;
}
.js .rd-modal__content {
  overflow-y: auto;
  overscroll-behavior: contain;
}

@media (min-width: 768px) {
  .js .rd-modal {
    padding: 72px 48px;
  }
  .rd-modal__close {
    padding: 48px 48px 0 0;
  }
  .rd-modal__content {
    padding: 48px;
  }
  .rd-modal__content--thin {
    padding: 48px 36px;
  }
}

.screenreaders-only {
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  margin: -1px;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.group:after,
dl:after,
.side-label:after,
.page-header:after,
.interior-layout:after,
.horizontal-scroll__wrapper:after,
.item-list__item:after {
  content: "";
  display: table;
  clear: both;
}

/*! common spacing classes */

.space-t-6 { margin-top: 72px; }
.space-t-5 { margin-top: 48px; }
.space-t-4 { margin-top: 36px; }
.space-t-3 { margin-top: 24px; }
.space-t-2 { margin-top: 12px; }
.space-t-1 { margin-top: 6px; }
.space-t-0 { margin-top: 0!important; }
.pad-t-6 { padding-top: 72px; }
.pad-t-5 { padding-top: 48px; }
.pad-t-4 { padding-top: 36px; }
.pad-t-3 { padding-top: 24px; }
.pad-t-2 { padding-top: 12px; }
.pad-t-1 { padding-top: 6px; }
.pad-t-0 { padding-top: 0 !important; }
.space-r-6 { margin-right: 72px; }
.space-r-5 { margin-right: 48px; }
.space-r-4 { margin-right: 36px; }
.space-r-3 { margin-right: 24px; }
.space-r-2 { margin-right: 12px; }
.space-r-1 { margin-right: 6px; }
.space-r-0 { margin-right: 0; }
.pad-r-6 { padding-right: 72px; }
.pad-r-5 { padding-right: 48px; }
.pad-r-4 { padding-right: 36px; }
.pad-r-3 { padding-right: 24px; }
.pad-r-2 { padding-right: 12px; }
.pad-r-1 { padding-right: 6px; }
.pad-r-0 { padding-right: 0!important; }
.space-b-6 { margin-bottom: 72px; }
.space-b-5 { margin-bottom: 48px; }
.space-b-4 { margin-bottom: 36px; }
.space-b-3 { margin-bottom: 24px; }
.space-b-2 { margin-bottom: 12px; }
.space-b-1 { margin-bottom: 6px; }
.space-b-0 { margin-bottom: 0!important; }
.pad-b-6 { padding-bottom: 72px; }
.pad-b-5 { padding-bottom: 48px; }
.pad-b-4 { padding-bottom: 36px; }
.pad-b-3 { padding-bottom: 24px; }
.pad-b-2 { padding-bottom: 12px; }
.pad-b-1 { padding-bottom: 6px; }
.pad-b-0 { padding-bottom: 0!important; }
.space-l-6 { margin-left: 72px; }
.space-l-5 { margin-left: 48px; }
.space-l-4 { margin-left: 36px; }
.space-l-3 { margin-left: 24px; }
.space-l-2 { margin-left: 12px; }
.space-l-1 { margin-left: 6px; }
.space-l-0 { margin-left: 0!important; }
.pad-l-6 { padding-left: 72px; }
.pad-l-5 { padding-left: 48px; }
.pad-l-4 { padding-left: 36px; }
.pad-l-3 { padding-left: 24px; }
.pad-l-2 { padding-left: 12px; }
.pad-l-1 { padding-left: 6px; }
.pad-l-0 { padding-left: 0!important; }


@media (min-width: 780px) {
  .space-t-6-m { margin-top: 72px; }
  .space-t-5-m { margin-top: 48px; }
  .space-t-4-m { margin-top: 36px; }
  .space-t-3-m { margin-top: 24px; }
  .space-t-2-m { margin-top: 12px; }
  .space-t-1-m { margin-top: 6px; }
  .space-t-0-m { margin-top: 0; }
  .pad-t-6-m { padding-top: 72px; }
  .pad-t-5-m { padding-top: 48px; }
  .pad-t-4-m { padding-top: 36px; }
  .pad-t-3-m { padding-top: 24px; }
  .pad-t-2-m { padding-top: 12px; }
  .pad-t-1-m { padding-top: 6px; }
  .pad-t-0-m { padding-top: 0; }
  .space-r-6-m { margin-right: 72px; }
  .space-r-5-m { margin-right: 48px; }
  .space-r-4-m { margin-right: 36px; }
  .space-r-3-m { margin-right: 24px; }
  .space-r-2-m { margin-right: 12px; }
  .space-r-1-m { margin-right: 6px; }
  .space-r-0-m { margin-right: 0; }
  .pad-r-6-m { padding-right: 72px; }
  .pad-r-5-m { padding-right: 48px; }
  .pad-r-4-m { padding-right: 36px; }
  .pad-r-3-m { padding-right: 24px; }
  .pad-r-2-m { padding-right: 12px; }
  .pad-r-1-m { padding-right: 6px; }
  .pad-r-0-m { padding-right: 0; }
  .space-b-6-m { margin-bottom: 72px; }
  .space-b-5-m { margin-bottom: 48px; }
  .space-b-4-m { margin-bottom: 36px; }
  .space-b-3-m { margin-bottom: 24px; }
  .space-b-2-m { margin-bottom: 12px; }
  .space-b-1-m { margin-bottom: 6px; }
  .space-b-0-m { margin-bottom: 0; }
  .pad-b-6-m { padding-bottom: 72px; }
  .pad-b-5-m { padding-bottom: 48px; }
  .pad-b-4-m { padding-bottom: 36px; }
  .pad-b-3-m { padding-bottom: 24px; }
  .pad-b-2-m { padding-bottom: 12px; }
  .pad-b-1-m { padding-bottom: 6px; }
  .pad-b-0-m { padding-bottom: 0; }
  .space-l-6-m { margin-left: 72px; }
  .space-l-5-m { margin-left: 48px; }
  .space-l-4-m { margin-left: 36px; }
  .space-l-3-m { margin-left: 24px; }
  .space-l-2-m { margin-left: 12px; }
  .space-l-1-m { margin-left: 6px; }
  .space-l-0-m { margin-left: 0; }
  .pad-l-6-m { padding-left: 72px; }
  .pad-l-5-m { padding-left: 48px; }
  .pad-l-4-m { padding-left: 36px; }
  .pad-l-3-m { padding-left: 24px; }
  .pad-l-2-m { padding-left: 12px; }
  .pad-l-1-m { padding-left: 6px; }
  .pad-l-0-m { padding-left: 0; }
}


/*! ---------- =grids ---------- */

.grid {
  display: block;
  padding: 0;
  margin: 0 -24px 0 0;
  letter-spacing: -0.31em;
  text-rendering: optimizespeed;
  text-align: center;
  list-style: none;
}
.grid.align-left {
  text-align: left;
}
.grid.align-right {
  text-align: right;
}
.grid.no-margin {
  margin-bottom: -24px;
}
.grid--compact {
  margin-right: -12px;
}
.grid--compact.no-margin {
  margin-bottom: -12px;
}
.grid__unit {
  display: inline-block;
  width: 100%;
  padding: 0 24px 24px 0;
  margin: 0;
  vertical-align: top;
  letter-spacing: normal;
  text-rendering: auto;
  text-align: left;
}
.grid--compact > .grid__unit {
  padding: 0 12px 12px 0;
}
.grid__unit--1-2 { width: 50%; }
.grid__unit--1-3 { width: 33.33%; }
.grid__unit--2-3 { width: 66.66%; }
.grid__unit--1-4 { width: 25%; }
.grid__unit--3-4 { width: 75%; }
.grid__unit--1-5 { width: 20%; }
.grid__unit--2-5 { width: 40%; }
.grid__unit--3-5 { width: 60%; }
.grid__unit--4-5 { width: 80%; }
.grid__unit--1-6 { width: 16.66%; }
.grid__unit--5-6 { width: 83.3%; }
.grid__unit--1-8 { width: 12.5%; }
.grid__unit--3-8 { width: 37.5%; }
.grid__unit--5-8 { width: 62.5%; }
.grid__unit--7-8 { width: 87.5%; }
.grid__unit--1-9 { width: 11.11%; }
.grid__unit--2-9 { width: 22.22%; }
.grid__unit--4-9 { width: 44.44%; }
.grid__unit--5-9 { width: 55.55%; }
.grid__unit--7-9 { width: 77.77%; }
.grid__unit--8-9 { width: 88.88%; }
.grid__unit--1-12 { width: 8.33%; }
.grid__unit--5-12 { width: 41.65%; }
.grid__unit--7-12 { width: 58.31%; }
.grid__unit--11-12 { width: 91.63%; }

@media (min-width: 480px) {
  .grid__unit--1-1-s { width: 100%; }
  .grid__unit--1-2-s { width: 50%; }
  .grid__unit--1-3-s { width: 33.33%; }
  .grid__unit--2-3-s { width: 66.66%; }
  .grid__unit--1-4-s { width: 25%; }
  .grid__unit--3-4-s { width: 75%; }
  .grid__unit--1-5-s { width: 20%; }
  .grid__unit--2-5-s { width: 40%; }
  .grid__unit--3-5-s { width: 60%; }
  .grid__unit--4-5-s { width: 80%; }
  .grid__unit--1-6-s { width: 16.66%; }
  .grid__unit--5-6-s { width: 83.3%; }
  .grid__unit--1-8-s { width: 12.5%; }
  .grid__unit--3-8-s { width: 37.5%; }
  .grid__unit--5-8-s { width: 62.5%; }
  .grid__unit--7-8-s { width: 87.5%; }
  .grid__unit--1-9-s { width: 11.11%; }
  .grid__unit--2-9-s { width: 22.22%; }
  .grid__unit--4-9-s { width: 44.44%; }
  .grid__unit--5-9-s { width: 55.55%; }
  .grid__unit--7-9-s { width: 77.77%; }
  .grid__unit--8-9-s { width: 88.88%; }
  .grid__unit--1-12-s { width: 8.33%; }
  .grid__unit--5-12-s { width: 41.65%; }
  .grid__unit--7-12-s { width: 58.31%; }
  .grid__unit--11-12-s { width: 91.63%; }
}

@media (min-width: 780px) {
  .grid {
    margin-right: -48px;
  }
  .grid.no-margin {
    margin-bottom: -48px;
  }
  .grid--compact {
    margin-right: -24px;
  }
  .grid--compact.no-margin {
    margin-bottom: -24px;
  }
  .grid__unit {
    padding: 0 48px 48px 0;
  }
  .grid--compact > .grid__unit {
    padding: 0 24px 24px 0;
  }
  .grid__unit--1-1-m { width: 100%; }
  .grid__unit--1-2-m { width: 50%; }
  .grid__unit--1-3-m { width: 33.33%; }
  .grid__unit--2-3-m { width: 66.66%; }
  .grid__unit--1-4-m { width: 25%; }
  .grid__unit--3-4-m { width: 75%; }
  .grid__unit--1-5-m { width: 20%; }
  .grid__unit--2-5-m { width: 40%; }
  .grid__unit--3-5-m { width: 60%; }
  .grid__unit--4-5-m { width: 80%; }
  .grid__unit--1-6-m { width: 16.66%; }
  .grid__unit--5-6-m { width: 83.3%; }
  .grid__unit--1-8-m { width: 12.5%; }
  .grid__unit--3-8-m { width: 37.5%; }
  .grid__unit--5-8-m { width: 62.5%; }
  .grid__unit--7-8-m { width: 87.5%; }
  .grid__unit--1-9-m { width: 11.11%; }
  .grid__unit--2-9-m { width: 22.22%; }
  .grid__unit--4-9-m { width: 44.44%; }
  .grid__unit--5-9-m { width: 55.55%; }
  .grid__unit--7-9-m { width: 77.77%; }
  .grid__unit--8-9-m { width: 88.88%; }
  .grid__unit--1-12-m { width: 8.33%; }
  .grid__unit--5-12-m { width: 41.65%; }
  .grid__unit--7-12-m { width: 58.31%; }
  .grid__unit--11-12-m { width: 91.63%; }
}

@media (min-width: 1280px) {
  .grid__unit--1-1-l { width: 100%; }
  .grid__unit--1-2-l { width: 50%; }
  .grid__unit--1-3-l { width: 33.33%; }
  .grid__unit--2-3-l { width: 66.66%; }
  .grid__unit--1-4-l { width: 25%; }
  .grid__unit--3-4-l { width: 75%; }
  .grid__unit--1-5-l { width: 20%; }
  .grid__unit--2-5-l { width: 40%; }
  .grid__unit--3-5-l { width: 60%; }
  .grid__unit--4-5-l { width: 80%; }
  .grid__unit--1-6-l { width: 16.66%; }
  .grid__unit--5-6-l { width: 83.3%; }
  .grid__unit--1-8-l { width: 12.5%; }
  .grid__unit--3-8-l { width: 37.5%; }
  .grid__unit--5-8-l { width: 62.5%; }
  .grid__unit--7-8-l { width: 87.5%; }
  .grid__unit--1-9-l { width: 11.11%; }
  .grid__unit--2-9-l { width: 22.22%; }
  .grid__unit--4-9-l { width: 44.44%; }
  .grid__unit--5-9-l { width: 55.55%; }
  .grid__unit--7-9-l { width: 77.77%; }
  .grid__unit--8-9-l { width: 88.88%; }
  .grid__unit--1-12-l { width: 8.33%; }
  .grid__unit--5-12-l { width: 41.65%; }
  .grid__unit--7-12-l { width: 58.31%; }
  .grid__unit--11-12-l { width: 91.63%; }
}

@media (min-width: 1600px) {
  .grid__unit--1-1-w { width: 100%; }
  .grid__unit--1-2-w { width: 50%; }
  .grid__unit--1-3-w { width: 33.33%; }
  .grid__unit--2-3-w { width: 66.66%; }
  .grid__unit--1-4-w { width: 25%; }
  .grid__unit--3-4-w { width: 75%; }
  .grid__unit--1-5-w { width: 20%; }
  .grid__unit--2-5-w { width: 40%; }
  .grid__unit--3-5-w { width: 60%; }
  .grid__unit--4-5-w { width: 80%; }
  .grid__unit--1-6-w { width: 16.66%; }
  .grid__unit--5-6-w { width: 83.3%; }
  .grid__unit--1-8-w { width: 12.5%; }
  .grid__unit--3-8-w { width: 37.5%; }
  .grid__unit--5-8-w { width: 62.5%; }
  .grid__unit--7-8-w { width: 87.5%; }
  .grid__unit--1-9-w { width: 11.11%; }
  .grid__unit--2-9-w { width: 22.22%; }
  .grid__unit--4-9-w { width: 44.44%; }
  .grid__unit--5-9-w { width: 55.55%; }
  .grid__unit--7-9-w { width: 77.77%; }
  .grid__unit--8-9-w { width: 88.88%; }
  .grid__unit--1-12-w { width: 8.33%; }
  .grid__unit--5-12-w { width: 41.65%; }
  .grid__unit--7-12-w { width: 58.31%; }
  .grid__unit--11-12-w { width: 91.63%; }
}


/*! ---------- =forms ---------- */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
  display: block;
  width: 100%;
  padding: 9px 12px;
  margin: 0;
  border: 1px solid #e7e7ec;
  color: #7f7f7f;
  color: rgba(127, 127, 127, 0.8);
  font: 16px/24px "Open Sans", Helvetica, Arial, sans-serif;
  transition: color 0.15s ease-out, border-color 0.15s ease-out, background-color 0.15s ease-out, opacity 0.15s ease-out;
}
input[type="text"]:not(:last-child),
input[type="email"]:not(:last-child),
input[type="password"]:not(:last-child),
input[type="number"]:not(:last-child),
input[type="tel"]:not(:last-child),
textarea:not(:last-child),
select:not(:last-child) {
  margin-bottom: 24px;
}
input[type="text"]:required,
input[type="email"]:required,
input[type="password"]:required,
input[type="number"]:required,
input[type="tel"]:required,
textarea:required,
select:required {
  border-color: #d5d4e6;
}
input[type="text"].input-validation-error,
input[type="email"].input-validation-error,
input[type="password"].input-validation-error,
input[type="number"].input-validation-error,
input[type="tel"].input-validation-error,
textarea.input-validation-error,
select.input-validation-error {
  border-color: #941;
  color: #941;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: #6244bb;
  color: #7f7f7f;
}
textarea {
  padding: 12px;
  min-height: 96px;
}
textarea.textarea-large {
  min-height: 240px;
}
input[type="radio"],
input[type="checkbox"] {
  display: inline-block;
  position: relative;
  top: -0.1em;
}
label + input[type="radio"],
label + input[type="checkbox"] {
  margin-left: 24px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #4f4f4f;
  opacity: 0.9;
  transition: color 0.15s ease-out, opacity 0.15s ease-out;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
}

label.required {
  color: #5452a3;
}
label.required::after {
  content: '*';
  font-weight: 400;
}
label.input-validation-error {
  color: #941;
}
label.is-selected {
  color: #79a338;
}
label.is-focused {
  color: #6244bb;
  opacity: 1;
}

.side-label {
  margin: 0;
}
.side-label:not(:last-child) {
  margin-bottom: 24px;
}

@media (min-width: 480px) {
  .side-label {
    padding-left: 168px;
  }
  .side-label label {
    width: 168px;
    float: left;
    margin-left: -168px;
    padding: 6px 1em 0 0;
  }
}


.field-validation-error {
  display: block;
  margin-bottom: 24px;
  font-size: 16px;
  color: #941;
}
input + .field-validation-error,
select + .field-validation-error,
textarea + .field-validation-error {
  margin-top: -18px;
}


/*! ---------- =body ---------- */

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
  background: #fff;
}

.content {
  padding: 90px 24px 0;
  overflow-x: hidden;
}

.page-bounds,
.bg-section__content {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.reading-width {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.form-width {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}


@media (min-width: 780px) {
  .content {
    padding: 216px 72px 0;
  }
}

@media (min-width: 1280px) {
  .content {
    padding-top: 168px;
  }
}


/*! ---------- =header common + mobile ---------- */

.page-header {
  padding: 0 24px;
  border-bottom: 1px solid #f5f5f7;
  background: #fff;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
}
.page-header .page-bounds,
.page-header .bg-section__content {
  position: relative;
}
.page-header__toggle {
  display: none;
}

@media (max-width: 779px) {
  .page-header {
    width: 100%;
  }
  .page-header__toggle {
    position: absolute;
    right: -24px;
    top: 0;
    padding: 21px 24px;
    color: #7f7f7f;
    font-size: 16px;
  }
  .page-header__toggle.mobile-menu-is-open {
    color: #91cb66;
  }
  .js .page-header__toggle {
    display: block;
  }
  .page-header__toggle .toggle-indicator {
    margin-left: 6px;
    margin-top: -2px;
  }
  .page-header__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: stretch;
    align-items: stretch;
    clear: both;
    padding-top: 12px;
    margin-left: -24px;
    margin-right: -24px;
  }
}

@media (min-width: 780px) {
  .page-header {
    padding-left: 72px;
    padding-right: 72px;
  }
}


@media (max-width: 779px) {
  .header-search {
    -ms-flex-order: 1;
    order: 1;
  }

  .header-nav {
    -ms-flex-order: 2;
    order: 2;
  }

  .header-utility {
    -ms-flex-order: 3;
    order: 3;
  }
}

/*! slide-right / offscreen mobile menu */


@media (max-width: 779px) {
  .page-header__content {
    display: none;
    width: 80%;
    width: calc(100% - 72px);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    margin: 0;
    overflow: auto;
    background: #fff;
    transition: all 0.15s ease-out;
  }

  @supports (transform: translateX(-100%)) {
    .page-header__content {
      display: -ms-flexbox;
      display: flex;
      -ms-transform: translateX(-100%);
      transform: translateX(-100%);
      opacity: 0;
      visibility: hidden;
    }
  }

  .page-header__content.mobile-menu-is-open {
    display: block;
    display: -ms-flexbox;
    display: flex;
  }

  @supports (transform: translateX(-100%)) {
    .page-header__content.mobile-menu-is-open {
      -ms-transform: translateX(0);
      transform: translateX(0);
      box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15), 1px 0 2px rgba(0, 0, 0, 0.2);
      opacity: 1;
      visibility: visible;
    }
  }
}

.page-header__toggle.mobile-menu-is-open {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20%;
  width: calc(0% + 72px);
  font-size: 0.01px;
  color: transparent;
  background: rgba(50, 47, 59, 0.7);
}
.page-header__toggle.mobile-menu-is-open .toggle-indicator {
  position: absolute;
  top: 24px;
  left: 50%;
  margin: -2px 0 0;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}


/*! horizontal menu */

ul.horizontal-nav {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
 /*flex-wrap: nowrap;*/
  justify-content: space-around;
  list-style: none;
  margin-left: 0;
  text-align: center;
}
ul.horizontal-nav li::before {
  display: none !important;
}
ul.horizontal-nav li {
  display: inline-block;
  flex: 1 0 auto;
  font-size: 20px;
  font-weight: 700;
}
ul.horizontal-nav li a {
  color: #4f4f4f;
}
ul.horizontal-nav li:hover a,
ul.horizontal-nav li:focus a {
  color: #6244bb;
}

@media (max-width: 779px) {
  ul.horizontal-nav {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  ul.horizontal-nav li {
    display: block;
  }
}



/*! ---------- =header components ---------- */

.header-logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.header-logo__link-1,
.header-logo__link-2,
.header-logo__divider {
  display: inline-block;
  vertical-align: middle;
}
.header-logo__link-1,
.header-logo__link-2 {
  padding: 12px 0;
}
.header-logo__divider {
  width: 1px;
  min-height: 42px;
  background: #d0cfd4;
  margin: 12px;
}
.header-logo img {
  display: block;
  max-width: 100%;
  max-height: 42px;
  margin: 0;
}

@media (min-width: 780px) {
  .header-logo__link-1,
  .header-logo__link-2 {
    padding: 24px 0 0;
  }
  .header-logo__divider {
    margin-top: 24px;
    margin-bottom: 0;
  }
  .header-logo img {
    max-height: 48px;
  }
}

@media (min-width: 1280px) {
  .header-logo__link-1,
  .header-logo__link-2 {
    padding: 24px 0;
  }
  .header-logo__divider {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}


.toggle-indicator {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  position: relative;
}
.toggle-indicator__piece {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  transition: opacity 0.2s ease-out 0.4s, margin 0.2s ease-out 0.4s, transform 0.25s ease-out;
}
.toggle-indicator__piece::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  transition: background 0.2s ease-out;
}
.page-header .toggle-indicator__piece::before {
  background: #7c7a82;
}
.toggle-indicator__piece--1 {
  margin-top: -7px;
}
.toggle-indicator__piece--3 {
  margin-top: 5px;
}
.is-active .toggle-indicator__piece,
.mobile-menu-is-open .page-header .toggle-indicator__piece {
  transition: opacity 0.2s ease-out, margin 0.2s ease-out, transform 0.25s ease-out 0.3s;
}
.is-active .toggle-indicator__piece::before,
.mobile-menu-is-open .page-header .toggle-indicator__piece::before {
  background: #8cc63f;
}
.is-active .toggle-indicator__piece--2,
.mobile-menu-is-open .page-header .toggle-indicator__piece--2 {
  opacity: 0;
}
.is-active .toggle-indicator__piece--1,
.is-active .toggle-indicator__piece--3,
.mobile-menu-is-open .page-header .toggle-indicator__piece--1,
.mobile-menu-is-open .page-header .toggle-indicator__piece--3 {
  margin-top: -1px;
}
.is-active .toggle-indicator__piece--1,
.mobile-menu-is-open .page-header .toggle-indicator__piece--1 {
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.is-active .toggle-indicator__piece--3,
.mobile-menu-is-open .page-header .toggle-indicator__piece--3 {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mobile-menu-is-open .page-header .toggle-indicator__piece::before {
  background: #fff;
}

.header-utility__list {
  list-style: none;
  margin: 0;
}
.header-utility__item {
  display: inline-block;
  vertical-align: middle;
}
.header-utility__item + .header-utility__item {
  margin-left: 6px;
}
.header-utility__social {
  display: block;
  width: 36px;
  height: 36px;
  border: 1px solid #322f3b;
  border-radius: 50%;
  text-align: center;
  color: #54525c;
  position: relative;
  -ms-transform: translateY(0);
  transform: translateY(0);
  transition: color 0.15s ease-out,
              background-color 0.15s ease-out,
              border 0.15s ease-out,
              transform 0.15s ease-out,
              margin 0.15s ease-out,
              box-shadow 0.15s ease-out !important;
}
.header-utility__social .fab {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.header-utility__social:hover,
.header-utility__social:focus {
  color: #fff;
  background: #91cb66;
  border-color: transparent;
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1.5px #fff, 0 3px 2px rgba(0, 0, 0, 0.1);
}
.header-utility__social--tw {
  line-height: 35px;
}
.header-utility__social--tw:hover,
.header-utility__social--tw:focus {
  background: #00a5e9;
}
.header-utility__social--vim:hover,
.header-utility__social--vim:focus {
  background: #00b2e6;
}
.header-utility__social--li:hover,
.header-utility__social--li:focus {
  background: #1f63b2;
}
.header-utility__social--fb:hover,
.header-utility__social--fb:focus {
  background: #395699;
}
.header-utility__social:active {
  -ms-transform: translateY(0);
  transform: translateY(0);
  box-shadow: none;
  transition: none;
}

@media (max-width: 779px) {
  .header-utility {
    padding: 12px 24px;
    text-align: center;
    font-size: 16px;
  }
}

@media (min-width: 780px) {
  .header-utility__list {
    display: inline-block;
    vertical-align: middle;
  }
}


.header-nav ul {
  list-style: none;
  margin: 0;
}
.header-nav li {
  position: relative;
}
.header-nav a {
  display: block;
}
.header-nav__main-link {
  font-weight: 600;
  color: #4f4f4f;
}
.header-nav__main-link--highlight {
  font-size: 16px;
  color: #fff !important;
}
.header-nav__main li a {
  font-size: 16px;
  color: #7f7f7f;
}
.header-nav__toggle {
  display: none;
}

@media (max-width: 779px) {
  .header-nav a {
    padding: 12px 72px 12px 36px;
  }
  .header-nav li li a {
    padding-left: 48px;
  }
  .header-nav__main-link {
    color: #6244bb;
  }
  .header-nav__main-link--highlight {
    margin: 24px 24px;
    padding: 12px 24px !important;
  }
  .header-nav__main li a {
    color: #7f7f7f;
  }
  .js .header-nav li ul {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s cubic-bezier(0, 0.5, 0, 1);
  }
  .js .header-nav li ul.is-active {
    max-height: 100em;
    transition: max-height 0.4s cubic-bezier(0.7, 0, 0.1, 1);
  }
  .header-nav__toggle {
    width: 72px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
  }
  .js .header-nav__toggle {
    display: block;
  }
  .header-nav__toggle::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-width: 0;
    border-top-color: #d0cfd4;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    top: 50%;
    margin-top: -5px;
    -ms-transform: scaleX(0.6);
    transform: scaleX(0.6);
    transition: transform 0.2s ease-out;
  }
  .header-nav__toggle.is-active::before {
    border-top-color: #6244bb;
    transform: scaleX(0.6) rotateX(180deg);
  }
}

@media (min-width: 780px) {
  .header-nav__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    text-align: center;
  }
  .header-nav__main {
    display: inline-block;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    position: static;
  }
  .header-nav__main-link {
    padding: 24px 0;
    position: relative;
  }
  .header-nav__main-link:hover,
  .header-nav__main-link:focus {
    color: #8cc63f;
  }
  .header-nav__main-link--highlight {
    padding: 12px !important;
    margin: 12px 0 0 12px !important;
  }
  .header-nav .is-current > a {
    color: #eca42c;
  }
}

/*! single-row dropdowns */

@media (min-width: 780px) {
  .header-nav__main-link::before,
  .header-nav__main-link::after {
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: -11px;
    left: 50%;
    margin-left: -10px;
    background: #fff;
    -ms-transform: scaleY(0.33) rotate(-45deg);
    transform: scaleY(0.33) rotate(-45deg);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: opacity 0.06s ease-out, visibility 0s linear 0.15s, z-index 0s linear 0.15s;
  }
  .header-nav__main-link::before {
    width: 22px;
    height: 22px;
    margin-left: -11px;
    background: #d0cfd4;
  }
  .header-nav__main.has-dropdown .header-nav__main-link::before,
  .header-nav__main.has-dropdown .header-nav__main-link::after {
    content: '';
    display: block;
  }
  .header-nav__main {
    position: relative;
  }
  .header-nav__main > ul {
    position: absolute;
    min-width: 15em;
    left: 50%;
    margin-left: -7.5em;
    top: 100%;
    padding: 24px 0;
    text-align: left;
    background: #fff;
    border: 1px solid #d0cfd4;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: opacity 0.1s ease-out, visibility 0s linear 0.15s, z-index 0s linear 0.15s;
  }
  .header-nav__main:first-child > ul {
    left: 0;
    margin-left: 0;
  }
  .header-nav__main:last-child > ul {
    left: auto;
    margin-left: 0;
    right: 0;
  }
  .header-nav__main > ul > li > a {
    padding: 12px 24px;
    font-size: 18px;
    color: #6244bb;
  }
  .header-nav__main > ul > li > a:hover,
  .header-nav__main > ul > li > a:focus {
    color: #6244bb;
    background: rgba(98, 68, 187, 0.1);
  }
  .header-nav__main > ul > li > ul {
    background: #fff;
    border-left: 1px solid #d0cfd4;
    display: block;
    left: 100%;
    min-width: 15em;
    opacity: 0;
    padding-bottom: 12px;
    padding-top: 12px;
    position: absolute;
    top: 0;
    transition: opacity 0.15s ease-out;
    z-index: 1;
  }
  .header-nav__main > ul > li:hover > ul,
  .header-nav__main > ul > li:focus > ul {
    opacity: 1;
  }
  .header-nav__main > ul > li > ul > li > a {
    padding: 12px;
  }
  .header-nav__main > ul > li > ul > li > a:hover {
    background: rgba(98, 68, 187, 0.1);
  }
  .header-nav__main:hover > a {
    color: #6244bb;
  }
  .header-nav__main:hover > a::before,
  .header-nav__main:hover > a::after {
    opacity: 1;
    visibility: visible;
    z-index: 101;
    transition: opacity 0.15s ease-out 0.275s, z-index 0s linear 0.275s, visibility 0s linear 0.275s;
  }
  .header-nav__main:hover > ul {
    opacity: 1;
    z-index: 100;
    visibility: visible;
    transition: opacity 0.15s ease-out 0.2s, z-index 0s linear 0.2s, visibility 0s linear 0.2s;
  }
}

/*! navigation cascade animation */

@media (min-width: 780px) {
  .header-nav > ul > li > ul > li {
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  .header-nav > ul > li:hover > ul > li {
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(1) {
    transition-delay: 0.235s, 0.235s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(2) {
    transition-delay: 0.27s, 0.27s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(3) {
    transition-delay: 0.305s, 0.305s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(4) {
    transition-delay: 0.34s, 0.34s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(5) {
    transition-delay: 0.375s, 0.375s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(6) {
    transition-delay: 0.41s, 0.41s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(7) {
    transition-delay: 0.445s, 0.445s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(8) {
    transition-delay: 0.48s, 0.48s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(9) {
    transition-delay: 0.515s, 0.515s;
  }
  .header-nav > ul > li:hover > ul > li:nth-child(10) {
    transition-delay: 0.55s, 0.55s;
  }
}


/*! ---------- =header layout ---------- */

.header-logo {
  float: left;
}

@media (min-width: 780px) {
  .page-header {
    padding-top: 0;
  }

  .header-logo {
    margin-right: 24px;
  }
}


@media (min-width: 780px) and (max-width: 1279px) {
  .header-utility {
    position: absolute;
    right: 0;
    top: 24px;
    overflow: hidden;
  }

  .header-nav {
    clear: both;
  }
  .header-nav__list {
    margin-left: -2vw !important;
  }

  .page-header {
    transition: transform 0.2s ease;
  }
  body.is-scrolled .page-header {
    -ms-transform: translateY(-72px);
    transform: translateY(-72px);
  }
}

@media (min-width: 1280px) {
  .page-header {
    padding-top: 0;
  }
  .page-header > .page-bounds,
  .page-header > .bg-section__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 96px;
  }
  .page-header__content {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .header-utility {
    float: right;
    margin-left: 48px;
  }
  .header-utility__social {
    margin-top: 30px;
  }

  .header-nav__list {
    max-width: 960px;
    margin: 0 auto !important;
  }
  .header-nav__main-link {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .header-nav__main-link--highlight {
    margin-top: 24px !important;
  }/*! sticky nav */

  .page-header > .page-bounds,
  .page-header > .bg-section__content {
    transition: height 0.2s ease;
  }

  .header-logo__link-1,
  .header-logo__link-2 {
    transition: padding 0.2s ease, height 0.2s ease;
  }
  .header-logo__divider {
    transition: margin 0.2s ease;
  }
  .header-logo img {
    transition: max-height 0.2s ease;
  }

  .header-nav__main-link {
    transition: padding 0.2s ease, margin 0.2s ease, color 0.15s ease-out, background 0.15s ease-out;
  }

  .header-utility__social {
    transition: margin 0.2s ease;
  }

  body.is-scrolled .page-header > .page-bounds,
  body.is-scrolled .page-header > .bg-section__content {
    height: 60px;
  }
  body.is-scrolled .header-logo__link-1,
  body.is-scrolled .header-logo__link-2 {
    height: 60px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  body.is-scrolled .header-logo__divider {
    margin-top: 6px;
    margin-bottom: 6px;
  }
  body.is-scrolled .header-nav__main-link {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  body.is-scrolled .header-nav__main-link--highlight {
    margin-top: 6px !important;
  }
  body.is-scrolled .header-utility__social {
    margin-top: 12px !important;
  }
}


/*! ---------- =footer ---------- */

.page-footer {
  padding: 60px 24px;
}
.page-footer__logo {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.page-footer__logo-link,
.page-footer__logo-divider {
  display: inline-block;
  vertical-align: middle;
}
.page-footer__logo-divider {
  width: 1px;
  min-height: 42px;
  margin: 0 24px;
  background: #d0cfd4;
}
.page-footer__logo img {
  display: block;
  max-width: 100%;
  max-height: 48px;
  margin: 0;
}
.page-footer__utility {
  list-style: none;
  margin: 0;
}
.page-footer__utility-item + .page-footer__utility-item {
  margin-top: 12px;
}
.page-footer__utility-link {
  color: #8cc63f;
  font-weight: 600;
}
.page-footer__utility-link:hover,
.page-footer__utility-link:focus {
  color: #6244bb;
}

@media (max-width: 1279px) {
  .page-footer {
    text-align: center;
  }
  .page-footer__contact,
  .page-footer__utility {
    margin-top: 48px;
  }
  .page-footer__contact--2 {
    margin-top: 12px;
  }
}

@media (min-width: 780px) {
  .page-footer__logo img {
    max-height: 60px;
  }
}

@media (min-width: 1280px) {
  .page-footer {
    padding: 48px 72px;
  }
  .page-footer .page-bounds,
  .page-footer .bg-section__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
  }
}


/* ---------- =interior common ---------- */

.page-title {
  color: #5452a3;
}
.page-title + .breadcrumbs {
  margin-top: -24px;
}


/* ---------- =interior components ---------- */

.breadcrumbs {
  font-size: 16px;
  margin-bottom: 24px;
}
.breadcrumbs a {
  color: #7f7f7f;
  opacity: 0.9;
}
.breadcrumbs a:hover,
.breadcrumbs a:focus {
  color: #8cc63f;
  opacity: 1;
}
.breadcrumbs span {
  display: inline-block;
  margin: 0 0.3em;
  opacity: 0.4;
}
.share-buttons {
  /*border-top: 1px solid rgba(255,2555,255,0.05);*/
  margin-top: 12px;
  /*padding-top: 12px;*/
}
.share-buttons__title {
  display: inline-block;
  font-size: 15px;
  margin-right: 12px;
}
.share-buttons__button {
  display: inline-block;
  font-size: 20px;
  margin-right: 6px;
}
.detail-blog__author {
  display: block;
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 36px;
}

  .blog-detail {
    border-bottom: 1px solid #eee;
   /* border-top: 1px solid #eee;*/
    margin-bottom: 12px;
    /*margin-top: 12px;*/
    padding-bottom: 12px;
    /*padding-top: 6px;*/
  }

  .blog-detail .share-buttons, 
  .blog-detail .blog-detail__date {
    display: inline-block;
    margin-bottom: 0;
  }
  .blog-detail .blog-detail__date {
    border-right: 1px solid #eee;
    font-size:  80%;
    margin-right: 12px;
    opacity: 0.8;
    padding-right: 24px;
  }

  .blog-detail .share-buttons__title {
    font-size: 80%;
    opacity: 0.8;
  }

  .item-list--author .item-list__thumbnail {
    border-radius: 50%;
    width: 50px;
  }

  .item-list--author {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
  }

  .item-list--author .item-list__title {
    color: #7f7f7f;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 18px;
  }

  .item-list--author .item-list__title:hover,
  .item-list--author .item-list__title:focus {
    color: #7f7f7f;
  }

  .item-list--author .item-list__job {
    opacity: 0.8;
    font-size: 80%;
  }

.in-this-section__toggle {
  color: #4f4f4f;
  font-family: "Quicksand", "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
}
.in-this-section a {
  color: #6244bb;
  display: block;
  padding: 6px 0;
}
.in-this-section ul {
  list-style: none;
  margin: 0;
}
.in-this-section ul a:hover,
.in-this-section ul a:focus {
  color: #8cc63f;
}
.in-this-section ul ul {
  display: none;
  padding-left: 24px;
}
.in-this-section ul li::before {
  display: none !important;
}
.in-this-section ul ul a {
  font-size: 16px;
}
.in-this-section .is-current > ul {
  display: block;
}
.in-this-section .is-current > a {
  color: #eca42c;
}

@media (max-width: 1279px) {
  .in-this-section__toggle {
    display: block;
    text-align: left;
    width: 100%;
  }
  .no-js .in-this-section__toggle {
    display: none;
  }
  .js .in-this-section > ul {
    display: none;
  }
  .js .in-this-section > ul.is-active {
    display: block;
  }
}

@media (min-width: 1280px) {
  .in-this-section__toggle {
    cursor: default;
    font-size: 28px;
    line-height: 48px;
    padding-bottom: 0;
    text-align: left;
    width: 100%;
  }
  .in-this-section__toggle .toggle-indicator {
    display: none;
  }
  /*.interior-layout .in-this-section {
    margin-top: -6px;
  }*/
}

/* ---------- =interior layout ---------- */

.title-block {
  margin: -24px -24px 24px;
  padding: 36px 24px;
  background: #322f3b;
  position: relative;
  overflow: hidden;
}
.title-block::before {
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: #5452a3;
  z-index: 2;
  opacity: 0.7;
}
.title-block--no-overlay::before {
  display: none;
}
.title-block__background img {
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.title-block__content,
.title-block__content a,
.title-block .breadcrumbs a,
.title-block .page-title {
  color: #fff;
}
.title-block__content {
  position: relative;
  text-shadow: 0 0 3px rgba(84, 82, 163, 0.5);
  z-index: 3;
}
.title-block__content a {
  font-weight: 700;
}
.title-block .breadcrumbs a {
  font-weight: 400;
}
.title-block__content a:hover,
.title-block__content a:focus,
.title-block .breadcrumbs a:hover,
.title-block .breadcrumbs a:focus {
  color: #fff;
  text-decoration: underline;
}
.title-block .page-title {
  text-shadow: 0 0 16px rgba(84, 82, 163, 0.4), 0 0 3px rgba(84, 82, 163, 0.3);
}
.title-block .breadcrumbs {
  margin-bottom: 0;
}

@media (min-width: 780px) {
  .title-block {
    margin: -72px -72px 48px;
    padding: 72px 72px;
  }
  .title-block::before {
    background: linear-gradient(to right, rgba(84, 82, 163, 0.97) 10%, rgba(84, 82, 163, 0.6));
    opacity: 1;
  }
  .title-block--tall {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

@media (min-width: 1280px) {
  .title-block {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .title-block--short {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .title-block--tall {
    padding-top: 144px;
    padding-bottom: 144px;
  }
}


.interior-layout__nav,
.interior-layout__main {
  margin-bottom: 24px;
}

@media (min-width: 1280px) {
  .interior-layout__nav {
    margin-bottom: 0;
  }
  .interior-layout__nav > *:last-child {
    margin-bottom: 48px;
  }
  .interior-layout__title {
    margin-bottom: 24px;
  }
  .interior-layout__main {
    margin-bottom: 48px;
  }
  .interior-layout__nav,
  .interior-layout__aside {
    width: 30%;
    float: right;
    clear: right;
    overflow: hidden;
    position: relative;
    z-index: 2;
  }
  .interior-layout__main {
    width: 70%;
    padding-right: 72px;
    float: left;
  }
}


/*! ---------- =about page ---------- */

.about {
  margin: -24px -24px 0;
}
.about__description {
  padding: 48px 24px;
}
.about__people {
  padding: 48px 0;
}
.about__tiles {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.about__tile {
  -ms-flex: 1 0 300px;
  flex: 1 0 300px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  background: #6244bb;
  transition: background-color 0.15s ease-out;
}
.about__tile--products,
.about__tile--partners {
  background: #8cc63f;
}
.about__tile--products:hover,
.about__tile--products:focus {
  background-color: #91cb66;
}
.about__tile--clients,
.about__tile--awards {
  background: #307fe2;
}
.about__tile--clients:hover,
.about__tile--clients:focus {
  background-color: #00a7b5;
}
.about__tile--offices {
  background: #00a7b5;
}
.about__tile--integrations,
.about__tile--events {
  background: #ffb927;
}
.about__tile--integrations:hover,
.about__tile--integrations:focus,
.about__tile--events:hover,
.about__tile--events:focus {
  background-color: #ffcd79;
}
.about__tile-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0.1;
}
.about__tile-image img {
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about__tile-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 24px 24px;
  font-family: "Quicksand", "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 24px;
  text-align: center;
  color: #fff;
  z-index: 3;
}
.about__tile-content,
.about__tile-content h1,
.about__tile-content h2,
.about__tile-content h3,
.about__tile-content h4,
.about__tile-content h5,
.about__tile-content h6,
.about__tile-content .h1,
.about__tile-content .h2,
.about__tile-content .h3,
.about__tile-content .h4,
.about__tile-content .h5,
.about__tile-content .h6,
.about__tile-content a {
  color: #fff !important;
}
.about__tile-title {
  font-weight: 700;
  margin-bottom: 12px;
}
.about__tile-title strong {
  font-size: 1.75em;
}
.about__tile-title .fa-chevron-right {
  font-size: 0.75em;
  margin-left: 0.1em;
  transition: transform 0.15s ease-out;
}
.about__tile-content:hover .about__tile-title .fa-chevron-right,
.about__tile-content:focus .about__tile-title .fa-chevron-right {
  -ms-transform: translateX(4px);
  transform: translateX(4px);
}
.about__tile-icon {
  position: relative;
}
.about__tile-icon-lines {
  display: block;
  margin: 0 auto;
  max-height: 144px;
}
.about__tile-icon-lines path,
.about__tile-icon-lines circle,
.about__tile-icon-lines rect {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
}
.about__tile.is-visible .about__tile-icon-lines path,
.about__tile.is-visible .about__tile-icon-lines circle,
.about__tile.is-visible .about__tile-icon-lines rect {
  animation: draw-icon 1.4s ease-in-out forwards;
}
.about__tile-icon-figure {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 52px;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about__tile--logo img {
  width: 400px;
}
.about__tile--offices .about__tile-icon-figure {
  top: 45%;
}
.about__tile--products .about__tile-icon-figure {
  top: 40%;
  left: 48%;
}
.about__tile--filler .about__tile-image {
  opacity: 1;
}
.about__tile--integrations .about__tile-icon-figure {
  top: 56%;
  -ms-transform: translate(-74%, -50%);
  transform: translate(-74%, -50%);
}
.about__tile--certs .about__tile-icon-figure {
  top: 39%;
}
.about__tile--clients .about__tile-icon-figure {
  text-shadow: 0 0 4px #307fe2, 0 0 4px #307fe2, 0 0 4px #307fe2, 0 0 4px #307fe2, 0 0 4px #307fe2, 0 0 4px #307fe2, 0 0 4px #307fe2;
}
.about__tile--clients .about__tile-description strong {
  font-size: 1.75em;
}
.about__tile--clients .about__tile-description strong:not(:first-child) {
  display: inline-block;
  margin-left: 24px;
}
.about__tile--events .about__tile-icon-lines {
  margin-top: 48px;
}
.about__tile--events .about__tile-icon-figure {
  top: -24px;
}
.about__tile--awards .about__tile-icon-lines {
  max-height: none;
  height: 168px;
}
.about__tile--awards .about__tile-icon-figure {
  top: 35%;
}
.about__tile--partners .about__tile-title {
  margin-bottom: 0;
}
.about__tile--wrapup img {
  width: 240px;
  margin-bottom: 24px;
}

@media (min-width: 480px) {
  .about__tile--25 {
    -ms-flex-preferred-size: 200px;
    flex-basis: 200px;
  }
  .about__tile--50 {
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .about__tile--offices .about__tile-title,
  .about__tile--offices .about__tile-description {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .about__tile--offices .about__tile-title {
    min-width: 240px;
    right: 50%;
    padding-right: 24px;
    text-align: right;
  }
  .about__tile--offices .about__tile-icon {
    width: 96px;
    margin-left: auto;
    margin-right: 0;
  }
  .about__tile--offices .about__tile-description {
    left: 50%;
    padding-left: 24px;
    text-align: left;
    white-space: nowrap;
  }
  .about__tile--staff {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .about__tile--staff .about__tile-content {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    -ms-flex-positive: 0;
    flex-grow: 0;
    text-align: left;
  }
  .about__tile--staff .about__tile-icon {
    width: 80%;
    position: absolute;
    right: 100%;
  }
  .about__tile--staff .about__tile-icon-lines {
    margin-right: 0;
    height: 144px;
  }
  .about__tile--partners {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .about__tile--partners .about__tile-content {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .about__tile--partners .about__tile-title,
  .about__tile--partners .about__tile-icon {
    width: 100%;
    position: absolute;
    right: 100%;
  }
  .about__tile--partners .about__tile-title {
    padding-left: 24px;
    padding-right: 24px;
    margin-top: -84px;
  }
  .about__tile--partners .about__tile-icon {
    margin-top: 84px;
  }
  .about__tile--partners .about__tile-icon-lines {
    max-height: 96px;
  }
  .about__tile--offices::before,
  .about__tile--certs::before,
  .about__tile--partners::before {
    content: '';
    display: block;
    width: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
  }
  .about__tile--offices::before {
    left: 0;
    background: rgba(0, 167, 181, 0.8);
  }
  .about__tile--certs::before {
    right: 0;
    background: rgba(98, 68, 187, 0.8);
  }
  .about__tile--partners::before {
    right: 0;
    background: rgba(140, 198, 63, 0.8);
  }
  .about__tile--offices .about__tile-image,
  .about__tile--certs .about__tile-image,
  .about__tile--partners .about__tile-image {
    opacity: 0.25;
  }
}

@media (min-width: 780px) {
  .about {
    margin: -48px -72px 0;
  }
  .about__description {
    padding: 96px 72px;
  }
  .about__people {
    margin: 0 72px;
  }
  .about__tile {
    min-height: 384px;
  }
  .about__tile--logo {
    min-height: 240px;
  }
  .about__tile--25 {
    -ms-flex-preferred-size: 250px;
    flex-basis: 250px;
  }
  .about__tile--50 {
    -ms-flex-preferred-size: 500px;
    flex-basis: 500px;
  }
  .about__tile-icon-lines {
    max-height: 192px;
  }
  .about__tile-icon-figure {
    font-size: 72px;
  }
  .about__tile--offices .about__tile-icon {
    width: 144px;
    right: -24px;
  }
  .about__tile--offices .about__tile-icon-lines {
    max-height: 480px;
  }
  .about__tile--products .about__tile-icon-figure {
    left: 45%;
    top: 39%;
  }
  .about__tile--awards .about__tile-icon-lines {
    max-height: none;
    height: 216px;
  }
  .about__tile--staff .about__tile-icon-lines {
    height: 168px;
  }
  .about__tile--partners .about__tile-icon-lines {
    max-height: 120px;
  }
}

@media (min-width: 1200px) {
  .about__tile--25 {
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
  }
  .about__tile--50 {
    -ms-flex-preferred-size: 600px;
    flex-basis: 600px;
  }
}


@keyframes draw-about-icon {
  to {
    stroke-dashoffset: 0;
  }
}

/*! ---------- =solutions overview pages ---------- */

.solutions-overview-boxes {
  background: #f5f5f7;
}
.solutions-overview-boxes__wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.solutions-box {
  background: #fff;
}
.solutions-box + .solutions-box {
  margin-top: 48px;
}
.solutions-box__header {
  padding: 48px 24px;
  color: #fff;
  background: #6244bb;
  position: relative;
  overflow: hidden;
}
.solutions-box--mobile .solutions-box__header {
  background: #8cc63f;
}
.solutions-box__header-bg {
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
}
.solutions-box__icon svg {
  display: block;
  max-width: 168px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}
.solutions-box__icon path,
.solutions-box__icon circle,
.solutions-box__icon rect {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
}
.solutions-box.is-visible .solutions-box__icon path,
.solutions-box.is-visible .solutions-box__icon circle,
.solutions-box.is-visible .solutions-box__icon rect {
  animation: draw-icon 1.4s ease-in-out forwards;
}
.solutions-box__heading {
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
}
.solutions-box__content {
  padding: 48px 24px;
}
.solutions-box__content-icon {
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 12px;
  margin: 36px auto 12px;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  background: #6244bb;
}
.solutions-box__content-icon:first-child {
  margin-top: 0;
}
.solutions-box__logo {
  display: block;
  margin-top: 72px;
  margin-bottom: 12px;
}
.solutions-box__logo:first-child {
  margin-top: 0;
}

@media (min-width: 780px) {
  .solutions-overview-boxes {
    margin-top: -48px;
    padding: 72px 48px;
  }

  .solutions-box__header {
    min-height: 384px;
  }
}

@media (min-width: 880px) {
  .solutions-overview-boxes__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 48px;
  }
  .solutions-box + .solutions-box {
    margin-top: 0;
  }
}


.feature-cascade {
  max-width: 1280px;
  margin: 0 auto;
}
.feature-cascade__figure {
  border: none;
  padding: 0;
}
.feature-cascade__icon {
  width: 144px;
  height: 144px;
  padding: 24px;
  background: #6244bb;
  border-radius: 50%;
  margin-bottom: 24px;
}
.feature-cascade__icon--alt {
  background: #8cc63f;
}
.feature-cascade__icon svg {
  display: block;
  margin: 0 auto;
}
.feature-cascade__icon path,
.feature-cascade__icon circle,
.feature-cascade__icon rect {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
}
.feature-cascade__icon.is-visible path,
.feature-cascade__icon.is-visible circle,
.feature-cascade__icon.is-visible rect {
  animation: draw-icon 1.4s ease-in-out forwards;
}

@media (max-width: 539px) {
  .feature-cascade__figure img {
    max-height: 30vh;
  }
  .feature-cascade__section {
    margin-bottom: 48px;
  }
}

@media (min-width: 540px) {
  .feature-cascade__section {
    display: flex;
    align-content: center;
    align-items: center;
  }
  .feature-cascade__figure {
    flex: 0 0 30%;
  }
  .feature-cascade__content {
    padding: 36px 0 36px 48px;
  }
}

@media (min-width: 960px) {
  .feature-cascade__section {
    margin: -96px 0;
  }
  .feature-cascade__section:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .feature-cascade__section:first-child {
    margin-top: 0;
  }
  .feature-cascade__section:last-child {
    margin-bottom: 0;
  }
  .feature-cascade__figure {
    flex: 0 0 40%;
  }
  .feature-cascade__content {
    padding: 144px 48px;
  }
  .feature-cascade__section:nth-child(2n+1) .feature-cascade__content {
    padding-right: 0;
  }
  .feature-cascade__section:nth-child(2n) .feature-cascade__content {
    padding-left: 0;
  }
}

/*! ---------- =resources search ---------- */
.resources-results__refine {
  margin-bottom: 48px;
  margin-top: 48px;
  padding-bottom: 36px !important;
  padding-top: 48px !important;
}
.resources-results__refine a {
  color: #FFF;
  opacity: 1;
}
.resources-results__refine input {
  background: #FFF;
  margin-bottom: 0 !important;
  padding: 12px;
}
.resources-results__refine .accordion:not(:last-child) {
  margin-bottom: 0;
}
.resources-results__refine .facets .grid__unit {
  padding-right: 0;
}
.resources-results__refine .facets {
  margin-bottom: 0;
  padding-bottom: 0;
}
.resources-results__refine .facets .grid__unit:last-child {
  padding-bottom: 0;
}
.resources-results__refine .facets select#facets,
.resources-results__refine select {
  background: url(/images/librariesprovider5/layout-elements/icon-arrow-down.png) no-repeat #3a237c;
  background-position: 96% 50%;
  border: 0;
  border-bottom: 3px solid #ffb927;
  color: #fff;
  font-size: 20px;
  padding: 7px 12px;
  -webkit-appearance: none;
}

@media (min-width: 780px) {
  .resources-results__refine .search {
    padding-right: 12px;
    padding-bottom: 24px !important;
  }
  .resources-results__refine .facets {
    padding-right: 0;
  }
  .resources-results__refine .facets h4,
  .resources-results__refine .facets select#facets,
  .resources-results__refine select {
    display: inline-block;
  }
  .resources-results__refine .facets .accordion {
    max-width: 49%;
    padding-bottom: 0;
    padding-right: 25px;
  }
  .resources-results__refine .facets .grid__unit:last-child {
    padding-right: 0;
  }
  .resources-results__refine .facets select#facets,
  .resources-results__refine select {
    margin-left: 12px;
    max-width: 60%;
    position: relative;
    top: -4px;
  }
}

@media (min-width: 1280px) {
  .resources-results__refine .search {
    padding-right: 25px;
    padding-bottom: 0 !important;
  }
  .resources-results__refine .facets .accordion {
    max-width: calc(100%/2 - 25px);
  }
}

/*! ---------- =staff scrollers ---------- */


.staff-scroller__item {
  position: relative;
}
.staff-scroller__item::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  left: 0;
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
  background: #6244bb;
  opacity: 0.5;
}
.staff-scroller__item--purple::before {
  background: #6244bb;
}
.staff-scroller__item--green::before {
  background: #8cc63f;
}
.staff-scroller__item--blue::before {
  background: #307fe2;
}
.staff-scroller__item--teal::before {
  background: #00a7b5;
}
.staff-scroller__item--orange::before {
  background: #ffb927;
}
.staff-scroller__item::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  bottom: 0;
  left: 0;
  border-radius: 0 0 6px 6px;
  pointer-events: none;
  z-index: 3;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
.staff-scroller__portrait {
  border-radius: 6px;
  -webkit-filter: saturate(0.2);
  filter: saturate(0.2);
}
.staff-scroller__content {
  position: absolute;
  left: 0;
  right: 24px;
  bottom: 0;
  padding: 0 24px 24px;
  color: #fff;
  z-index: 4;
}
.staff-scroller__name {
  font-family: "Quicksand", "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
}
.staff-scroller__quote {
  margin-top: 6px;
  font-size: 14px;
  text-indent: -8px;
}
.staff-scroller__quote::before,
.staff-scroller__quote::after {
  display: inline;
  font-family: Georgia, serif;
  font-size: 20px;
  opacity: 0.5;
}
.staff-scroller__quote::before {
  content: '\201C';
}
.staff-scroller__quote::after {
  content: '\201D';
}

@media (min-width: 1424px) {
  .staff-scroller {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}


/*! ---------- =case studies / =success stories ---------- */

.case-study__meta {
  max-width: 500px;
  margin: 0 auto 48px;
  padding: 36px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  background: #fff;
}
.case-study__meta-logo {
  display: block;
  margin-bottom: 24px;
}
.case-study__meta-logo img {
  max-height: 120px;
}
.case-study__meta-description {
  line-height: 30px;
  padding-left: 1.9em;
}
.case-study__meta-description .fas {
  color: #c0bec4;
  margin-right: 0.4em;
  margin-left: -1.9em;
}
.case-study__apps {
  margin-left: -1.9em;
  text-align: center;
}
.case-study__apps a {
  display: inline-block;
  margin: 12px;
}
.case-study__apps img {
  height: 48px;
}
.case-study__cta {
  margin-top: 24px;
}
.case-study__services {
  overflow: hidden;
  margin-bottom: 24px;
}
.case-study__service-icon {
  display: block;
  max-height: 72px;
  margin: 0 auto 12px;
}
.case-study__service-name {
  display: block;
  margin-bottom: 12px;
  text-align: center;
  color: #4f4f4f;
}
.case-study__service-description {
  margin-bottom: 24px;
  text-align: center;
}
.case-study__service-description ul {
  list-style: none;
  margin: 0;
}
.case-study__service-description li {
  margin-top: 6px;
}
.case-study__service-description img {
  max-width: 120px;
  max-height: 60px;
  margin-top: 12px;
}
.case-study__description {
  margin-bottom: 48px;
}
.case-study__main-image {
  max-height: 192px;
  position: relative;
  z-index: 2;
}
.case-study__main-image + .case-study__testimonial {
  padding-top: 144px;
  margin-top: -96px;
}
.case-study__testimonial {
  padding-bottom: 0 !important;
  margin-bottom: 24px;
}
.case-study__testimonial .testimonial__content {
  margin-bottom: 96px;
}

@media (min-width: 480px) and (max-width: 1279px) {
  .case-study__meta-logo {
    max-width: 45%;
    float: left;
    margin-right: 24px;
  }
  .case-study__meta-description {
    overflow: hidden;
  }
  .case-study__cta {
    clear: both;
  }
}

@media (min-width: 780px) {
  .case-study__services {
    margin-bottom: 0;
  }
  .case-study__service-icon {
    margin-bottom: 24px;
  }
  .case-study__service-name {
    margin-bottom: 30px;
  }
  .case-study__service-description ul {
    list-style: disc;
  }
  .case-study__main-image {
    max-height: 288px;
  }
  .case-study__main-image + .case-study__testimonial {
    padding-top: 216px;
    margin-top: -144px;
  }
}

@media (min-width: 1280px) {
  .case-study__services {
    margin-bottom: 24px;
  }
  .case-study__meta {
    width: 320px;
    float: right;
    margin: 0 0 72px 48px;
    padding-left: 48px;
    padding-right: 48px;
  }
  .case-study__main-image {
    clear: both;
    max-height: 480px;
  }
  .case-study__main-image + .case-study__testimonial {
    padding-top: 360px;
    margin-top: -240px;
  }
  .case-study__description {
    max-width: 60vw;
  }
}

@media (min-width: 1680px) {
  .case-study__description {
    max-width: 70vw;
  }
}

.case-list {
  list-style: none;
  margin: 0 0 48px !important;
}
.case-list__item ~ .case-list__item {
  margin-top: 24px;
}
.case-list__link {
  display: block;
  background: #322f3b;
  position: relative;
  overflow: hidden;
  padding: 48px 24px;
}
.case-list__link::before {
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: #5452a3;
  z-index: 1;
  opacity: 0.7;
}
.case-list__title {
  color: #fff;
  position: relative;
  z-index: 2;
}

@media (min-width: 780px) {
  .case-list__link {
    padding: 84px 72px;
  }
  .case-list__link::before {
    background: linear-gradient(to right, rgba(84, 82, 163, 0.97) 10%, rgba(84, 82, 163, 0.6));
    opacity: 1;
  }
}


/*! ---------- =array / =isometric features ---------- */

.array-feature {
  color: #fff;
  background: #6244bb url("/images/librariesprovider5/layout-elements/watermark.svg") no-repeat 150% 50%;
  background-position: calc(50% + 33vw) 50%;
  position: relative;
  z-index: 2;
}
.content > .page-bounds:first-child .array-feature:first-child {
  margin-top: -24px;
}
.array-feature__content {
  position: relative;
  z-index: 2;
}
.array-feature__title {
  color: #fff;
}
.array-feature__description {
  font-weight: 600;
}
.array-feature__actions {
  margin-top: 36px;
}
.array-feature__images {
  position: absolute;
  z-index: 1;
}
.array-feature__image-row {
  margin-bottom: 30px;
  white-space: nowrap;
}
.array-feature--mobile .array-feature__image-row {
  margin-bottom: 12px;
}
.array-feature__image-row:nth-child(2) {
  -ms-transform: translateX(-20%);
  transform: translateX(-20%);
}
.array-feature__image-row:nth-child(3) {
  -ms-transform: translateX(-35%);
  transform: translateX(-35%);
}
.array-feature__image-row:nth-child(4) {
  -ms-transform: translateX(-24%);
  transform: translateX(-24%);
}
.array-feature--mobile .array-feature__image-row:nth-child(2) {
  -ms-transform: translateX(-24%);
  transform: translateX(-24%);
}
.array-feature--mobile .array-feature__image-row:nth-child(3) {
  -ms-transform: translateX(-33%);
  transform: translateX(-33%);
}
.array-feature__image {
  display: inline-block;
  vertical-align: middle;
  max-width: 480px;
  max-height: 270px;
  margin-right: 24px;
  opacity: 0;
}
.array-feature__image.is-visible {
  animation: introduce-image 0.7s cubic-bezier(0, 0.4, 0.4, 1) both;
}
.array-feature__image img {
  max-height: 100%;
}
.array-feature--mobile .array-feature__image img {
  filter: drop-shadow(-4px 5px 6px rgba(0,0,0,0.8));
}
.array-feature--inverse {
  background-color: #8cc63f;
}
.array-feature--inverse .array-feature__title {
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.3), 0 0 5px rgba(0, 0, 0, 0.1);
}
.array-feature--inverse .array-feature__title mark {
  text-shadow: none;
}

/*Full Screen Sept 2023 Update*/
.array-feature--fullscreen {
  padding: 48px 48px 12px!important;
}
.array-feature--fullscreen .array-feature__content {
  margin: 0 auto;
  text-align: center;
  width: 70%;
}
.array-feature--fullscreen .array-feature__images {
  left: 0!important;
  position: relative!important;
  bottom: auto!important;
  top: 0!important;
  transform: none;
  margin-left: 8vw;
}

.array-feature--fullscreen .array-feature__image-row:nth-child(2),
.array-feature--fullscreen .array-feature__image-row:nth-child(3),
.array-feature--fullscreen .array-feature__image-row:nth-child(4) {
  transform: none;
}

  /*first row*/
  .array-feature--fullscreen .array-feature__image-row:first-child .array-feature__image:first-child img {
    transform: scaleY(0.8) scaleY(1.4) skewY(-5deg);
    opacity: 0.5;
  }
  .array-feature--fullscreen .array-feature__image-row:first-child .array-feature__image:nth-child(2) img {
    transform: scaleY(0.8) scaleY(1.4) skewY(-5deg) translate(45%, 5%);
    opacity: 0.7;
  }

  /*second row*/
  .array-feature--fullscreen .array-feature__image-row:nth-child(2) .array-feature__image:first-child img {
    transform: scaleY(0.8) scaleY(1.4) skewY(-5deg) translate(45%, -20%);
  }
  .array-feature--fullscreen .array-feature__image-row:nth-child(2) .array-feature__image:nth-child(2) img {
    transform: scaleY(0.8) scaleY(1.4) skewY(-7deg) translate(190%, -50%);
    opacity: 0.5;
  }
  .array-feature--fullscreen .array-feature__image-row:nth-child(2) .array-feature__image:nth-child(3) img {
    transform: scaleY(0.8) scaleY(1.4) skewY(-7deg) translate(100%, 50%);
    opacity: 0.7;
  }

  /*third row*/
  .array-feature--fullscreen .array-feature__image-row:nth-child(3) .array-feature__image:first-child img {
    transform: scale(2) translate(110%, -55%);
  }
  .array-feature--fullscreen .array-feature__image-row:nth-child(3) .array-feature__image:nth-child(2) img {
    transform: scaleY(0.8) scaleY(1.4) skewY(-5deg) translate(-10%, -20%) ;
  }

  /*fourth row--hidden*/
  .array-feature--fullscreen .array-feature__image-row:nth-child(4) {
    display: none;
  }


@media (max-width: 479px) {
  .array-feature__actions .button {
    display: block;
  }
  .array-feature__actions .button + .button {
    margin-top: 12px;
  }
}

@media (min-width: 480px) {
  .array-feature__actions .button + .button {
    margin-left: 12px;
  }
}

@media (max-width: 779px) {
  .array-feature {
    padding: 48px 24px 120px;
    overflow: hidden;
    background-image: none;
  }
  .array-feature__title,
  .array-feature__description,
  .array-feature__actions {
    text-align: center;
  }
  .array-feature__actions {
    margin-top: 120px;
  }
  .array-feature__images {
    top: 100%;
    left: 50%;
    margin-top: -432px;
    -ms-transform: scaleY(0.5) rotate(-31deg) scaleY(1.3);
    transform: scaleY(0.5) rotate(-31deg) scaleY(1.3);
    opacity: 0.6;
  }
  .array-feature__image {
    width: 213.336px;
    height: 120px;
  }
  .array-feature--mobile .array-feature__images {
    top: 118%;
    left: 24%;
  }
  .array-feature--mobilealt .array-feature__images {
    transform: scaleY(0.6) rotate(-20deg) scaleY(1.3);
    -ms-transform: scaleY(0.6) rotate(-20deg) scaleY(1.3);
  }
  .array-feature--mobile .array-feature__image {
    width: 110px;
    height: 220px;
  }
}

@media (min-width: 780px) {
  .array-feature {
    padding: 96px 72px;
  }
  .content > .page-bounds:first-child .array-feature:first-child {
    margin-top: -72px;
  }
  .array-feature .page-bounds,
  .array-feature .bg-section__content {
    position: relative;
  }
  .array-feature__content {
    width: 70%;
  }
  .array-feature__description {
    max-width: 20em;
  }
  .array-feature__images {
    left: 80%;
    top: 50%;
    -ms-transform: translateY(-65%) scaleY(0.5) rotate(-31deg) scaleY(1.3);
    transform: translateY(-65%) scaleY(0.5) rotate(-31deg) scaleY(1.3);
    animation: introduce-group 1s ease-in both;
  }
  .array-feature__image {
    width: 298.6704px;
    height: 168px;
  }
  .array-feature__image img[src$="jpg"] {
    box-shadow: -5px 7px 8px rgba(0, 0, 0, 0.3);
  }
  .array-feature--reverse {
    background-position: calc(50% - 33vw) 50%;
  }
  .array-feature--reverse .array-feature__content {
    margin-left: 30%;
  }
  .array-feature--reverse .array-feature__description {
    max-width: 30em;
  }
  .array-feature--reverse .array-feature__images {
    left: auto;
    right: 35%;
  }
  .array-feature--mobile .array-feature__content {
    margin-left: 44%;
  }
  .array-feature--mobile .array-feature__content {
    width: 60%;
  }
  .array-feature--mobile .array-feature__images {
    right: 40%;
  }
  .array-feature--mobilealt .array-feature__images {
    -ms-transform: translateY(-65%) scaleY(0.6) rotate(-20deg) scaleY(1.3);
    transform: translateY(-65%) scaleY(0.6) rotate(-20deg) scaleY(1.3);
  }
  .array-feature--mobile .array-feature__image {
    width: 110px;
    height: 220px;
  }
}

@media (min-width: 1280px) {
  .array-feature {
    padding-top: 13vh;
    padding-bottom: 13vh;
    padding-top: calc((100vh - 588px) / 2);
    padding-bottom: calc((100vh - 588px) / 2);
    background-position: calc(50% + 500px) 50%;
  }
  .array-feature__content {
    width: 600px;
  }
  .array-feature__images {
    left: 768px;
    top: auto;
    bottom: -14vh;
    margin-left: 5vw;
    -ms-transform: scaleY(0.5) rotate(-31deg) scaleY(1.3);
    transform: scaleY(0.5) rotate(-31deg) scaleY(1.3);
  }
  .array-feature__image {
    width: 35.556vh;
    height: 20vh;
  }
  .array-feature--reverse {
    background-position: calc(50% - 500px) 50%;
  }
  .array-feature--reverse .array-feature__content {
    width: auto;
    margin-left: 50%;
  }
  .array-feature--reverse .array-feature__images {
    right: 35%;
    margin-left: 0;
  }
  .array-feature--mobile .array-feature__images {
    right: 36vw;
    bottom: -18vh;
  }
  .array-feature--mobilealt .array-feature__images {
    -ms-transform: scaleY(0.6) rotate(-20deg) scaleY(1.3);
    transform: scaleY(0.6) rotate(-20deg) scaleY(1.3);
  }
  .array-feature--mobile .array-feature__image {
    width: 16vh;
    height: 28vh;
    margin: 0;
    max-height: 600px;
    max-width: 500px;
  }
}

@media (min-width: 1776px) {
  .array-feature__images {
    left: 960px;
    bottom: -20vh;
  }
  .array-feature__image {
    width: 42.6672vh;
    height: 24vh;
  }
  .array-feature--mobile .array-feature__images {
    right: auto;
    left: 40px;
  }
}


@keyframes introduce-image {
  0% {
    opacity: 0;
    transform: translate(-23px, 30px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}


@keyframes introduce-group {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/*! ---------- =background sections ---------- */

.bg-section {
  padding: 48px 24px;
  background: #000;
  position: relative;
  overflow: hidden;
}
.bg-section--light {
  background: #fff;
}
.bg-section--dark {
  background: #4f4f4f;
}
.bg-section--purple {
  background: #6244bb;
}
.bg-section--blue {
  background: #307fe2;
}
.bg-section--yellow {
  background: #ffb927;
}
.bg-section--teal {
  background: #00a7b5;
}
.bg-section--green {
  background: #85c555;
}
.bg-section--darkgreen {
  background: #79a338;
}
.bg-section--lightgray {
  background: #f5f5f7;
}
.bg-section--page-top {
  padding-top: 96px;
  padding-bottom: 96px;
}
.bg-section--centered .bg-section__content {
  margin-left: auto !important;
}
.bg-section:not(:last-child) {
  margin-bottom: 48px;
}
.bg-section + .bg-section,
.testimonial + .bg-section {
  margin-top: -48px;
}
.title-block + .bg-section,
.title-block + .page-bounds > .bg-section:first-child,
.title-block + .page-bounds > div > .bg-section:first-child {
  margin-top: -24px;
}
.bg-section:not(.bg-section--light),
.bg-section:not(.bg-section--light) a:not([class]),
.bg-section:not(.bg-section--light) h1,
.bg-section:not(.bg-section--light) h2,
.bg-section:not(.bg-section--light) h3,
.bg-section:not(.bg-section--light) h4,
.bg-section:not(.bg-section--light) h5,
.bg-section:not(.bg-section--light) h6,
.bg-section--dark .hbspt-form label {
  color: #fff;
}
.bg-section a {
  text-decoration: underline;
}
.bg-section__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.bg-section__image img {
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.bg-section--parallax .bg-section__image {
  top: -10vw;
  bottom: -10vw;
}
.bg-section__content {
  position: relative;
  z-index: 2;
  padding: 24px 24px;
  background: rgba(84, 82, 163, 0.9);
}
.bg-section--light .bg-section__content {
  background: rgba(255,255,255,0.9);
}
.bg-section--seamless .bg-section__content {
  background: transparent;
  padding: 0;
}
.bg-section__video {
  position: relative;
  z-index: 2;
}
.bg-section__video .responsive-video {
  margin-top: 48px;
}
.bg-section--action {
  padding-bottom: 48px!important;
  padding-top: 48px!important;
}
.bg-section--action .cookie-reset-container a {
  color: #fff !important;
  cursor: pointer;
}
.bg-section--action .hbspt-form strong {
  display: block;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 24px;
  font-family: "Quicksand", "Open Sans", Helvetica, Arial, sans-serif;
  color: #505050;
  background: #ffb927;
  max-width: fit-content;
}

@media (min-width: 780px) {
  .bg-section {
    padding: 168px 72px;
  }
  .bg-section--tight {
    padding-bottom: 100px!important;
    padding-top: 100px!important;
  }

  .bg-section--super--tight {
    padding-bottom: 50px!important;
    padding-top: 50px!important;
  }

  .bg-section--action .grid__unit {
    padding-bottom: 0!important;
  }

  .title-block + .bg-section,
  .title-block + .page-bounds > .bg-section:first-child,
  .title-block + .page-bounds > div > .bg-section:first-child {
    margin-top: -48px;
  }
  .bg-section__content {
    padding: 60px 72px;
  }
}

@media (min-width: 1280px) {
  .bg-section--page-top {
    padding-top: 15vh;
    padding-bottom: 15vh;
  }
  .bg-section--page-top .bg-section__content {
    padding-top: 84px;
    padding-bottom: 84px;
    max-width: 600px;
    margin-left: 0;
  }
  .bg-section--page-top .bg-section__video {
    width: calc(100vw - (600px + 72px + 72px + 48px));
    max-width: 720px;
    position: absolute;
    left: 720px;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (min-width: 1600px) {
  .bg-section--page-top .bg-section__video {
    left: calc(50vw + 336px);
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 2064px) {
  .bg-section--page-top .bg-section__content {
    margin-left: calc((100vw - 2064px) / 2);
  }
}


/*! ---------- =buttons ---------- */

.button,
/* flatten for wysiwygs */
.button--large,
.button--small,
.button--alt,
.button--action,
.button--warn,
.button--cancel {
  display: inline-block;
  vertical-align: middle;
  padding: 12px 36px;
  border-radius: 24px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none !important;
  color: #fff;
  background: #6244bb;
  transition: color 0.15s ease-out,
                background-color 0.15s ease-out,
                transform 0.15s ease-out,
                box-shadow 0.15s ease-out,
                margin 0.15s ease-out;
}
.button:hover,
.button:focus {
  color: #fff;
  background: #7257c2;
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1.5px #fff, 0 3px 2px rgba(0, 0, 0, 0.1);
}
.button:focus {
  outline: 1px dashed rgba(128, 128, 128, 0.8);
  outline-offset: -6px;
}
.button:active {
  -ms-transform: translateY(0);
  transform: translateY(0);
  box-shadow: none;
  transition: none;
}
.button--fill {
  display: block;
  width: auto;
  max-width: 100%;
}
.button--fill + .button--fill {
  margin-left: 0;
  margin-top: 12px;
}
.button--large {
  padding: 18px 48px;
  border-radius: 30px;
}
.button--small {
  padding: 6px 24px;
  font-size: 16px;
}
.button--tiny {
  padding: 3px 18px;
  font-size: 14px;
  font-weight: 600;
}
.button--alt {
  background: #8cc63f;
}
.button--alt:hover,
.button--alt:focus {
  background: #91cb66;
}
.button--action {
  background: #eca42c;
}
.button--action:hover,
.button--action:focus {
  background: #ffb927;
}
.button--warn {
  background: #941;
}
.button--warn:hover,
.button--warn:focus {
  background: #b04e14;
}
.button--cancel {
  font-size: 16px;
  font-weight: 400;
  color: #7f7f7f;
  border: 1px solid #d0cfd4;
  background: #fff;
}
.button--cancel:hover,
.button--cancel:focus {
  color: #6244bb;
  border-color: #6244bb;
  background: #fff;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
}
.button--inverse {
  background: #fff;
  color: #5452a3;
}
.button--inverse:hover,
.button--inverse:focus {
  background: #fff;
  color: #7257c2;
}
.button--inverse.button--alt {
  color: #79a338;
}
.button--inverse.button--alt:hover,
.button--inverse.button--alt:focus {
  color: #91cb66;
}
.button--inverse.button--action {
  color: #eca42c;
}
.button--inverse.button--action:hover,
.button--inverse.button--action:focus {
  color: #ffcd79;
}
.button--wire {
  background: transparent;
  color: #6244bb;
  border: 2px solid #6244bb;
}
.button--wire:hover,
.button--wire:focus {
  background: #6244bb;
  color: #fff;
}
.button--wire.button--alt {
  color: #8cc63f;
  border-color: #8cc63f;
}
.button--wire.button--alt:hover,
.button--wire.button--alt:focus {
  background: #8cc63f;
}
.button--wire.button--action {
  color: #eca42c;
  border-color: #eca42c;
}
.button--wire.button--action:hover,
.button--wire.button--action:focus {
  background: #eca42c;
}
.button--wire.button--inverse {
  color: #fff;
  border-color: #fff;
}
.button--wire.button--inverse:hover,
.button--wire.button--inverse:focus {
  background: rgba(255,255,255,0.1);
}

.button-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -12px;
  margin-right: -6px;
  margin-left: -6px;
}
.button-group > .button {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin: 12px 6px 0;
}


/*! ---------- =code and =syntax highlighting ---------- */

pre,
code {
  font-family: "Inconsolata", monospace;
  font-size: 16px;
  line-height: 24px;
}
pre {
  display: block;
  padding: 24px 12px;
  border: 1px solid #eaeaee;
  color: #222;
  background: white;
  overflow-y: auto;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}
pre:not(:last-child) {
  margin-bottom: 24px;
}
pre::before {
  content: attr(rel);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #c2b7e2;
  position: absolute;
  top: 2px;
  right: 12px;
}
p > code,
li > code {
  background: white;
  font-style: normal;
}
p > code::before,
p > code::after,
li > code::before,
li > code::after {
  content: '';
  display: inline-block;
  width: 0.5em;
}

/*! syntax highlighting through prism: http://prismjs.com/index.html
*  the following is based off the default theme */

pre[class*="language-"] {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: slategray;
}

.token.punctuation {
  color: #999;
}

.namespace {
  opacity: 0.7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #905;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
  color: #07a;
}

.token.function {
  color: #dd4a68;
}

.token.regex,
.token.important,
.token.variable {
  color: #e90;
}
.token.important,
.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}


/*! ---------- =expanders ---------- */

.expander__list {
  list-style: none;
  margin: 0;
}
.expander__item {
  position: relative;
  overflow: hidden;
  background: #322f3b;
}
.expander__image {
  max-width: none;
  position: absolute;
  z-index: 1;
}
.expander__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 24px 24px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2) linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%) no-repeat 0 0;
  z-index: 2;
}
.expander.is-enabled .expander__content {
  opacity: 0;
  transition: opacity 0.25s ease;
}
.expander__item.is-focused .expander__content {
  opacity: 1;
  transition: opacity 0.25s ease 0.25s;
}
.expander__title {
  color: #fff;
}

@media (max-width: 779px) {
  .expander.is-enabled .expander__item {
    height: 96px;
    transition: height 0.5s ease;
  }
  .expander.is-enabled .expander__item::before {
    content: '\f054';
    display: block;
    font: 900 16px "Font Awesome 5 Free";
    position: absolute;
    right: 24px;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    color: #fff;
    pointer-events: none;
  }
  .expander.is-enabled .expander__item.is-focused {
    height: 360px;
    height: 50vh;
  }
  .expander__image {
    min-height: 100%;
    top: 0;
    bottom: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .expander.is-enabled .expander__image {
    opacity: 0.3;
  }
  .expander__item.is-focused::before {
    opacity: 0;
  }
  .expander__item.is-focused .expander__image {
    opacity: 1;
  }
}

@media (min-width: 780px) {
  .expander {
    width: 100% !important;
    width: 100vw !important;
  }
  .expander__list {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  .expander__item {
    display: table-cell;
    width: 7%;
    height: 500px;
  }
  .expander__image {
    min-width: 100%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .expander__content {
    padding: 48px 72px;
  }
  .expander.is-enabled .expander__item {
    transition: width 0.5s ease;
  }
  .expander__item.is-focused {
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 62%;
  }
}


/*! ---------- =homepage items ---------- */

.home-services__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 24px 0;
}
.home-services__item {
  display: inline-block;
  vertical-align: top;
}
.home-services__link {
  display: block;
  color: #4f4f4f;
}
.home-services__link:hover,
.home-services__link:focus {
  color: #6244bb;
}
.home-services__icon {
  display: block;
  max-height: 84px;
  margin: 0 auto 6px;
}
.home-services__icon path,
.home-services__icon circle,
.home-services__icon rect {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: draw-icon 1s ease-in-out forwards;
  transition: stroke 0.15s ease-out;
}
.home-services__icon .arrowhead {
  animation: fill-icon 1s ease both;
  transition: fill 0.15s ease-out;
}
.home-services__link:hover .home-services__icon path,
.home-services__link:hover .home-services__icon circle,
.home-services__link:hover .home-services__icon rect,
.home-services__link:focus .home-services__icon path,
.home-services__link:focus .home-services__icon circle,
.home-services__link:focus .home-services__icon rect {
  stroke: #6244bb;
}
.home-services__link:hover .home-services__icon .arrowhead,
.home-services__link:focus .home-services__icon .arrowhead {
  fill: #6244bb;
}
.home-services__name {
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.home-services__name .disclose {
  margin-left: 0.25em;
}

@media (max-width: 779px) {
  .home-services__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .home-services__link {
    padding: 24px;
  }
}

@media (min-width: 780px) {
  .home-services__list {
    padding: 24px 0 36px;
  }
  .home-services__icon {
    width: 8vw;
    max-width: 144px;
    max-height: none;
    margin-bottom: 12px;
  }
}

@media (min-width: 780px) and (max-width: 1279px) {
  .home-services__name {
    font-size: 16px;
  }
  .home-services__name .disclose {
    display: none;
  }
}

@media (min-width: 1776px) {
  .home-services__icon {
    width: 192px;
  }
}


@keyframes draw-icon {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fill-icon {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.home-partners {
  position: relative;
  z-index: 3;
  background: #fff;
}
.home-partners__label {
  padding: 72px 24px;
  background: #6244bb;
}
.home-partners__content {
  padding: 24px 24px;
}
.home-partners__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 0;
}
.home-partners__item {
  max-width: 120px;
  padding: 12px;
}
.home-partners__item img {
  max-height: 60px;
  -webkit-filter: saturate(0);
  filter: saturate(0);
}

@media (max-width: 779px) {
  .home-partners::before {
    content: '';
    display: block;
    width: 36px;
    position: absolute;
    top: 180px;
    bottom: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
  }
  .home-partners__label {
    text-align: center;
  }
  .home-partners__content {
    width: 100%;
    overflow-x: auto;
  }
  .home-partners__list {
    width: 1300px;
    padding-right: 24px;
  }
}

@media (min-width: 780px) {
  .home-partners {
    display: -ms-flexbox;
    display: flex;
  }
  .home-partners__label {
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .home-partners__label h2 {
    line-height: 1.4;
  }
  .home-partners__content {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .home-partners__list::after {
    content: '';
    display: block;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 1px;
  }
  .home-partners__item {
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 11vw;
    padding: 24px 2vw;
  }
  .home-partners__item img {
    max-height: 10vh;
  }
}


.home-contact {
  padding: 48px 24px;
  color: #fff;
  background: #6244bb url("/images/librariesprovider5/layout-elements/bg-contact.jpg") no-repeat 50% 50%;
  background-size: cover;
}
.home-contact__title {
  margin-bottom: 24px;
  text-align: center;
}
.home-contact__title h2 {
  color: #fff;
}
.home-contact__content .note {
  opacity: 0.7;
}
.home-contact .hbspt-form {
  margin-bottom: 24px;
}
.home-contact .input {
  margin: 0 0 12px !important;
}
.home-contact fieldset {
  max-width: none !important;
}
.home-contact label {
  color: #fff !important;
  font-size: 16px !important;
}
.home-contact .hs-form-required {
  color: #ffcd79 !important;
}
.home-contact .hs-error-msg {
  margin-top: -12px !important;
  font-weight: 400 !important;
}
.home-contact #label-i_m_interested_in___-e9416f73-7617-470d-b935-b3808bea9d92 {
  display: inline-block !important;
  margin-top: 12px !important;
  background: #ffb927 !important;
  color: #4f4f4f !important;
}
.home-contact input[type="text"],
.home-contact input[type="email"],
.home-contact input[type="tel"],
.home-contact textarea {
  width: 100% !important;
  border: none;
  background: #fff !important;
  color: #7f7f7f !important;
  box-shadow: inset 0 -2px 0 #8cc63f;
}
.home-contact .inputs-list {
  list-style: none !important;
  margin: 0 !important;
}
.home-contact input[type="checkbox"] {
  width: 24px !important;
  height: 24px !important;
  vertical-align: middle;
  margin-right: 6px !important;
}
.home-contact input[type="checkbox"] + span {
  font-weight: 600 !important;
  font-size: 18px !important;
}
.home-contact .cookie-reset-container a {
  color: #fff!important;
}
.home-contact .hs-button {
  background: #8cc63f !important;
}
.home-contact .hs-button:hover,
.home-contact .hs-button:focus {
  background: #91cb66 !important;
}


@media (min-width: 480px) {
  .home-contact {
    padding-top: 72px;
    padding-bottom: 24px;
  }
  .home-contact__title {
    margin-bottom: 48px;
  }
  .home-contact__content {
    padding: 36px 24px;
    background: #5452a3;
  }
  .home-contact .form-columns-2 {
    margin-right: -24px !important;
  }
  .home-contact .form-columns-2 > .hs-form-field {
    padding-right: 24px !important;
  }
  .home-contact #label-i_m_interested_in___-e9416f73-7617-470d-b935-b3808bea9d92 {
    font-size: 20px !important;
    line-height: 30px !important;
  }
}

@media (min-width: 780px) {
  .home-contact {
    padding: 72px 72px;
  }
}

@media (min-width: 980px) {
  .home-contact .page-bounds,
  .home-contact .bg-section__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
  }
  .home-contact__title {
    -ms-flex-preferred-size: 340px;
    flex-basis: 340px;
    text-align: left;
    margin: 0 72px 0 0;
  }
  .home-contact__content {
    -ms-flex-preferred-size: 200px;
    flex-basis: 200px;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media (min-width: 780px) and (max-width: 979px), (min-width: 1280px) {
  .home-contact .hs-form-checkbox {
    display: inline-block !important;
    vertical-align: top !important;
  }
  .home-contact .hs-form-checkbox:nth-child(1),
  .home-contact .hs-form-checkbox:nth-child(4) {
    width: 35% !important;
  }
  .home-contact .hs-form-checkbox:nth-child(2),
  .home-contact .hs-form-checkbox:nth-child(5) {
    width: 30% !important;
  }
  .home-contact .hs-form-checkbox:nth-child(3) {
    width: 35% !important;
  }
}

  /*submission text styling*/
  .home-contact .hbspt-form p:first-child {
    font-size: 30px;
      padding: 9px;
  }

  .home-contact .hbspt-form p:first-child, .home-contact .hbspt-form p:nth-child(2) {
      background: #ffb927;
      color: #4f4f4f;
      display: table;
      font-family: "Quicksand", "Open Sans", Helvetica, Arial, sans-serif;
      margin: 12px auto 0;
  }

  .home-contact .hbspt-form p:nth-child(2) {
      padding: 1px 3px;
  }

  /*general hubspot form styling*/
  .hbspt-form input[type="text"],
  .hbspt-form input[type="email"],
  .hbspt-form input[type="tel"],
  .hbspt-form textarea {
    width: 100% !important;
    border: none;
    background: #f1f1f1 !important;
    color: #7f7f7f !important;
    box-shadow: inset 0 -2px 0 #CCC;
  }
  .hbspt-form .cookie-reset-container {
    font-family: "Quicksand", "Open Sans", Helvetica, Arial, sans-serif !important;
  }
  .hbspt-form .form-columns-2,
  .hbspt-form .form-columns-1 {
    max-width: 100% !important;
  }
  .legal-consent-container p {
    font-size: 80% !important;
    line-height: 1.4 !important;
    margin-bottom: 24px !important;
    margin-top: 24px !important;
  }
  .cookie-reset-container a {
    color: #5452a3 !important;
    text-decoration: none !important;
  }
  .cookie-reset-container a:hover,
  .cookie-reset-container a:focus {
    color: #8cc63f !important;
  }
  ul.hs-error-msgs li::before {
    display: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  ul.hs-error-msgs {
    margin: 12px 12px 12px 0 !important;
  }
  .hbspt-form .actions {
    margin-top: 24px !important;
  }
  .hs-button {
    border-radius: 24px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    padding: 12px 36px !important;
    border-radius: 24px !important;
    text-align: center !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 24px !important;
    color: #fff !important;
    background: #8cc63f !important;
    transition: color 0.15s ease-out, background-color 0.15s ease-out, transform 0.15s ease-out, box-shadow 0.15s ease-out !important;
  }
  .hs-button:hover,
  .hs-button:focus {
    color: #fff !important;
    background: #91cb66 !important;
    -ms-transform: translateY(-2px) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 0 0 1.5px #fff, 0 3px 2px rgba(0, 0, 0, 0.1) !important;
  }
  .hs-button:focus {
    outline: 1px dashed rgba(128, 128, 128, 0.8) !important;
    outline-offset: -6px !important;
  }
  .hs-button:active {
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
    box-shadow: none !important;
    transition: none !important;
  }

  li.hs-form-radio::before {
    display: none!important;
  }
  li.hs-form-radio input {
    margin-right: 4px;
    top: 1px;
  }
  ul.inputs-list {
    margin-left: 0;
  }
  ul.inputs-list li::before,
  li.hs-form-booleancheckbox::before {
    display: none!important;
  }
  .hs_select_event_date_ > label {
    margin-top: 24px;
  }
  .hs-field-desc {
    font-size: 14px;
  }
  .hs-input {
    margin-right: 6px;
    vertical-align: middle;
  }
  .hs-fieldtype-booleancheckbox {
    margin-top: 12px;
  }
  .hs-recaptcha {
    margin-top: 24px;
  }

  /*Engagefully 365 Interactive Resource Form */
  .hbspt-form .submitted-message.hs-form-86250001-3d8f-4a08-a6b1-16aa1549caef {
    background:rgba(0, 167, 181, 0.2);
    padding: 24px;
    color: #000;
  }

  .hbspt-form .submitted-message.hs-form-86250001-3d8f-4a08-a6b1-16aa1549caef p:first-child {
    font-size: 24px;
    font-family: "Quicksand", "Open Sans", Helvetica, Arial, sans-serif;
    line-height: 30px;
  }


/*! ---------- =horizontal scrollers ----------- */

.horizontal {
  margin-bottom: 24px;
  position: relative;
}
.horizontal__scroller {
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  padding-bottom: 12px;
}
.horizontal__content {
  display: flex;
  gap: 24px;
}
.horizontal__content--align-top {
  align-items: flex-start;
}
.horizontal__content--align-bottom {
  align-items: flex-end;
}
.horizontal__content--align-center {
  align-items: center;
}
.horizontal__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 calc((100% - 48px) / 4);
}
.horizontal__item--stretch {
  align-self: stretch;
}
.horizontal__item--center {
  align-self: center;
}
.horizontal__item--top {
  align-self: flex-start;
}
.horizontal__item--bottom {
  align-self: flex-end;
}
.horizontal__content--pack .horizontal__item {
  flex-basis: auto;
}
.horizontal__control {
  background: #6244bb;
  align-items: center;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  font-family: "Font Awesome 5 Pro";
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 48px;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  transform: translateY(-50%);
  transition: background 0.15s ease-out;
  width: 48px;
  z-index: 3;
}
.horizontal__control:hover,
.horizontal__control:focus {
  background: #8cc63f;
  color: #ffffff;
}
.horizontal__control--left {
  left: -55px;
}
.horizontal__control--right {
  right: -55px;
}
.horizontal--is-at-start .horizontal__control--left,
.horizontal--is-at-start .horizontal__control--left:hover,
.horizontal--is-at-start .horizontal__control--left:focus,
.horizontal--is-at-end .horizontal__control--right,
.horizontal--is-at-end .horizontal__control--right:hover,
.horizontal--is-at-end .horizontal__control--right:focus {
  color: #CECECE;
  background: #EDEDED;
  cursor: default;
}


/*Tab Features Slider*/
.horizontal--features {
  margin-top: 56px;
}
.horizontal--light .horizontal__title {
  color: #fff;
}
.horizontal--green .horizontal__control {
  background: #85c555;
}
.horizontal--features .horizontal__item {
  background: rgba(255,255,255,0.2);
  border-top: 8px solid #e0dee3;
  flex: 0 0 calc((100% - 48px) / 3);
  padding: 24px;
  text-align: center;
}
.bg-section--darkgreen .horizontal--features .horizontal__title {
  color: #6244bb;
}
.horizontal--features .horizontal__control {
  top: 113%!important;
}
.horizontal--features .horizontal__control--left {
  left: 0!important;
}
.horizontal--features .horizontal__control--right {
  right: 0!important;
}
@media (max-width: 767.97px) {
  .horizontal__item {
    flex-basis: calc((100% - 24px) / 2);
  }
  .horizontal--features .horizontal__item {
    flex-basis: 100% !important;
  }
}

@media (max-width: 479.97px) {
  .horizontal--features .horizontal__item,
  .horizontal__item {
    flex-basis: 80% !important;
  }
}

@media (max-width: 1279px) {
  .horizontal--features .horizontal__item {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (min-width: 1472px) {
  .horizontal:not(.to-screen-edges) .horizontal__control--left {
    left: -72px;
  }
  .horizontal:not(.to-screen-edges) .horizontal__control--right {
    right: -72px;
  }
}

@media (min-width: 2064px) {
  .horizontal--features {
    margin-right: calc((100vw - 1920px) / -2);
  }
  .horizontal--features .horizontal__control--right {
    right: 10vw!important;
  }
  .horizontal--features .horizontal__item {
    flex-basis: 31%;
  }
}


/*! ---------- =lists ---------- */

.checkmark-list {
  margin-left: 36px;
  list-style: none;
}
.checkmark-list__item {
  position: relative;
  margin-bottom: 18px;
}
.checkmark-list__item:last-child {
  margin-bottom: 0;
}
.checkmark-list__item::before {
  content: '\f058' !important;
  display: block !important;
  font-family: "Font Awesome 5 Pro";
  font-size: 24px;
  font-weight: 900;
  color: #6244bb !important;
  position: absolute;
  left: -18px;
}
.checkmark-list--alt .checkmark-list__item::before {
  color: #8cc63f !important;
}
.checkmark-list--inverse .checkmark-list__item::before {
  color: #fff !important;
}

.item-list {
  list-style: none;
  margin-left: 0;
}
.item-list:not(:last-child) {
  margin-bottom: 48px;
}
.item-list + .button {
  margin-top: -24px;
}
.item-list:not(.item-list--grid) .item-list__item + .item-list__item {
  margin-top: 24px;
}
.item-list__link {
  display: block;
}
.item-list__link:hover,
.item-list__link:focus,
.item-list__link:hover .item-list__title,
.item-list__link:focus .item-list__title {
  color: #8cc63f;
}
.item-list__thumbnail {
  display: block;
  width: 120px;
  max-width: 33%;
  float: left;
  margin-right: 24px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.item-list--grid .item-list__thumbnail {
  float: none;
  width: 100%;
  max-width: 100%;
  padding-bottom: 66.67%;
  margin: 0 0 12px;
  border-radius: 5px;
}
.item-list__content {
  overflow: hidden;
}
.item-list__title {
  font-family: "Quicksand", "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 24px;
  margin: 0;
  color: #5452a3;
  transition: color 0.14s ease-out;
}
.item-list__title:hover,
.item-list__title:focus {
  color: #8cc63f;
}
.item-list__date {
  margin: 6px 0 0;
  opacity: 0.7;
}
.item-list__category {
  background: #5452a3;
  border-radius: 24px;
  color: #fff;
  display: block;
  margin-top: 12px;
  max-width: fit-content;
  padding: 8px 24px;
}
  .item-list__category--blog {
    background: #ffb927;
    color: #fff;
  }
  .item-list__category--success-story {
    background: #79a338;
    color: #fff;
  }
  .item-list__category--Guide,
  .item-list__category--cat-guide {
    background: #307fe2;
    color: #fff;
  }
  .item-list__category--Video,
  .item-list__category--cat-video {
    background: #00a7b5;
    color: #fff;
  }
  .item-list__category--Event,
  .item-list__category--cat-event,
  .item-list__category--Demo,
  .item-list__category--cat-demo {
    background: #d8df21;
    color: #4f4f4f;
  }
  .item-list__category--blog::before {
    content: 'Blog';
    display: inline-block;
  }
  .item-list__category--success-story::before {
    content: 'Success Story';
    display: inline-block;
  }
  .item-list__category--cat-guide::before {
    content: 'Guide';
    display: inline-block;
  }
  .item-list__category--cat-video::before {
    content: 'Video';
    display: inline-block;
  }
  .item-list__category--cat-event::before {
    content: 'Event';
    display: inline-block;
  }
  .item-list__category--cat-demo::before {
    content: 'Demo';
    display: inline-block;
  }
.item-list__description {
  margin: 6px 0 0;
}

@media (max-width: 479px) {
  .item-list__thumbnail {
    float: none;
    margin: 0 auto 12px;
  }
}

/*! grid-style lists */

.item-list--grid .item-list__thumbnail {
  width: 100%;
  max-width: 100%;
  float: none;
  margin: 0 auto 12px;
}
.item-list--grid .item-list__thumbnail img {
  width: 100%;
}
.item-list--grid .item-list__item + .item-list__item {
  margin-top: 0;
}

.pagination {
  list-style: none;
  margin: 0 0 24px;
}
.pagination .overview {
  display: block;
  font-size: 16px;
}
.pagination li {
  display: inline-block;
  margin-bottom: 0.2em;
}
.pagination li::before {
  display: none!important;
}
.pagination li a {
  display: block;
  width: 36px;
  padding: 6px 0;
  text-align: center;
  color: #7f7f7f;
  background: #f5f5f7;
  font-size: 16px;
}
.pagination li a:hover,
.pagination li a:focus {
  color: #fff;
  background: #8cc63f;
}
.pagination .active a {
  font-weight: 700;
  color: #fff;
  background: #6244bb;
}

@media (min-width: 940px) {
  .pagination .overview {
    display: inline-block;
    margin-right: 1.5em;
  }
}


/*! ---------- =tabs and =accordions ---------- */

.tabs--standard:not(:last-child) {
  margin-bottom: 48px;
}
.tabs--standard .tabs__tab {
  display: inline-block;
  vertical-align: bottom;
  padding: 12px;
  margin-bottom: -1px;
  border: 1px solid #f5f5f7;
  color: #7f7f7f;
  background: #f5f5f7;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.tabs--standard .tabs__tab.is-active {
  background: #fff;
  border-bottom-color: #fff;
  color: #8cc63f;
}
.tabs--standard .tabs__tab:focus {
  outline: 1px dashed rgba(128, 128, 128, 0.8);
  outline-offset: -6px;
}
.tabs--standard .tabs__pane {
  border: 1px solid #f5f5f7;
  padding: 24px;
  display: none;
}
.tabs--standard .tabs__pane.is-active {
  display: block;
}
.tabs--vertical {
  margin-bottom: 48px;
}
.tabs--vertical .tabs__tab {
  background: #f5f5f7;
  padding: 12px;
}
.tabs--vertical .tabs__tab.is-active {
  color: #8cc63f;
  background: #fff;
}
.tabs--vertical .tabs__tab:focus {
  outline: 1px dashed #6244bb;
  outline-offset: -6px;
}
.js .tabs--vertical .tabs__pane:not(.is-active) {
  display: none;
}

@media (min-width: 480px) {
  .tabs--standard .tabs__tab {
    padding: 18px 24px;
    font-weight: 600;
  }
}

@media (max-width: 779px), (min-width: 1280px) and (max-width: 1599px) {
  .tabs--standard,
  .tabs--vertical {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .tabs--standard .tabs__tab,
  .tabs--standard .tabs__pane,
  .tabs--vertical .tabs__tab,
  .tabs--vertical .tabs__pane {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .tabs--standard .tabs__tab,
  .tabs--vertical .tabs__tab {
    -ms-flex-order: 1;
    order: 1;
    border: 1px solid #f5f5f7;
  }
  .tabs--standard .tabs__tab ~ .tabs__tab,
  .tabs--vertical .tabs__tab ~ .tabs__tab {
    margin-top: 6px;
  }
  .tabs--standard .tabs__tab.is-active,
  .tabs--vertical .tabs__tab.is-active {
    border-color: #d0cfd4 #d0cfd4 #f5f5f7;
  }
  .tabs--standard .tabs__tab:nth-child(2),
  .tabs--vertical .tabs__tab:nth-child(2) {
    -ms-flex-order: 3;
    order: 3;
  }
  .tabs--standard .tabs__tab:nth-child(3),
  .tabs--vertical .tabs__tab:nth-child(3) {
    -ms-flex-order: 5;
    order: 5;
  }
  .tabs--standard .tabs__tab:nth-child(4),
  .tabs--vertical .tabs__tab:nth-child(4) {
    -ms-flex-order: 7;
    order: 7;
  }
  .tabs--standard .tabs__tab:nth-child(5),
  .tabs--vertical .tabs__tab:nth-child(5) {
    -ms-flex-order: 9;
    order: 9;
  }
  .tabs--standard .tabs__tab:nth-child(6),
  .tabs--vertical .tabs__tab:nth-child(6) {
    -ms-flex-order: 11;
    order: 11;
  }
  .tabs--standard .tabs__tab:nth-child(7),
  .tabs--vertical .tabs__tab:nth-child(7) {
    -ms-flex-order: 13;
    order: 13;
  }
  .tabs--standard .tabs__tab:nth-child(8),
  .tabs--vertical .tabs__tab:nth-child(8) {
    -ms-flex-order: 15;
    order: 15;
  }
  .tabs--standard .tabs__tab:nth-child(9),
  .tabs--vertical .tabs__tab:nth-child(9) {
    -ms-flex-order: 17;
    order: 17;
  }
  .tabs--standard .tabs__tab:nth-child(10),
  .tabs--vertical .tabs__tab:nth-child(10) {
    -ms-flex-order: 19;
    order: 19;
  }
  .tabs--standard .tabs__pane,
  .tabs--vertical .tabs__pane {
    -ms-flex-order: 2;
    order: 2;
    padding: 24px 12px;
    border: 1px solid #d0cfd4;
    border-top-width: 0;
  }
  .tabs--standard .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane {
    -ms-flex-order: 4;
    order: 4;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane {
    -ms-flex-order: 6;
    order: 6;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -ms-flex-order: 8;
    order: 8;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -ms-flex-order: 10;
    order: 10;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -ms-flex-order: 12;
    order: 12;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -ms-flex-order: 14;
    order: 14;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -ms-flex-order: 16;
    order: 16;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -ms-flex-order: 18;
    order: 18;
  }
  .tabs--standard .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane,
  .tabs--vertical .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane + .tabs__pane {
    -ms-flex-order: 20;
    order: 20;
  }
}

@media (min-width: 780px) and (max-width: 1279px), (min-width: 1600px) {
  .tabs--standard {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .tabs--standard::before {
    /* remove sf pseudoel that messes with space-between */
    display: none !important;
  }
  .tabs--standard .tabs__tab {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 18px 24px;
  }
  .tabs--standard.tabs--2 .tabs__tab {
    width: 48%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -ms-flex-preferred-size: calc(50% - 6px);
    flex-basis: calc(50% - 6px);
  }
  .tabs--standard.tabs--3 .tabs__tab {
    width: 31%;
    -ms-flex-preferred-size: 33.3%;
    flex-basis: 33.3%;
    -ms-flex-preferred-size: calc(33.3% - 6px);
    flex-basis: calc(33.3% - 6px);
  }
  .tabs--standard.tabs--4 .tabs__tab {
    width: 22%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    -ms-flex-preferred-size: calc(25% - 6px);
    flex-basis: calc(25% - 6px);
  }
  .tabs--standard.tabs--5 .tabs__tab {
    width: 17%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    -ms-flex-preferred-size: calc(20% - 6px);
    flex-basis: calc(20% - 6px);
  }
  .tabs--standard .tabs__pane {
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .tabs--vertical .tabs__tab {
    width: 300px;
    float: left;
    clear: left;
    padding: 11px 17px;
    margin-bottom: 6px;
    border: 1px solid #f5f5f7;
    border-right-color: #d0cfd4;
    box-shadow: inset 6px 0 0 #d0cfd4;
    cursor: pointer;
  }
  .tabs--vertical .tabs__tab.is-active {
    background: #fff;
    border-color: #d0cfd4 #fff #d0cfd4 #d0cfd4;
    box-shadow: inset 6px 0 0 #8cc63f;
    cursor: default;
  }
  .tabs--vertical .tabs__pane {
    padding: 24px;
    background: #fff;
    border-left: 299px solid #fff;
    box-shadow: inset 0 0 0 1px #d0cfd4;
  }
  .tabs--vertical .tabs__pane::after {
    content: '';
    display: table;
    clear: both;
    margin: 30px 0 -30px;
  }
}

/*Features Content Type Tabs*/
/*.tabs--features::after {
  clear: both;
  content: '';
  display: block;
}*/
.tabs--features .tabs__tab {
  background: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
  color: #fff!important;
  font-size: 20px!important;
  font-weight: 700;
  line-height: 30px;
  position: relative;
  text-decoration: none;
  width: 30%;
}
.tabs--features .tabs__tab::before {
  color: #fff;
  content: '\f058' !important;
  display: block !important;
  font-family: "Font Awesome 5 Pro";
  font-size: 24px;
  font-weight: 900;
  left: -18px;
  position: absolute;
}
.tabs--features .tabs__pane {
  background: transparent!important;
  border: 0!important;
  box-shadow: none!important;
}


.accordion:not(:last-child) {
  margin-bottom: 48px;
}
.accordion__label {
  display: block;
  padding: 12px;
  background: #fff;
  border: 1px solid #f5f5f7;
  color: #7f7f7f;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  overflow: hidden;
}
.accordion__label .fa-arrow-right {
  margin-left: 0.4em;
  transition: transform 0.15s ease-out;
}
.accordion__label:hover,
.accordion__label:focus {
  color: #8cc63f;
}
.accordion__label.is-active {
  color: #6244bb;
  border-color: #6244bb #6244bb #f5f5f7 #6244bb;
  background: #f7f7f7;
}
.accordion__label.is-active .fa-arrow-right {
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.accordion__label:focus {
  outline: 1px dashed rgba(128, 128, 128, 0.3);
  outline-offset: -6px;
}
.accordion__label ~ .accordion__label {
  margin-top: 6px;
}
.accordion__content {
  border: 1px solid #6244bb;
  border-top: none;
  padding: 24px 12px;
  transition: all 0.2s ease-out;
  overflow: hidden;
}
.js .accordion__content:not(.is-active) {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0 1px;
  visibility: hidden;
  opacity: 0;
}


/*! ---------- =testimonials ---------- */

.testimonial {
  padding: 48px 24px;
  background: #5452a3;
  position: relative;
  overflow: hidden;
}
.testimonial--alt {
  background: #79a338;
}
.bg-section + .testimonial {
  margin-top: -48px;
}
.testimonial:not(:last-child) {
  margin-bottom: 48px;
}
.testimonial,
.testimonial a,
.testimonial h1,
.testimonial h2,
.testimonial h3,
.testimonial h4,
.testimonial h5,
.testimonial h6 {
  color: #fff;
}
.testimonial a {
  text-decoration: underline;
}
.testimonial__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  -webkit-filter: saturate(0.15);
  filter: saturate(0.15);
  opacity: 0.2;
}
.testimonial__image img {
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.testimonial__content {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.testimonial__video {
  width: 640px;
  max-width: 100%;
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
}
.testimonial__portrait {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.testimonial__body {
  font-size: 24px;
  line-height: 36px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}
.testimonial__body::before {
  content: '\201C';
  display: block;
  font-family: "Georgia", serif;
  position: absolute;
  left: -0.4em;
  top: 0.1em;
  font-size: 3em;
  opacity: 0.3;
}
.testimonial__attribution {
  font-size: 18px;
  line-height: 24px;
}

@media (max-width: 479px) {
  .testimonial__portrait {
    width: 48px;
    border-radius: 48px;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .testimonial__portrait + .testimonial__body .testimonial__attribution {
    min-height: 48px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 72px;
  }
}

@media (min-width: 480px) {
  .testimonial__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
  }
  .testimonial__portrait {
    width: 96px;
    border-radius: 48px;
    margin-right: 24px;
  }
  .testimonial__name {
    display: block;
  }
}

@media (min-width: 780px) {
  .testimonial {
    padding: 100px 72px;
  }
  .testimonial__body::before {
    font-size: 5em;
    color: #8cc63f;
    opacity: 1;
  }
  .testimonial__portrait {
    width: 144px;
    border-radius: 72px;
    margin-right: 48px;
  }
}


/*! ---------- =word changers ---------- */

.word-changer {
  box-sizing: content-box;
  display: inline-block;
  white-space: nowrap;
  padding: 0 0.25em;
  position: relative;
  transition: width 0.3s ease 0.2s;
}
.word-changer::before {
  content: '';
  display: inline-block;
  width: 1px;
}
.word-changer__word {
  position: absolute;
  left: 0.25em;
  top: 0;
  opacity: 0;
  pointer-events: none;
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.word-changer__word.is-active {
  -ms-transform: translateY(0);
  transform: translateY(0);
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s;
}
.word-changer__word.is-previous {
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.word-changer__hidden {
  position: absolute;
  font-size: 0.01em;
  color: rgba(0, 0, 0, 0.01);
}
.word-changer:not(.is-enabled) .word-changer__word:first-child {
  position: relative;
  opacity: 1;
  pointer-events: all;
  -ms-transform: translateY(0);
  transform: translateY(0);
}


/*! ---------- =partners page ---------- */

.partner-grid {
  max-width: 1280px;
  margin: 0 auto 48px;
}
.partner-grid__link {
  display: block;
  position: relative;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1),
              0 6px 12px rgba(0,0,0,0.13);
  transition: transform 0.15s ease-out,
              box-shadow 0.15s ease-out;
}
/* sizer */
.partner-grid__link::before {
  content: '';
  display: block;
  padding-bottom: 100%;
}
.partner-grid__link:hover,
.partner-grid__link:focus {
  transform: translateY(-2px);
  box-shadow: 0 3px 5px rgba(0,0,0,0.1),
              0 8px 16px rgba(0,0,0,0.13);
}
.partner-grid__logo {
  max-width: 90%;
  max-width: calc(100% - 48px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
}
.partner-grid__link:hover .partner-grid__logo,
.partner-grid__link:focus .partner-grid__logo {
  transform: translate(-50%, -50%) scale(1.04);
}
.partner-grid__tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 6px 12px;
  border-radius: 5px;
  background: #6244bb;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.partner-grid__tag--cms {
  background: #8cc63f;
}
.partner-grid__tag--community {
  background: #ffb927;
}


/*! ---------- =sitefinity ---------- */

.sys-template {
  display: none;
}

.sfContentBlock {
  margin-bottom: 24px;
}
.sfContentBlock:last-child {
  margin-bottom: 0;
}

/* For Solr debug */

.debug-url {
  background-color: #efe;
  border: 2px solid #2c2;
  padding: 12px;
  margin-bottom: 24px;
  word-wrap: break-word;
}

/*! make page builder layout more friendly to edit */

.sfPageEditor .page-header,
.sfPageEditor .page-header > .page-bounds,
.sfPageEditor .header-logo,
.sfPageEditor .page-header__content,
.sfPageEditor .header-utility,
.sfPageEditor .header-nav,
.sfPageEditor .title-block,
.sfPageEditor .title-block__background,
.sfPageEditor .title-block__content,
.sfPageEditor .page-footer,
.sfPageEditor .page-footer > .page-bounds,
.sfPageEditor .page-footer__logo,
.sfPageEditor .page-footer__contact {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  float: none !important;
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}
.sfPageEditor .content {
  padding-top: 48px;
}
.sfPageEditor .title-block::before {
  display: none !important;
}
.sfPageEditor .title-block__background,
.sfPageEditor .title-block__content {
  position: static !important;
}
.sfPageEditor .spacer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  margin: 0;
  border: 2px dashed #d0cfd4;
  border-radius: 4px;
  color: #c0bec4;
}
.sfPageEditor .spacer::before {
  content: 'Spacer';
}
.sfPageEditor .spacer--small {
  height: 24px;
}
.sfPageEditor .spacer--small::before {
  content: 'Small spacer';
}
.sfPageEditor .spacer--large {
  height: 96px;
}
.sfPageEditor .spacer--large::before {
  content: 'Large spacer';
}
.sfPageEditor .spacer--huge {
  height: 120px;
}
.sfPageEditor .spacer--huge::before {
  content: 'Huge spacer';
}

/* space form builder fields */

.sf-fieldWrp > input,
.sf-fieldWrp > select,
.sf-fieldWrp > textarea,
.sf-fieldWrp > div > input,
.sf-fieldWrp > div > select,
.sf-fieldWrp > div > textarea {
  margin-bottom: 20px !important;
}
.sf_colsIn > .sf-fieldWrp > input:last-child,
.sf_colsIn > .sf-fieldWrp > select:last-child,
.sf_colsIn > .sf-fieldWrp > textarea:last-child {
  margin-bottom: 0 !important;
}

.sfInlineEditingPageMenu .sfInlineEditingToggleLnk {
  z-index: 1001 !important;
}

/* user-friendly tabs layout modules */

.sfPageEditor [data-edit-label]::before {
  content: "[" attr(data-edit-label) "]";
  font-size: 14px;
  opacity: 0.3;
}

.tabs.sf_cols {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.tabs__tab > .sf_colsIn,
.tabs__pane > .sf_colsIn {
  margin: 0 !important;
}
.sfPageEditor .tabs--standard .tabs__tab {
  width: 100% !important;
  float: none !important;
}
.sfPageEditor .tabs.sf_cols .tabs__pane {
  display: block !important;
}


/*! ---------- =print ---------- */

@media print {
  .page-header__toggle,
  .header-search,
  .header-utility,
  .header-nav,
  .in-this-section,
  .footer-logo,
  .footer-social,
  .footer-utility,
  .home-feature,
  .breadcrumbs,
  .share-buttons,
  .truncator-expand {
    display: none !important;
  }

  body {
    background: #fff;
  }


  @page {
    margin: 0.5in;
  }


  @page :first {
    margin-top: 1in;
  }


  @page :last {
    margin-bottom: 1in;
  }


  .page-bounds,
  .bg-section__content {
    max-width: 100%;
  }

  .page-header,
  .content,
  .page-footer {
    padding-left: 0;
    padding-right: 0;
  }

  h1,
  h2,
  h3,
  h4 {
    page-break-after: avoid;
  }

  blockquote,
  img,
  table,
  pre {
    page-break-inside: avoid;
  }

  ul,
  ol,
  dl {
    page-break-before: avoid;
  }

  .header-logo {
    float: none;
    max-width: 150px;
    margin: 0 auto;
    padding: 0;
  }

  .page-footer {
    border-top: 1px solid #f5f5f7;
  }

  .footer-contact {
    text-align: center;
  }

  .interior-layout__title,
  .interior-layout__nav,
  .interior-layout__main,
  .interior-layout__aside {
    float: none;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .interior-layout__aside {
    border-top: 1px solid #d0cfd4;
    padding-top: 48px;
  }

  .page-title {
    text-align: center;
  }

  .content a[href]:not([href^="#"]) {
    word-wrap: break-word;
    box-shadow: 0 2px 0 #6244bb;
    color: #7f7f7f;
    font-weight: 700;
  }
  .content a[href]:not([href^="#"])::after {
    content: " (" attr(href) ") ";
    font-size: 0.85em;
    color: #999;
  }

  .tabs__pane {
    display: block !important;
  }

  .accordion__content {
    max-height: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  [data-truncate-to] {
    max-height: none !important;
    overflow: visible !important;
  }

  [data-truncate-to*="item"] > * {
    display: initial !important;
  }
}

img.left-align {
  text-align: left !important;
  margin-left: 0 !important;
}

.content ul {
  /* list-style: none; */
}

.content ul li::before, .content ol li ul li::before {
  /* content: "•";  */
  color: #5452a3 !important;
  display: inline-block;
  width: 1em;
  margin-left: -2em;
  padding-left: 30px;
}

.content ul li::marker {
  color: #5452a3 !important;
}

.content ul li {
  margin-bottom: 7px;
}

.content ul.bullets--inverse li::before {
    color: #fff !important;
}

ul.home-services__list li::before,
ul.home-partners__list li::before,
ul.item-list li::before,
ul.grid.grid--compact li::before {
  content: "";
}

a.white-link {
  color: #8cc63f;
  font-weight: bold;
}

a.white-link:hover {
  color: #eee;
  font-weight: bold;
}

/*Emulators */
.app-emulator {
  border-radius: 25%;
  margin-bottom: 24px;
  margin-top: 24px;
  max-width: 60%;
}
.emulator-container {
  margin-bottom: -160px;
  margin-top: 36px;
}
.emulator-container.emulator-container__engagefully::after {
  clear: both;
  content: '';
  display: block;
}
.emulator-container.emulator-container__engagefully {
  margin-bottom: -90px;
  width: 100%;
  text-align: center;
}

h3.purple-heading {
  color:#6244bb;
  font-weight: bold;
}
h3.green-heading {
  color:#8cc63f;
  font-weight: bold;
}
.purple-highlight {
  color:#6244bb;
  font-weight: bold;
}