:root {
  /* Suggested upgrade for the "proper pink links" problem. All hard-coded colours would then be replaced with `var(--encore-<colour>)` */
  --encore-pink: #eb2b5c;
  --encore-purple: #452679; /* aka rgb(69, 38, 121) */
  /* Other purples found in the UI:
    - #4e3180 for the expanded ("active") Explore menu and `.search-form`
    - #61468d for the minimized (non-"active") Explore menu (also used for `.add-ons .container .add-on` and `body.careers .section-benefits`)
    - #331d5b as the other end of the gradient that ends with --encore-purple
  */
  --encore-white: #ffffff;
  --encore-whitesmoke: #ececed;
  --encore-darkgrey: #454545;
  /* Other greys found in the CSS:
    - #d5d5d6, #f3f3f4 found in GBT
    - #f3f3f4 found in .button:hover
    - #dfdfe0 found in the .bg-medium-gray class below. As of 2024-11-27 it's not used anywhere
    - #2e2e2e found in the .bg-dark-gray class below. As of 2024-11-27 it's only used once: in the footer
    - #ccc found in the JS calculator and moved to clean-design-components.css
    - #cfcfd0 found in the "horizontal rule" (1px border) under section headers on About Us
  */
  /* End suggested upgrade */

  --encore-paragraph-margin-size: 30px;
  --encore-small-text-size: 11px;

  /* variable that controls how wide `article.proper-width-article` articles are */
  --encore-single-post-content-width: 61.1111111111%;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Note: to minify this file, run `minify -o main.min.css main.css` in the ssh session. (SiteGround has minify installed by default) */

/**
 * Fixes a "feature" in WordPress 5.7 that forces empty <p> tags to be visible by adding the CSS rule `p: empty: before {content: "";}`
 * Is related to Gutenburg
 */
body p:empty:before {
  content: none;
}
/* End "feature" fix */

html {
  /*
    To be added later in it's proper time
    Fixes "overflows" throughout the DOM.
    See www.freecodecamp.org/news/html-page-width-height for some notes

    width: 100%;
  */

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

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

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

main {
  display: block;
}

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

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


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

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

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

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  word-wrap: break-word;
  white-space: pre-wrap;
}

pre.sixtyonepercent {
  /* width: 61%; */
}

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

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

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 * Note from 2023-02-08: `@font-face` rules *used* to coerce `bolder` in to 500
 */

b,
strong {
  font-weight: 500;
}

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

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

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

small {
  font-size: 80%;
}


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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

img {
  border-style: none;
}

/**
 * 1. font-family: inherit, font-size: 100%, line-height: 1.15, : Change the font styles in all browsers.
 * 2. margin: 0 : Remove the margin in Firefox and Safari.
*/
/* Skipped as the theme-specific definition chooses not to specify line-height or font size */

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


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

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

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

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

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

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

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

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

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

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


/**
 * Correct the padding in Firefox.
 */
/* Skipped as the theme-specific definition chooses use a different padding */

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


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

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

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

progress {
  vertical-align: baseline;
}

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

textarea {
  overflow: auto;
}

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

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

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

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

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

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

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

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

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

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


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

template {
  display: none;
}

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

[hidden] {
  display: none;
}

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

details {
  display: block;
}


/* Possible improvements */


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

summary {
  display: list-item;
}



/* End possible improvements */


/* End normalize.css */

/* Compliments to normalize.css. holdovers from pre-2020-09-18 */




html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
}

/* Theme-specific CSS follows */

/*article,
aside,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}*/

article,
aside,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}


/**
 *  background-color: transparent removes the gray background on active links in IE 10.
 */
a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}
a:active,
a:hover {
    outline-width: 0;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: #000;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    /* Josh Note 2021-03-30:
    Firefox and Chrome (and possibly others) have a default of `margin: 1em 40px;`.
    This might be a challenge when using Guternburg as it assumes `padding: 0; margin: 0;` around images (`<figure>` element)
    (It sets this explicitly for html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, form, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, and h6 in the twentytwentyone theme CSS) */
    margin: 1em 40px;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
    margin: 0;
}
optgroup {
    font-weight: 500;
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}


[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54;
}

.slick-slider {
    -khtml-user-select: none;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list,
.slick-slider {
    position: relative;
    display: block;
}
.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
    transform: translateZ(0);
}
.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:after,
.slick-track:before {
    content: "";
    display: table;
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
@font-face {
    font-family: Theinhardt;
    font-weight: 400;
    src: url(../fonts/Theinhardt-regular.otf) format("opentype");
}
@font-face {
    font-family: Theinhardt;
    font-weight: 500;
    src: url(../fonts/Theinhardt-medium.otf) format("opentype");
}
@font-face {
    font-family: Theinhardt;
    font-weight: 300;
    src: url(../fonts/Theinhardt-light.otf) format("opentype");
}
html {
    box-sizing: border-box;
}
*,
:after,
:before {
    box-sizing: inherit;
}
body {
    font-family: Theinhardt, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #454545;
    font-weight: 300;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
}
@media (max-width: 1109px) {
    body {
        font-size: 16px;
        font-size: 1rem;
    }
    body.locked,
    body.nav-active {
        overflow: hidden;
        position: fixed;
        transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    }
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 100;
    margin: 0 0 30px;
    color: #452679;
}
.page-header h1 {
    margin: 0;
}
h2 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.166;
    margin-bottom: 30px;
}
h4 {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.09;
    margin-bottom: 20px;
    font-weight: 300;
}
p {
    margin: 0 0 30px;
}
h3 {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1;
}
a {
    color: #454545;
    text-decoration: none;
}
a.pinklink { /* 2020-12-03 Josh is curious why *all* links are styled with #454545? Is doing a cheap hack since some CSS in this file are the parts in a house of cards */
    color: var(--encore-pink);
}
a,
a:after {
    transition: all 0.15s ease-out 0s;
}
.mce-content-body a {
    /* Specifically because the 'global #454545' links were making it impossible to see links in the visual editor */
    color: var(--encore-pink);
}
input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px;
}
*,
:after,
:before {
    outline: transparent;
    -webkit-tap-highlight-color: transparent;
}
input[type="checkbox"],
input[type="radio"] {
    margin-right: 6px;
}
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
}
button {
    background: none;
    border: none;
    cursor: pointer;
}
img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    vertical-align: middle;
}
iframe {
    width: 100%;
}
blockquote {
    /* font-size: 30px; */
    font-size: 1.4rem;
    color: #452679;
    margin-left: 0; /* This is a reset to the browser's built-in margin of 40 & 30 */
    margin-right: 0; /* This is a reset to the browser's built-in margin of 40 & 30 */
    margin-top: 70px; /* This is a reset to the browser's built-in margin of 40 & 30 */
    margin-bottom: 30px; /* This is a reset to the browser's built-in margin of 40 & 30 */

    padding: 0;
    position: relative;
}
blockquote p {
    font-size: 1.4rem;
}
blockquote span {
    display: block;
    position: absolute;
    left: 50px;
}
blockquote span:first-of-type {
    font-size: 14px;
    font-size: 0.875rem;
    bottom: -2rem;
}
blockquote span:nth-of-type(2) {
    font-size: 18px;
    font-size: 1.125rem;
    bottom: -3.8rem;
}
blockquote:after,
blockquote:before {
    position: absolute;
    content: "";
    background-size: 75px 35px;
    width: 75px;
    height: 35px;
}
blockquote:before {
    background-image: url(../images/svg/icon-quotation-left.svg);
    top: -40px;
    left: 0;
}
blockquote:after {
    background-image: url(../images/svg/icon-quotation-right.svg);
    bottom: -30px;
    right: 0;
}
blockquote > footer {
  font-size: 1rem;
}

@media (max-width: 1109px) {
    blockquote {
        font-size: 26px;
        font-size: 1.625rem;
    }
    blockquote span {
        position: relative;
        left: auto;
    }
    blockquote span:first-of-type {
        bottom: auto;
        margin-bottom: 5px;
    }
    blockquote span:nth-of-type(2) {
        bottom: auto;
    }
    blockquote:after,
    blockquote:before {
        background-size: 150px 75px;
        width: 150px;
        height: 75px;
    }
}
.bg-light-gray { /* 2024-11-27 Literally only used as a hack in a single place */
    background-color: #ececed;
}
.bg-medium-gray { /* 2024-11-27 Not used anywhere */
    background-color: #dfdfe0;
}
.bg-dark-gray { /* 2024-11-27 Only used in the footer */
    background-color: #2e2e2e;
}
.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.no-bullets {
    list-style-type: none;
    padding: 0;
}
.is-hidden-on-desk {
    display: none !important;
}
@media (max-width: 767px) {
    .is-hidden-on-desk {
        display: block !important;
    }
}
.is-hidden-on-mob-tab {
    display: none !important;
}
@media (min-width: 1110px) {
    .is-hidden-on-mob-tab {
        display: block !important;
    }
}
.is-hidden-on-mob {
    display: none !important;
}
@media (min-width: 768px) {
    .is-hidden-on-mob {
        display: block !important;
    }
}
.cookie--notification {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease-out 0s, visibility 0.25s cubic-bezier(0.39, 0.575, 0.565, 1) 0s, transform 0.25s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    transition-delay: 0s;
    transform: translateY(10px);
    will-change: opacity transform;
    width: 50%;
    max-width: 1024px;
}
.cookie--notification .container {
    background: #2e2e2e;
    padding: 40px 100px;
}
@media (max-width: 767px) {
    .cookie--notification {
        left: 0;
        bottom: 0;
        width: 100%;
    }
    .cookie--notification .container {
        width: auto;
        padding: 30px 20px;
    }
}
.cookie--notification.is--accepted {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cookie--notification p {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.31px;
    line-height: 1.3;
    color: #fff;
}
.cookie--notification a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    color: #eb2b5c;
}
.cookie--notification a:hover:before {
    transform: translateX(-101%);
}
.cookie--notification a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eb2b5c;
    transition: transform 0.25s ease-out;
}
.cookie--notification button {
    padding: 0;
    color: #eb2b5c;
    margin: 0;
    border-radius: 0;
    border: 0;
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: 0.42px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    float: right;
}
.cookie--notification button:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eb2b5c;
    opacity: 1;
    transition: opacity 0.25s ease-out;
}
.cookie--notification button:hover:after {
    opacity: 0;
}
.js--newsletter {
    position: relative;
    z-index: 90;
}
.newsletter--trigger {
    position: fixed;
    top: 300px;
    right: -3px;
    z-index: 99;
    transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
    opacity: 1;
    visibility: visible;
}
@media (max-width: 767px) {
    .newsletter--trigger {
        top: 196px;
    }
}
.newsletter--trigger .newsletter--container {
    border: 1px solid #eb2b5c !important;
    background: #ececed;
    border-radius: 3px;
    padding: 0 15px;
    height: 54px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    visibility: visible;
}
.newsletter--trigger .newsletter--container:hover {
    border: 1px solid #452679 !important;
}
.is--newsletter__open .newsletter--trigger {
    opacity: 1;
    visibility: visible;
}
.is--mobiledelayed .newsletter--trigger {
    opacity: 0;
    visibility: hidden;
    transition: all 0s linear 0s !important;
}
.newsletter--notification {
    position: fixed;
    top: 300px;
    right: -3px;
    z-index: 100;
    transform: translateX(100%) translateZ(0);
    transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1);
    will-change: transform;
    background: #ececed;
    border: 1px solid #dfdfe0;
    border-radius: 3px;
}
@media (max-width: 767px) {
    .newsletter--notification {
        top: 196px;
    }
    .is--mobiledelayed .newsletter--notification {
        transform: translateX(100%) translateZ(0);
    }
    .is--mobiledelayed .newsletter--notification.is--open {
        transition-delay: 2s;
        transform: translateX(0);
    }
}
.newsletter--notification.is--open {
    transform: translateX(0);
/*Note that we have some clickd design rules in main.css. Problems have been encountered with this selector
.page .clickdform .responsiveCell div span,
.post .clickdform .responsiveCell div span,
.single .clickdform .responsiveCell div span
*/
}
.newsletter--notification .clickdform.mainDiv {
    padding: 0 !important;
}
.newsletter--notification .clickdform.mainDiv #cont_id_f_9040a5d4c38ee911a967000d3a1f7ca4 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}
.newsletter--notification .clickdform.mainDiv #cont_id_f_9040a5d4c38ee911a967000d3a1f7ca4 span {
    display: inline;
    color: #454545 !important;
    font-weight: 300;
    font-family: Theinhardt, Arial, sans-serif !important;
}
.newsletter--notification .clickdform.mainDiv div.floatLeft {
    display: block;
    float: none !important;
    height: auto !important;
    font-size: 0 !important;
    margin-bottom: 0;
}
.newsletter--notification .clickdform.mainDiv span {
    display: none;
}
.newsletter--notification .newsletter--container {
    width: 290px;
    padding: 24px 34px;
}
.newsletter--notification .newsletter--container h3 {
    font-size: 22px;
    font-size: 1.375rem;
    margin-bottom: 0;
    margin-left: 12px;
}
.newsletter--notification .newsletter--container p {
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 20px;
}
.newsletter--notification .newsletter--container .newsletter--header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 20px;
}
.newsletter--notification .newsletter--container .newsletter--header svg {
    position: relative;
    top: -5px;
}
.newsletter--notification .newsletter--container input[type="email"],
.newsletter--notification .newsletter--container input[type="text"] {
    height: 50px;
    border: 0;
    border: 1px solid #d5d5d6 !important;
    font-size: 18px;
    font-size: 1.125rem;
    padding-left: 10px !important;
    padding-right: 10px !important;
    background: none;
    outline: #eb2b5c;
    background: #f3f3f4;
    width: 100%;
    max-width: 400px;
    margin: 0 !important;
    height: 42px !important;
    line-height: 42px !important;
    border: 1px solid #eb2b5c !important;
    border-radius: 6px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 10px !important;
    background: #ececed;
    -webkit-appearance: none;
}
.newsletter--notification .newsletter--container label {
    font-size: 12px;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 10px;
}
.newsletter--notification .newsletter--container label input[type="checkbox"] {
    float: left;
}
.newsletter--notification .newsletter--container label:after {
    clear: both;
    content: "";
    display: table;
}
.newsletter--notification .newsletter--container input[type="checkbox"] {
    border: 1px solid #cfcfd0;
    border-radius: 0;
    background: #ececed;
    -webkit-appearance: none;
    width: 12px !important;
    height: 12px !important;
    float: left;
}
.newsletter--notification .newsletter--container input[type="checkbox"]:checked {
    background: #eb2b5c;
}
.newsletter--notification .newsletter--container input[type="checkbox"] + span {
    font-size: 12px;
    font-size: 0.75rem;
    font-size: 12px !important;
    display: block;
    color: #ececed;
    margin: 0 !important;
}
.newsletter--notification .newsletter--container input[type="button"],
.newsletter--notification .newsletter--container input[type="submit"] {
    font-family: Theinhardt, Arial, sans-serif !important;
    border: 1px solid #eb2b5c !important;
    border-radius: 35px;
    font-weight: 300;
    font-size: 12px;
    font-size: 0.75rem;
    height: 35px !important;
    line-height: 35px !important;
    padding: 0 20px;
    color: #eb2b5c;
    background: #ececed;
    -webkit-appearance: none;
    cursor: pointer;
    margin: 0 !important;
}
.newsletter--notification .newsletter--container input[type="button"]:hover,
.newsletter--notification .newsletter--container input[type="submit"]:hover {
    color: #fff;
    background: #eb2b5c;
}
.newsletter--notification .newsletter--container .close--button {
    position: absolute;
    top: 25px;
    right: 30px;
    cursor: pointer;
    display: block;
}
.newsletter--notification .newsletter--container .close--button:hover svg * {
    stroke: #eb2b5c;
}
.footer-middle .newsletter--footer {
    display: block;
    clear: both;
    padding-top: 30px;
}
@media (max-width: 767px) {
    .footer-middle .newsletter--footer {
        padding-bottom: 30px;
    }
}
.footer-middle .newsletter--footer .clickdform.mainDiv {
    padding: 0 !important;
}
.footer-middle .newsletter--footer .clickdform.mainDiv div {
    width: auto !important;
    display: block !important;
}
.footer-middle .newsletter--footer .clickdform.mainDiv #cont_id_f_9040a5d4c38ee911a967000d3a1f7ca4 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}
.footer-middle .newsletter--footer .clickdform.mainDiv #cont_id_f_9040a5d4c38ee911a967000d3a1f7ca4 span {
    display: inline;
    color: #ececed !important;
    font-weight: 300;
    font-family: Theinhardt, Arial, sans-serif !important;
}
.footer-middle .newsletter--footer .clickdform.mainDiv div.floatLeft {
    display: block;
    float: none !important;
    height: auto !important;
    font-size: 0 !important;
    margin-bottom: 0;
}
.footer-middle .newsletter--footer .clickdform.mainDiv span {
    display: none;
}
.footer-middle .newsletter--footer .clickdform.mainDiv .responsiveRow:last-child() {
    position: absolute;
    bottom: 0;
    right: 0;
}
.footer-middle .newsletter--footer h5 {
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.21px;
    color: #ececed;
    margin-bottom: 8px;
}
.footer-middle .newsletter--footer p {
    font-size: 17px;
    font-size: 1.0625rem;
}
.footer-middle .newsletter--footer form {
    position: relative;
}
.footer-middle .newsletter--footer form:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 27px;
    width: 27px;
    background: url(../images/svg/icon-chevron-right-lg.svg) 50% no-repeat;
    background-size: 30% 30%;
}
.footer-middle .newsletter--footer input[type="email"],
.footer-middle .newsletter--footer input[type="text"] {
    -webkit-appearance: none;
    background: 0;
    border: 0 !important;
    border-bottom: 1px solid #d5d5d6 !important;
    width: 100%;
    height: 27px !important;
    padding: 0 !important;
    font-size: 12px;
    font-size: 0.75rem;
    color: #d5d5d6;
    max-width: 100% !important;
}
.footer-middle .newsletter--footer input[type="button"],
.footer-middle .newsletter--footer input[type="submit"] {
    -webkit-appearance: none;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 27px !important;
    width: 27px !important;
    text-indent: -100%;
    overflow: hidden;
    font-size: 0 !important;
    background: none;
    border: 0;
    border-radius: 0;
    margin: 0 !important;
    z-index: 10;
    cursor: pointer;
}
.wrap.container {
    max-width: 100%;
    min-height: 80vh;
    background: #ececed;
}
.wrap.container .container {
    padding-right: 20px;
    padding-left: 20px;
}
.error404 .wrap.container {
    min-height: 0;
}
.container {
    position: relative;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}
.container:after {
    clear: both;
    content: "";
    display: table;
}
.footer-section .container {
    max-width: 100%;
}
.sidebar {
    float: right;
}
.cta {
    padding: 114px 54px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}
.cta.callout .container {
    position: static;
    padding: 0 20px;
}
.cta.callout h2,
.cta.callout p {
    max-width: 40%;
}
@media (max-width: 767px) {
    .cta.callout h2,
    .cta.callout p {
        max-width: 100%;
    }
}
.cta.callout h2 {
    color: #f3f3f4;
}
.cta.callout p {
    color: #fff;
}
.cta.callout img {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    max-width: 50%;
}
@media (max-width: 1109px) {
    .cta {
        padding: 70px 20px;
        min-height: 0;
    }
    .cta.callout .container {
        padding: 0;
    }
    .cta.callout img {
        display: none;
    }
}
.page-template-template-overview-php .case-studies {
    padding: 130px 0 115px;
}
.page-template-template-overview-php .case-studies:after {
    clear: both;
    content: "";
    display: table;
}
.page-template-template-overview-php .case-studies .case-studies-item {
    width: 25%;
    float: left;
}
@media (max-width: 1109px) {
    .page-template-template-overview-php .case-studies {
        padding: 35px 0 0;
    }
}
.box-shadow {
    background: #fff;
    box-shadow: 0 0 10px -2px rgba(0, 1, 1, 0.2);
}
.thumbnail {
    overflow: hidden;
}
.thumbnail .thumbnail-img-wrap {
    display: block;
    padding-bottom: 74.3%;
    background-size: cover;
    background-position: 50%;
}
.thumbnail .thumbnail-desc {
    min-height: 180px;
    padding: 20px;
}
.thumbnail .thumbnail-meta {
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 30px;
}
.thumbnail .thumbnail-author {
    color: #eb2b5c;
    text-transform: capitalize;
}
.thumbnail .thumbnail-date {
    float: right;
}
.thumbnail .thumbnail-content {
    font-size: 16px;
    font-size: 1rem;
}
.thumbnail .thumbnail-title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
}
.thumbnail .thumbnail-title a {
    border-bottom: 1px solid #eb2b5c;
}
.thumbnail .thumbnail-title a:hover {
    border-bottom: 1px solid transparent;
}
.thumbnail .thumbnail-more {
    font-size: 20px;
    font-size: 1.25rem;
    padding-bottom: 2px;
    position: relative;
    display: inline-block;
}
.thumbnail .thumbnail-more:after {
    content: "";
    clear: both;
    display: block;
    width: 100%;
    border-top: 1px solid #eb2b5c;
    transition: all 0.15s ease-out 0s;
}
.thumbnail .thumbnail-more:hover:after {
    width: 0;
}
@media (max-width: 767px) {
    .thumbnail .thumbnail-title {
        font-size: 21px;
        font-size: 1.3125rem;
        line-height: 1.45;
    }
    .thumbnail .thumbnail-meta {
        font-size: 12px;
        font-size: 0.75rem;
    }
}
h2.section-title {
    transform: rotate(-90deg) translateX(-100%);
    position: absolute;
    left: 25px;
    top: 70px;
    transform-origin: 0 0;
    font-size: 30px;
    font-size: 1.875rem;
    color: #2e2e2e;
}
.page-template-template-product h2.section-title,
.page.contact h2.section-title,
.page h2.section-title {
    top: 115px;
}
@media (max-width: 1180px) {
    h2.section-title {
        position: static;
        transform: rotate(0) translateX(0);
        display: block;
        padding: 0 20px;
        max-width: 1040px;
        font-size: 26px;
        font-size: 1.625rem;
        margin: 0 auto 50px;
    }
}
.icon-download,
.icon-file,
.icon-link {
    fill: #eb2b5c;
    height: 18px;
    width: 18px;
    float: left;
}
.icon-download + a,
.icon-file + a,
.icon-link + a {
    color: #eb2b5c;
    font-size: 16px;
    font-size: 1rem;
    display: inline-block;
    margin-left: 6px;
}
.icon-link {
    width: 16px;
}
.container-2-cols {
    line-height: 1.5;
    padding-top: 60px;
}
.container-2-cols .column-row {
    vertical-align: top;
    display: inline-block;
    margin-bottom: 30px;
}
.container-2-cols .column-row ul {
    padding-left: 0;
}
.container-2-cols .column-row li {
    margin-bottom: 7px;
}
.container-2-cols .column-row:nth-child(odd) {
    width: 38.8888888889%;
    margin-right: 11.1111111111%;
}
.container-2-cols .column-row:nth-child(2n) {
    width: 44.4444444444%;
}
@media (max-width: 767px) {
    .container-2-cols .column-row:nth-child(2n),
    .container-2-cols .column-row:nth-child(odd) {
        width: 100%;
        margin-right: 0;
    }
}
.container-2-cols .column-row-content {
    font-size: 16px;
    font-size: 1rem;
}
.container-2-cols .column-row-content blockquote {
    margin-left: 0;
    margin-top: 50px;
}
.container-2-cols--w3,
.container-multi-cols {
    line-height: 1.5;
    padding-top: 60px;
}
.container-2-cols--w3 .column-title,
.container-multi-cols .column-title {
    font-size: 22px;
    font-size: 1.375rem;
}
.container-2-cols--w3 .column-row,
.container-multi-cols .column-row {
    display: inline-block;
    vertical-align: top;
}
.container-2-cols--w3 .column-row:nth-child(odd),
.container-multi-cols .column-row:nth-child(odd) {
    width: 38.8888888889%;
    margin-right: 16.6666666667%;
}
.container-2-cols--w3 .column-row:nth-child(2n),
.container-multi-cols .column-row:nth-child(2n) {
    width: 38.8888888889%;
}
@media (max-width: 767px) {
    .container-2-cols--w3 .column-row:nth-child(2n),
    .container-2-cols--w3 .column-row:nth-child(odd),
    .container-multi-cols .column-row:nth-child(2n),
    .container-multi-cols .column-row:nth-child(odd) {
        width: 100%;
        margin-right: 0;
    }
}
.container-2-cols--w3 .column-row-content,
.container-multi-cols .column-row-content {
    font-size: 16px;
    font-size: 1rem;
}
.overlay {
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    overflow: hidden;
    height: 100vh;
    content: "";
    background: #452679;
    opacity: 0;
    visibility: hidden;
    z-index: 90;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}
#ninja_forms_required_items,
.nf-field-container {
    clear: both;
    position: relative;
    margin-bottom: 25px;
}
.field-wrap.listselect-wrap.nf-error .ninja-forms-field {
    border-radius: 38px;
}
.page .email-container,
.page .firstname-container,
.post .email-container,
.post .firstname-container,
.single .email-container,
.single .firstname-container {
    position: relative;
    left: -1%;
}
.page .lastname-container,
.page .phone-container,
.post .lastname-container,
.post .phone-container,
.single .lastname-container,
.single .phone-container {
    position: relative;
    right: -1%;
}
.page .email-container,
.page .firstname-container,
.page .lastname-container,
.page .phone-container,
.post .email-container,
.post .firstname-container,
.post .lastname-container,
.post .phone-container,
.single .email-container,
.single .firstname-container,
.single .lastname-container,
.single .phone-container {
    float: left;
    clear: none;
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
}
.page .email-container .nf-error-wrap,
.page .firstname-container .nf-error-wrap,
.page .lastname-container .nf-error-wrap,
.page .phone-container .nf-error-wrap,
.post .email-container .nf-error-wrap,
.post .firstname-container .nf-error-wrap,
.post .lastname-container .nf-error-wrap,
.post .phone-container .nf-error-wrap,
.single .email-container .nf-error-wrap,
.single .firstname-container .nf-error-wrap,
.single .lastname-container .nf-error-wrap,
.single .phone-container .nf-error-wrap {
    position: absolute;
    bottom: -15px;
    left: 0;
}
.page .ninja-forms-req-symbol,
.post .ninja-forms-req-symbol,
.single .ninja-forms-req-symbol {
    color: #eb2b5c !important;
}
.page .nf-form-fields-required,
.post .nf-form-fields-required,
.single .nf-form-fields-required {
    margin-bottom: 50px;
}
.page .nf-error-msg,
.post .nf-error-msg,
.single .nf-error-msg {
    font-size: 12px;
    font-size: 0.75rem;
    color: #eb2b5c !important;
}
.page .nf-field-label label,
.page label,
.post .nf-field-label label,
.post label,
.single .nf-field-label label,
.single label {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: #2e2e2e;
    font-weight: 500;
}
.page .nf-field-label label span,
.page label span,
.post .nf-field-label label span,
.post label span,
.single .nf-field-label label span,
.single label span {
    color: #2e2e2e;
}
.page select,
.page textarea,
.post select,
.post textarea,
.single select,
.single textarea {
    border: 1px solid #d5d5d6;
    padding: 10px;
    border-radius: 0;
    background: #f3f3f4 !important;
}
.page select,
.post select,
.single select {
    height: 50px !important;
    padding: 5px 20px 0;
    background: none !important;
    font-size: 18px;
    font-size: 1.125rem;
    position: relative;
    z-index: 10;
    border: 0;
    color: #454545;
}
.page option,
.post option,
.single option {
    font-size: 18px;
    font-size: 1.125rem;
}
.page .list-select-wrap .nf-field-element,
.post .list-select-wrap .nf-field-element,
.single .list-select-wrap .nf-field-element {
    position: relative;
    border: 1px solid #5a5a5a;
    border-radius: 30px;
    overflow: hidden;
}
.page .list-select-wrap .nf-field-element:after,
.post .list-select-wrap .nf-field-element:after,
.single .list-select-wrap .nf-field-element:after {
    content: "";
    width: 15px;
    height: 77px;
    position: absolute;
    top: -14px;
    right: 20px;
    background: url(../images/svg/chevron-down-form.svg) 50% no-repeat;
    background-size: contain;
}
.page .clickdform input[type="button"],
.post .clickdform input[type="button"],
.single .clickdform input[type="button"] {
    color: #eb2b5c !important;
}
.page .clickdform input[type="button"]:hover,
.post .clickdform input[type="button"]:hover,
.single .clickdform input[type="button"]:hover {
    color: #fff !important;
}
.page .clickdform select,
.post .clickdform select,
.single .clickdform select {
    -webkit-appearance: menulist !important;
}
.page .clickdform .responsiveCell,
.post .clickdform .responsiveCell,
.single .clickdform .responsiveCell {
    text-align: left !important;
}
/*This rule seems to cause ugly ClickD form behaviour when the form is in a grid and on mobile */
.page .clickdform .responsiveCell div span,
.post .clickdform .responsiveCell div span,
.single .clickdform .responsiveCell div span {
    margin-top: 20px;
}
.page .clickdform .responsiveCell table,
.page .clickdform .responsiveCell table tr:first-child td,
.page .clickdform .responsiveCell table tr td:nth-child(odd),
.page .clickdform .responsiveCell td,
.post .clickdform .responsiveCell table,
.post .clickdform .responsiveCell table tr:first-child td,
.post .clickdform .responsiveCell table tr td:nth-child(odd),
.post .clickdform .responsiveCell td,
.single .clickdform .responsiveCell table,
.single .clickdform .responsiveCell table tr:first-child td,
.single .clickdform .responsiveCell table tr td:nth-child(odd),
.single .clickdform .responsiveCell td {
    box-shadow: none;
    border: 0;
    background: transparent;
    margin-top: 20px;
    font-size: 14px;
}
.page .clickdform #btnSubmit,
.page .clickdform .WizardNextButton,
.post .clickdform #btnSubmit,
.post .clickdform .WizardNextButton,
.single .clickdform #btnSubmit,
.single .clickdform .WizardNextButton {
    margin-right: -100px;
}
.page input[type="email"],
.page input[type="number"],
.page input[type="password"],
.page input[type="tel"],
.page input[type="text"],
.post input[type="email"],
.post input[type="number"],
.post input[type="password"],
.post input[type="tel"],
.post input[type="text"],
.single input[type="email"],
.single input[type="number"],
.single input[type="password"],
.single input[type="tel"],
.single input[type="text"] {
    height: 50px;
    border: 0;
    border: 1px solid #d5d5d6 !important;
    font-size: 18px;
    font-size: 1.125rem;
    padding-left: 10px !important;
    padding-right: 10px !important;
    background: none;
    outline: #eb2b5c;
    background: #f3f3f4;
    width: 100%;
    max-width: 400px;
}
.nf-error .page input[type="email"],
.nf-error .page input[type="number"],
.nf-error .page input[type="password"],
.nf-error .page input[type="tel"],
.nf-error .page input[type="text"],
.nf-error .post input[type="email"],
.nf-error .post input[type="number"],
.nf-error .post input[type="password"],
.nf-error .post input[type="tel"],
.nf-error .post input[type="text"],
.nf-error .single input[type="email"],
.nf-error .single input[type="number"],
.nf-error .single input[type="password"],
.nf-error .single input[type="tel"],
.nf-error .single input[type="text"] {
    border: 1px solid #eb2b5c !important;
}
.page input[type="range"],
.post input[type="range"],
.single input[type="range"] {
    -webkit-appearance: none;
    width: 200px;
    margin: 6px;
    position: relative;
    top: -4px;
}
.page input[type="range"]:focus,
.post input[type="range"]:focus,
.single input[type="range"]:focus {
    outline: none;
}
.page input[type="range"]::-webkit-slider-runnable-track,
.post input[type="range"]::-webkit-slider-runnable-track,
.single input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2.2px;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(60, 0, 0, 0), 0 0 0 rgba(86, 0, 0, 0);
    background: #d5d5d6;
    border-radius: 0;
    border: 0 solid rgba(0, 0, 1, 0);
}
.page input[type="range"]::-webkit-slider-thumb,
.post input[type="range"]::-webkit-slider-thumb,
.single input[type="range"]::-webkit-slider-thumb {
    box-shadow: 0 0 0 transparent, 0 0 0 hsla(0, 0%, 5%, 0);
    border: 3px solid #ff2b5c;
    height: 20px;
    width: 20px;
    border-radius: 20px;
    background: rgba(235, 43, 92, 0);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8.9px;
}
.page input[type="range"]:focus::-webkit-slider-runnable-track,
.post input[type="range"]:focus::-webkit-slider-runnable-track,
.single input[type="range"]:focus::-webkit-slider-runnable-track {
    background: #d5d5d6;
}
.page input[type="range"]::-moz-range-track,
.post input[type="range"]::-moz-range-track,
.single input[type="range"]::-moz-range-track {
    width: 100%;
    height: 2.2px;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(60, 0, 0, 0), 0 0 0 rgba(86, 0, 0, 0);
    background: #d5d5d6;
    border-radius: 0;
    border: 0 solid rgba(0, 0, 1, 0);
}
.page input[type="range"]::-moz-range-thumb,
.post input[type="range"]::-moz-range-thumb,
.single input[type="range"]::-moz-range-thumb {
    box-shadow: 0 0 0 transparent, 0 0 0 hsla(0, 0%, 5%, 0);
    border: 3px solid #ff2b5c;
    height: 20px;
    width: 20px;
    border-radius: 20px;
    background: rgba(235, 43, 92, 0);
    cursor: pointer;
}
.page input[type="range"]::-ms-track,
.post input[type="range"]::-ms-track,
.single input[type="range"]::-ms-track {
    width: 100%;
    height: 2.2px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
.page input[type="range"]::-ms-fill-lower,
.page input[type="range"]::-ms-fill-upper,
.post input[type="range"]::-ms-fill-lower,
.post input[type="range"]::-ms-fill-upper,
.single input[type="range"]::-ms-fill-lower,
.single input[type="range"]::-ms-fill-upper {
    background: #d5d5d6;
    border: 0 solid rgba(0, 0, 1, 0);
    border-radius: 0;
    box-shadow: 0 0 0 rgba(60, 0, 0, 0), 0 0 0 rgba(86, 0, 0, 0);
}
.page input[type="range"]::-ms-thumb,
.post input[type="range"]::-ms-thumb,
.single input[type="range"]::-ms-thumb {
    box-shadow: 0 0 0 transparent, 0 0 0 hsla(0, 0%, 5%, 0);
    border: 3px solid #ff2b5c;
    height: 20px;
    width: 20px;
    border-radius: 20px;
    background: rgba(235, 43, 92, 0);
    cursor: pointer;
    height: 2.2px;
}
.page input[type="range"]:focus::-ms-fill-lower,
.page input[type="range"]:focus::-ms-fill-upper,
.post input[type="range"]:focus::-ms-fill-lower,
.post input[type="range"]:focus::-ms-fill-upper,
.single input[type="range"]:focus::-ms-fill-lower,
.single input[type="range"]:focus::-ms-fill-upper {
    background: #d5d5d6;
}
.page form.which-dynamics,
.post form.which-dynamics,
.single form.which-dynamics {
    padding: 50px;
    background: #fff;
    border: #d5d5d6;
}
.page form.which-dynamics input[type="number"],
.post form.which-dynamics input[type="number"],
.single form.which-dynamics input[type="number"] {
    max-width: 125px;
    text-align: right;
}
.page .entry-content table,
.post .entry-content table,
.single-campaign .entry-content table {
    border: 0;
    box-shadow: 0 0 2px #d5d5d6;
    table-layout: fixed;
    border-collapse: collapse;
    margin-bottom: 30px;
    margin-top: 30px;
}
.page .entry-content table td,
.post .entry-content table td,
.single-campaign .entry-content table td {
    border: 1px solid #d5d5d6;
    word-break: break-word;
}
.page .entry-content table td h3,
.post .entry-content table td h3,
.single-campaign .entry-content table td h3 {
    margin-bottom: 0;
    font-size: 18px;
    font-size: 1.125rem;
}
.page .entry-content table tr,
.post .entry-content table tr,
.single-campaign .entry-content table tr {
    color: #454545;
}
.page .entry-content table tr:first-child td,
.post .entry-content table tr:first-child td,
.single-campaign .entry-content table tr:first-child td {
    font-size: 16px;
    font-size: 1rem;
    color: #454545;
}
.page .entry-content table tr a,
.post .entry-content table tr a,
.single-campaign .entry-content table tr a {
    color: #eb2b5c;
}
.page .entry-content table tr a:hover,
.post .entry-content table tr a:hover,
.single-campaign .entry-content table tr a:hover {
    color: #454545;
}
.page .entry-content table tr td,
.post .entry-content table tr td,
.single-campaign .entry-content table tr td {
    width: auto !important;
    padding: 10px;
}
.page .entry-content table tr td:nth-child(odd),
.post .entry-content table tr td:nth-child(odd),
.single-campaign .entry-content table tr td:nth-child(odd) {
    background: #f3f3f4;
}
.page.encore-umbrella thead > tr > th {
    font-weight: 500;
}
@media (max-width: 1109px) {
    .page .entry-content table,
    .post .entry-content table,
    .single-campaign .entry-content table {
        max-width: 100%;
        overflow: hidden;
        overflow-x: scroll;
        display: block;
        white-space: nowrap;
    }
    .page .entry-content table tbody,
    .post .entry-content table tbody,
    .single-campaign .entry-content table tbody {
        width: 100%;
    }
}
.single-campaign .entry-content table tr td:first-child {
    width: 45%;
}
.entry-content ol li a {
    color: #eb2b5c;
}
.entry-content ol li a:hover {
    color: #454545;
}
.entry-content ul {
    margin: 0 0 30px;
    padding: 0;
}
.entry-content ul ul {
    margin: 10px 0;
    padding: 0;
}
.entry-content article.proper-width-article ol li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 7px;
}
.entry-content ul li {
    list-style: none;
    padding-left: 16px;
    position: relative;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 7px;
}
.entry-content ul li a {
    color: #eb2b5c;
}
.entry-content ul li a:hover {
    color: #454545;
}
.entry-content ul li:before {
    display: inline-block;
    content: "";
    width: 6px;
    height: 6px;
    border: 2px solid #452679;
    position: absolute;
    top: 7px;
    left: 0;
    border-radius: 20px;
}
.entry-content ul > li > ul > li {
    color: #452679;
}
.entry-content ul > li > ul > li:before {
    background: #452679;
}
.entry-content ul > li > ul > li > ul {
    margin-left: -15px;
}
.entry-content ul > li > ul > li > ul > li {
    color: #454545;
}
.entry-content ul > li > ul > li > ul > li:before {
    display: inline-block;
    background: #452679;
}
.entry-content ul.post-categories li {
    padding: 0;
}
.entry-content ul.post-categories li:before {
    display: none;
}
.entry-content ul.breadcrumb {
    margin: 0 -10px 30px;
    padding: 0;
}
.entry-content ul.breadcrumb:after {
    clear: both;
    content: "";
    display: table;
}
.entry-content ul.breadcrumb li {
    float: left;
    padding: 0;
    font-size: 14px;
    font-size: 0.875rem;
}
.entry-content ul.breadcrumb li:after {
    content: " | ";
    position: relative;
    left: -1px;
}
.entry-content ul.breadcrumb li:last-child:after {
    content: "";
}
.entry-content ul.breadcrumb li a {
    display: inline-block;
    padding: 0 10px;
    color: #eb2b5c;
    position: relative;
}
.entry-content ul.breadcrumb li a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
}
.entry-content ul.breadcrumb li:hover a:after {
    border-top: 1px solid #eb2b5c;
}
.entry-content ul.breadcrumb li:before {
    display: none;
}
.entry-content ul.social {
    margin: 0 -4px;
}
.entry-content ul.social:after {
    clear: both;
    content: "";
    display: table;
}
.entry-content ul.social li {
    padding: 0;
    float: left;
    margin: 0 4px;
}
.entry-content ul.social li:before {
    display: none;
}
.entry-content ul.social li > a {
    position: relative;
    width: 29px;
    height: 1px;
    padding-top: 29px;
    overflow: hidden;
    text-indent: -100%;
    display: block;
}
.social-share-p {
    margin-bottom: unset;
    font-size: 1.25rem;
    text-align: center;
}
.social-share-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0.25rem;
    margin: .5rem 0.25rem;
}
.social-share-icon {
    width: 1.75rem;
}
img.footer-icon-social {
    fill: #452679;
    height: 29px;
}
.entry-content ul.social li > a img.footer-icon-social {
    height: 29px;
    width: 29px;
    position: absolute;
    top: 0;
    left: 0;
    fill: #eb2b5c;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.entry-content ul.social li:hover > a svg {
    fill: #452679;
}
ul.price {
    display: block;
    float: left;
    width: 30% !important;
    padding: 5px;
    list-style-type: none;
    margin: 40px 1%;
    padding: 0;
    transition: 0.3s;
}
ul.price li {
    padding: 10px;
    list-style-type: none;
    background: #fff;
    text-align: center;
    margin-bottom: 0;
    word-wrap: break-word;
}
ul.price li:before {
    display: none;
}
ul.price li:first-child {
    background: linear-gradient(55deg, #452679 35%, #eb2b5c);
    background-attachment: fixed;
    color: #fff;
}
ul.price li:nth-child(2) {
    font-size: 24px;
    font-size: 1.5rem;
    padding: 20px 20px 0;
    background-color: #f3f3f4;
    margin-bottom: 0;
}
ul.price li:nth-child(3) {
    font-size: 12px;
    font-size: 0.75rem;
    padding: 0 20px 20px;
    background-color: #f3f3f4;
}
ul.price li:nth-child(n + 4) {
    margin-top: 1px;
}
ul.price li:last-child {
    background-color: transparent;
    margin-top: 5px;
}
ul.price li:last-child a:hover {
    color: #fff;
}
@media only screen and (max-width: 1130px) {
    ul.price {
        width: 100% !important;
    }
}
.btn,
.button,
.entry-content .button,
.fileinput-button,
input[type="button"] {
    color: #eb2b5c;
    font-weight: 500;
    border: 2px solid #eb2b5c;
    border-radius: 30px;
    padding: 0 20px;
    height: 45px !important;
    line-height: 45px;
    display: inline-block;
    background: none;
    cursor: pointer;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn.large,
.button.large,
.fileinput-button.large,
input[type="button"].large {
    height: 50px !important;
    line-height: 50px;
}
.btn:hover,
.button:hover,
.fileinput-button:hover,
input[type="button"]:hover {
    background: #eb2b5c;
    color: #f3f3f4;
}
.entry-content .btn:hover,
.entry-content .button:hover {
    background: var(--encore-pink);
    color: #f3f3f4;
}
@media (max-width: 1109px) {
    .btn,
    .btn.large,
    .button,
    .button.large,
    .fileinput-button,
    .fileinput-button.large,
    input[type="button"],
    input[type="button"].large {
        font-size: 14px;
        font-size: 0.875rem;
    }
}
header.banner {
    position: relative;
    z-index: 99;
}
header.banner .header-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    z-index: 9;
    filter: grayscale(100%);
}
@media (max-width: 1109px) {
    header.banner .header-bg {
        background-position: 100% 0;
    }
}
header.banner.no-header:before {
    opacity: 1;
}
header.banner.no-header .header-bg {
    background-image: url(../images/solutions-hero-erp.png);
    z-index: 90;
    filter: none;
    background-position: 100% 100%;
    background-size: cover;
}
header.banner.no-header .header-bg:before {
    opacity: 1;
}
.single header.banner.no-header .header-bg {
    display: none;
}
.no-cssfilters header.banner .header-bg {
    filter: url(../images/svg-filter/desaturate.svg#grayscale);
}
.page-parent header.banner:after,
.page-template-template-overview header.banner:after,
.page-template-template-product header.banner:after {
    display: block;
}
.page-template-template-product header.banner .header-bg {
    z-index: 90;
    filter: none;
    background-position: 100% 100%;
    background-size: contain;
}
.page-template-template-product header.banner:before {
    opacity: 1;
}
header.banner:after,
header.banner:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}
header.banner:before {
    background: rgba(69, 38, 121, 0.9);
    z-index: 2;
}
header.banner:after {
    background: linear-gradient(35deg, rgba(125, 185, 232, 0) -1%, rgba(202, 85, 134, 0) 50%, rgba(235, 43, 92, 0.75));
    opacity: 1;
    z-index: 5;
}
header.banner > .container {
    padding-top: 134px;
    position: relative;
    z-index: 99;
    max-width: 100%;
    padding-bottom: 0;
}
.archive header.banner > .container,
.blog header.banner > .container,
.page-template-template-product header.banner > .container,
.search-results header.banner > .container {
    padding-bottom: 70px;
}
.nav-active header.banner > .container {
    z-index: 99;
}
@media (max-width: 1109px) {
    header.banner > .container {
        padding-top: 0;
        min-height: 134px;
    }
    .post-type-archive-event header.banner > .container,
    .post-type-archive-press header.banner > .container {
        padding-bottom: 0;
    }
}
header.banner svg {
    fill: #fff;
}
@media (max-width: 1109px) {
    header.banner .nav-head {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 134px;
        z-index: 90;
    }
    .second-state header.banner .nav-head {
        height: 70px;
        background: #452679;
    }
    .nav-active header.banner .nav-head {
        background: #fff;
        z-index: 100;
    }
}
header.banner .hamburger-menu {
    display: none;
}
@media (max-width: 1109px) {
    header.banner .hamburger-menu {
        position: absolute;
        top: 33px;
        right: 20px;
        transform: translateY(-50%);
        display: block;
    }
}
header.banner .brand {
    /*This class controls scale of the logo in the header. In January 2021, */

    position: absolute;
    top: 32px;
    left: 54px;
    z-index: 103;
}
header.banner .brand svg {
    /*This class controls placement of the logo in the header. In January 2021, Mike tweaked its settings to make the 2021 logo look good.*/ 
    width: 75px;
    height: 75px;
    left: 20px;
}
.second-state header.banner .brand {
    /* This class controls the placement and crop of the logo when the screen is scrolled down so that only the "encore" name in the logo appears. In Jan 2021, Mike changed the height and top attributes here.*/

    overflow: hidden;
    height: 30px;
    width: 80px;
    display: inline-block;
    position: fixed;
    top: 15px;
}
.second-state header.banner .brand svg {
    position: absolute;
    bottom: 0;
    left: 0;
}
@media (max-width: 1109px) {
    /* This class controls the left-right placement of the header logo when (a) the desktop window is narrow, or (b) the user is on a mobile device. In January 2021, Mike adjusted it to make the new logo not be flush to the left of the screen in those situations.*/
    header.banner .brand {
        position: fixed;
        left: 15px;
    }
    header.banner .brand svg {
        fill: #fff;
    }
    .nav-active header.banner .brand svg {
        fill: #452679;
    }
}
header.banner .nav-primary {
    max-width: 1040px;
    margin: 0 auto;
    padding: 84px 84px 0;
}
.second-state header.banner .nav-primary {
    margin-top: 0;
    padding: 23px 20px 0;
}
@media (max-width: 1330px) {
    header.banner .nav-primary {
        float: left;
        margin-top: 84px;
        margin-left: 144px;
        max-width: 100%;
        padding: 0 20px;
    }
    header.banner .nav-primary .second-state {
        margin-top: 0;
        padding: 23px 20px 0;
    }
}
@media (max-width: 1109px) {
    header.banner .nav-primary {
        margin: 0;
        float: none;
        padding: 0;
    }
    .second-state header.banner .nav-primary {
        padding: 0;
    }
}
header.banner .nav-secondary {
    position: absolute;
    top: 90px;
    right: 54px;
}
.second-state header.banner .nav-secondary {
    top: 28px;
}
@media (max-width: 1109px) {
    header.banner .nav-secondary {
        position: static;
    }
}
header.banner .nav-tertiary {
    padding: 0;
    bottom: 30px;
    left: 20px;
}
header.banner .nav-anchor {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 20px;
    height: 70px;
    cursor: pointer;
}
.fourth-state header.banner .nav-anchor {
    position: fixed;
    bottom: auto;
    top: 0;
    background: #452679;
    transition: top 0.3s ease-out;
    z-index: 100;
}
.fourth-state.up header.banner .nav-anchor {
    top: 70px;
    transition-delay: 0.25s !important;
    transition: top 0.3s ease-out;
}
@media (max-width: 1330px) {
    header.banner .nav-anchor #menu-anchor-navigation {
        max-width: 1040px;
        width: auto;
    }
    .second-state header.banner .nav-anchor {
        background: #452679;
        /* z-index: 84; /* Removed as part of a cleanup to standardize at a full-until-mobile breakpoint of 800px */
        z-index: 100;
    }
}
@media (max-width: 800px) {
    header.banner .nav-anchor {
        margin-left: 0;
        z-index: 84;
        padding: 0 20px;
        background: #61468d;
    }
    header.banner .nav-anchor #menu-anchor-navigation {
        max-width: none;
    }
    .fourth-state header.banner .nav-anchor {
        background: #61468d;
        padding: 0 20px;
        left: 0;
        width: 100%;
        transition: top 0.3s ease-out;
    }
}
header.banner .contact {
    position: absolute;
    top: 31px;
    right: 54px;
    padding: 0;
    opacity: 1;
}
header.banner .contact svg {
    height: 18px;
    width: 18px;
    margin-right: 8px;
    position: relative;
    top: 3px;
}
.second-state header.banner .contact {
    opacity: 0;
    visibility: hidden;
}
@media (max-width: 1109px) {
    header.banner .contact {
        position: static;
        padding: 0 20px;
    }
}
header.banner section {
    padding: 0 20px;
    background: none;
}
header.banner section .container {
    max-width: 910px;
    margin: 0 auto;
    padding: 112px 0;
}
header.banner section .container:after {
    clear: both;
    content: "";
    display: table;
}
header.banner section .container > div {
    max-width: 375px;
    float: left;
}
header.banner section .container > div:nth-child(2) {
    float: right;
}
.header-bg {
    opacity: 1;
    transition: opacity 0.5s ease-out;
}
.supports .header-bg {
    opacity: 1;
}
.nav-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 134px;
    z-index: 90;
}
.second-state .nav-container {
    position: fixed;
    background: #452679;
    height: 70px;
    top: 0;
}
.third-state .nav-container,
.third-state.up .nav-container {
    position: absolute;
    bottom: 70px !important;
    top: auto;
}
.third-state.fourth-state .nav-container {
    position: fixed;
    top: 0;
}
.third-state.fourth-state.up .nav-container {
    top: 0;
    transition: all 0s ease !important;
    transition-delay: 0.25s !important;
    z-index: 102;
}
@media (max-width: 1109px) {
    .nav-container {
        height: calc(100vh - 134px);
        background: #fff;
        position: fixed;
        overflow: auto;
        top: 134px !important;
        opacity: 0;
        visibility: hidden;
    }
    .nav-container.active {
        opacity: 1;
        visibility: visible;
        z-index: 101;
    }
    .second-state .nav-container {
        height: calc(100vh - 70px);
        background: #fff;
        top: 69px !important;
    }
    .second-state.third-state .nav-container {
        position: fixed;
    }
}
.menu-primary-navigation {
    margin: 0 -15px;
    padding: 0;
    display: inline-block;
}
.menu-primary-navigation:after {
    clear: both;
    content: "";
    display: table;
}
.menu-primary-navigation li {
    list-style: none;
}
.menu-primary-navigation.no-intent > li .subnav {
    transition: all 0.15s ease-out 0s;
    transition-delay: 0.25s;
}
.menu-primary-navigation.no-intent > li:hover .subnav {
    transition: all 0s ease !important;
    transition-delay: 0.15s !important;
}
.menu-primary-navigation > li {
    float: left;
    padding: 0 15px;
    height: 52px;
    font-size: 22px;
    font-size: 1.375rem;
}
.menu-primary-navigation > li > a {
    color: #fff;
    display: block;
}
.menu-primary-navigation > li > a:after {
    content: "";
    display: block;
    border-top: 2px solid #eb2b5c;
    width: 100%;
    opacity: 0;
    position: relative;
    top: 2px;
    transition: all 0.15s ease-out 0s;
}
.menu-primary-navigation > li.current-menu-item > a:after,
.menu-primary-navigation > li.current-page-ancestor > a:after {
    width: 100%;
    opacity: 1;
    top: -3px;
}
.menu-primary-navigation > li:hover > a:after {
    width: 100%;
    opacity: 1;
    top: -3px;
    transition: all 0.15s ease-out 0s;
}
.menu-primary-navigation > li:hover .subnav {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) !important;
    transition-delay: 0.25s !important;
}
@media (max-width: 1109px) {
    .menu-primary-navigation {
        margin: 0;
        padding: 0;
        display: block;
    }
    .menu-primary-navigation.no-intent > li:hover .subnav {
        transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
        transition-delay: 0s;
    }
    .menu-primary-navigation > li {
        float: none;
        padding: 0;
        height: auto;
        font-size: 21px;
        font-size: 1.3125rem;
        line-height: 1;
        border-top: 1px solid #ececed;
        position: relative;
    }
    .menu-primary-navigation > li.has-sub:before {
        content: "";
        width: 50px;
        height: 50px;
        background: url(../images/svg/icon-chevron2-nav.svg) 50% no-repeat;
        background-size: 30% 30%;
        display: block;
        position: absolute;
        top: 0;
        right: 6px;
    }
    .menu-primary-navigation > li > a {
        padding: 17px 20px;
        color: #2e2e2e;
        height: auto;
        position: relative;
    }
    .menu-primary-navigation > li > a:after {
        display: none;
    }
    .menu-primary-navigation > li.active {
        background: #f3f3f4;
    }
    .menu-primary-navigation > li.active.has-sub:before {
        background: url(../images/svg/icon-chevron-nav.svg) 50% no-repeat;
        background-size: 30% 30%;
    }
    .menu-primary-navigation > li.active .subnav {
        max-height: 100vh;
        transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    }
    .second-state .menu-primary-navigation > li {
        font-size: 21px;
        font-size: 1.3125rem;
    }
}
.menu-primary-navigation .subnav {
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 90;
    top: 134px;
    left: 0;
    width: 100%;
    background: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 10px -2px rgba(0, 1, 1, 0.4);
    transition: all 0s ease !important;
    transition-delay: 0.28s !important;
    padding-top: 70px;
    padding-bottom: 0;
    padding-left: 370px;
    overflow: auto;
    max-height: 90vh;
    min-height: 60vh;
}
.menu-primary-navigation .subnav:after {
    clear: both;
    content: "";
    display: table;
}
.menu-primary-navigation .subnav > a {
    display: none;
}
.menu-primary-navigation .subnav > div {
    width: 320px;
    padding: 0 54px;
    display: block;
    background: #ececed;
    padding-top: 70px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
.menu-primary-navigation .subnav > div h4 {
    font-size: 18px;
    font-size: 1.125rem;
    color: #eb2b5c;
    line-height: 1;
}
.menu-primary-navigation .subnav > div h4 a {
    color: #eb2b5c;
}
.menu-primary-navigation .subnav > div p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.571;
    margin-bottom: 20px;
}
.menu-primary-navigation .subnav > div h5 {
    display: block;
    margin: 50px 0 24px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.142;
    font-weight: 500;
    color: #5a5a5a;
}
.menu-primary-navigation .subnav > div > a {
    font-size: 14px;
    font-size: 0.875rem;
    height: 40px !important;
    line-height: 40px;
}
.menu-primary-navigation .subnav > div > ul {
    margin: 0;
    padding: 0;
}
.menu-primary-navigation .subnav > div > ul > li {
    font-size: 18px;
    font-size: 1.125rem;
}
.menu-primary-navigation .subnav > div > ul > li > a {
    color: #eb2b5c;
}
.menu-primary-navigation .subnav > div > ul > li > a:hover {
    color: #452679;
}
.menu-primary-navigation .subnav > li {
    width: 25%;
    padding: 0 0 40px 54px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.142;
    font-weight: 500;
}
.menu-primary-navigation .subnav > li > ul {
    margin: 20px 0;
    padding: 0;
}
.menu-primary-navigation .subnav > li > ul > li {
    font-weight: 300;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.333;
    margin-bottom: 13px;
}
.menu-primary-navigation .subnav > li > ul > li > a {
    display: inline;
    border: none;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.menu-primary-navigation .subnav > li > ul > li:hover > a {
    border-bottom: 1px solid #eb2b5c;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.second-state .menu-primary-navigation .subnav {
    top: 70px;
}
@media (max-width: 1109px) {
    .menu-primary-navigation .subnav {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: 0 0 0 0 transparent;
        max-height: 0;
        min-height: 0;
        display: block;
        overflow: hidden;
        transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
        padding: 0;
    }
    .menu-primary-navigation .subnav > a {
        display: block;
        padding: 17px 44px;
        background: #f3f3f4;
        border-top: 1px solid #ececed;
        font-size: 16px;
        font-size: 1rem;
    }
    .menu-primary-navigation .subnav > div {
        display: none;
    }
    .menu-primary-navigation .subnav > li {
        float: none;
        width: auto;
        min-height: 0;
        padding: 0;
        font-size: 16px;
        font-size: 1rem;
        font-weight: 400;
        border-top: 1px solid #ececed;
        background: #f3f3f4;
        position: relative;
        display: block;
    }
    .menu-primary-navigation .subnav > li.has-sub:before {
        content: " + ";
        width: 20px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        display: block;
        position: absolute;
        top: 0;
        left: 20px;
        color: #eb2b5c;
        font-size: 18px;
        font-size: 1.125rem;
    }
    .menu-primary-navigation .subnav > li.active {
        background: #ececed;
    }
    .menu-primary-navigation .subnav > li.active.has-sub:before {
        content: " - ";
        font-size: 26px;
        font-size: 1.625rem;
    }
    .menu-primary-navigation .subnav > li.active.has-sub > ul {
        display: block;
        padding: 0 0 17px;
        max-height: 100vh;
        transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    }
    .menu-primary-navigation .subnav > li > a {
        padding: 17px 20px 17px 44px;
        display: block;
        position: relative;
    }
    .menu-primary-navigation .subnav > li > ul {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        display: block;
        background: #ececed;
        padding: 0;
        transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    }
    .menu-primary-navigation .subnav > li > ul > li {
        margin: 0;
    }
    .menu-primary-navigation .subnav > li > ul > li > a {
        display: block;
        padding: 6px 44px;
        font-size: 16px;
        font-size: 1rem;
    }
    .menu-primary-navigation .subnav > li > ul > li:hover > a {
        border: 0;
    }
}
.menu-secondary-navigation {
    margin: 0 -15px;
    padding: 0;
}
.menu-secondary-navigation:after {
    clear: both;
    content: "";
    display: table;
}
.menu-secondary-navigation > li {
    list-style: none;
    float: left;
    margin: 0 18px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
}
.menu-secondary-navigation > li > a {
    color: #fff;
    display: block;
    padding: 10px 0 2px;
    position: relative;
    top: -10px;
}
.menu-secondary-navigation > li.active > a,
.menu-secondary-navigation > li:hover > a {
    border-bottom: 1px solid #fff;
}
.menu-secondary-navigation > li:last-child {
    font-weight: 500;
}
.menu-secondary-navigation > li:last-child:hover > a {
    color: #452679;
    background: #fff;
    text-decoration: none;
}
.menu-secondary-navigation > li:last-child > a {
    padding: 13px 20px 10px;
    border: 2px solid #fff;
    border-radius: 26px;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-block;
    position: relative;
    top: -15px;
}
.menu-secondary-navigation > .menu-blog,
.menu-secondary-navigation > .menu-events,
.menu-secondary-navigation > .menu-store,
.menu-secondary-navigation > .menu-careers,
.menu-secondary-navigation > .menu-support {
    font-size: 18px;
    font-size: 1.125rem;
}
@media (max-width: 1109px) {
    .menu-secondary-navigation {
        margin: 0;
    }
    .menu-secondary-navigation > li {
        float: none;
        margin: 0;
        font-size: 21px;
        font-size: 1.3125rem;
        line-height: 1;
        border-top: 1px solid #ececed;
        position: relative;
    }
    .menu-secondary-navigation > li > a {
        padding: 17px 20px;
        display: block;
        color: #2e2e2e;
        height: auto;
        position: static;
    }
    .menu-secondary-navigation > li > a:after {
        display: none;
    }
    .menu-secondary-navigation > li:hover > a {
        border: 0;
    }
    .menu-secondary-navigation > li:last-child > a {
        position: static;
        padding: 17px 20px;
        border: 0;
    }
    .menu-secondary-navigation > .menu-blog,
    .menu-secondary-navigation > .menu-events,
    .menu-secondary-navigation > .menu-careers,
    .menu-secondary-navigation > .menu-support {
        font-size: 21px;
        font-size: 1.3125rem;
    }
    .menu-secondary-navigation > .menu-contact {
        font-weight: 400;
    }
}
.menu-tertiary-navigation {
    margin: 0 -15px;
    padding: 0;
}
.menu-tertiary-navigation:after {
    clear: both;
    content: "";
    display: table;
}
.parent-pageid-12 .menu-tertiary-navigation,
.single-casestudies .menu-tertiary-navigation {
    margin: -50px -10px 60px;
    position: static;
}
.parent-pageid-12 .menu-tertiary-navigation > li,
.single-casestudies .menu-tertiary-navigation > li {
    margin: 0 10px;
    font-size: 18px;
    font-size: 1.125rem;
}
.parent-pageid-12 .menu-tertiary-navigation > li > a:after,
.single-casestudies .menu-tertiary-navigation > li > a:after {
    bottom: 6px;
}
.menu-tertiary-navigation span {
    display: none;
}
.menu-tertiary-navigation > li {
    float: left;
    list-style: none;
    font-size: 46px;
    font-size: 2.875rem;
    margin: 0 15px;
}
.menu-tertiary-navigation > li.active > a:after,
.menu-tertiary-navigation > li.current_page_item > a:after,
.menu-tertiary-navigation > li:hover > a:after {
    width: 100%;
    opacity: 1;
}
.menu-tertiary-navigation > li > a {
    color: #f3f3f4;
    position: relative;
    display: block;
    padding-bottom: 5px;
}
.menu-tertiary-navigation > li > a:after {
    content: "";
    display: block;
    border-top: 2px solid #f3f3f4;
    width: 100%;
    opacity: 0;
    position: absolute;
    left: 0;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    bottom: 10px;
}
@media (max-width: 1109px) {
    .menu-tertiary-navigation {
        max-height: 50px;
        overflow: hidden;
        transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
        margin: 0 0 30px;
        position: relative;
        z-index: 80;
    }
    .parent-pageid-12 .menu-tertiary-navigation,
    .single-casestudies .menu-tertiary-navigation {
        margin: 0 0 30px;
    }
    .parent-pageid-12 .menu-tertiary-navigation > span,
    .single-casestudies .menu-tertiary-navigation > span {
        font-size: 18px;
        font-size: 1.125rem;
        font-weight: 500;
        margin-bottom: 30px;
        display: block;
    }
    .parent-pageid-12 .menu-tertiary-navigation > span:after,
    .single-casestudies .menu-tertiary-navigation > span:after {
        top: 0;
    }
    .parent-pageid-12 .menu-tertiary-navigation.active > span:after,
    .single-casestudies .menu-tertiary-navigation.active > span:after {
        top: 3px;
    }
    .parent-pageid-12 .menu-tertiary-navigation > li,
    .single-casestudies .menu-tertiary-navigation > li {
        margin: 10px 0;
    }
    .menu-tertiary-navigation.active {
        max-height: 100vh;
        transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    }
    .menu-tertiary-navigation.active:before {
        content: "";
        opacity: 1;
        visibility: visible;
    }
    .menu-tertiary-navigation.active > span:after {
        content: " - ";
        font-size: 22px;
        font-size: 1.375rem;
        top: -7px;
    }
    .menu-tertiary-navigation > span {
        position: relative;
        color: #eb2b5c;
        display: block;
        height: 50px;
        line-height: 50px;
        cursor: pointer;
        font-size: 46px;
        font-size: 2.875rem;
        font-weight: 400;
        margin-bottom: 10px;
    }
    .menu-tertiary-navigation > span:after {
        content: " + ";
        font-size: 18px;
        font-size: 1.125rem;
        display: inline-block;
        color: #eb2b5c;
        position: relative;
        top: -7px;
        margin-left: 10px;
        font-weight: 500;
    }
    .menu-tertiary-navigation > li {
        float: none;
        display: block;
        margin: 0 0 6px;
        font-size: 18px;
        font-size: 1.125rem;
    }
    .menu-tertiary-navigation > li.active > a,
    .menu-tertiary-navigation > li.current_page_item > a {
        border-bottom: 1px solid #eb2b5c;
    }
    .menu-tertiary-navigation > li > a {
        white-space: nowrap;
        display: inline-block;
        line-height: 0.5;
    }
    .menu-tertiary-navigation > li > a:after {
        display: none;
    }
}
.menu-anchor-navigation {
    padding: 0 20px;
    margin: 0;
    height: 70px;
    margin: 0 auto;
    width: 1040px;
}
.menu-anchor-navigation:after {
    clear: both;
    content: "";
    display: table;
}
.menu-anchor-navigation .first {
    display: none;
}
.menu-anchor-navigation > li {
    float: left;
    list-style: none;
    margin: 0 28px 0 0;
    font-size: 14px;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.menu-anchor-navigation > li a {
    display: block;
    line-height: 70px;
    color: #fff;
    white-space: nowrap;
    position: relative;
}
.menu-anchor-navigation > li a:after {
    content: "";
    display: block;
    border-top: 2px solid #fff;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.menu-anchor-navigation > li.active > a:after,
.menu-anchor-navigation > li:hover > a:after {
    opacity: 1;
    width: 100%;
    bottom: 25px;
}
.menu-anchor-navigation > li:last-child {
    float: right;
    color: #eb2b5c;
    line-height: 70px;
    text-transform: capitalize;
    opacity: 0;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.fourth-state .menu-anchor-navigation > li:last-child {
    opacity: 1;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 800px) {
    .menu-anchor-navigation {
        height: auto;
        margin: 0 -20px;
        width: auto;
        padding: 0 6px;
    }
    .fourth-state .menu-anchor-navigation {
        box-shadow: 0 4px 10px -2px rgba(0, 1, 1, 0.4);
    }
    .menu-anchor-navigation.active {
        background: #4e3180;
        display: block;
        padding: 0 6px 20px;
    }
    .menu-anchor-navigation.active .first:before {
        transform: rotate(45deg);
        margin-top: -2px;
    }
    .menu-anchor-navigation.active .first:after {
        transform: rotate(-45deg);
        top: 30px;
        margin-top: 3px;
    }
    .menu-anchor-navigation.active > li {
        display: block;
    }
    .menu-anchor-navigation .first {
        display: block;
        padding: 0 20px;
        background: none;
        font-size: 14px;
        font-size: 0.875rem;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: #f3f3f4;
        line-height: 70px;
        padding: 0 0 0 50px;
        position: relative;
    }
    .menu-anchor-navigation .first:before {
        margin-top: -4px;
    }
    .menu-anchor-navigation .first:after,
    .menu-anchor-navigation .first:before {
        content: "";
        height: 2px;
        width: 15px;
        background: #f3f3f4;
        display: block;
        top: 50%;
        transform: translateY(-50%);
        position: absolute;
        left: 20px;
    }
    .menu-anchor-navigation .first:after {
        margin-top: 0;
    }
    .menu-anchor-navigation > li {
        float: none;
        margin: 8px 0;
        padding: 0 20px;
        display: none;
    }
    .menu-anchor-navigation > li:last-child {
        border-bottom: 17px solid #4e3180;
        display: none;
    }
    .menu-anchor-navigation > li.active > a {
        border-bottom: 1px solid #eb2b5c;
    }
    .menu-anchor-navigation > li > a {
        line-height: 1;
        display: inline-block;
        padding: 0;
    }
    .menu-anchor-navigation > li > a:after {
        display: none;
    }
    .fourth-state .menu-anchor-navigation > li {
        width: 100%;
        transition: padding 0.5s cubic-bezier(0.47, 0, 0.745, 0.715);
    }
    .fourth-state .menu-anchor-navigation > li:first-child {
        background: none;
    }
}
header.banner .contact {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    color: #fff;
}
@media (max-width: 1109px) {
    header.banner .contact {
        color: #eb2b5c;
        display: block;
        padding: 50px 20px;
        font-size: 19px;
        font-size: 1.1875rem;
    }
    header.banner .contact svg {
        fill: #eb2b5c;
    }
}
header.banner .container .container {
    padding: 60px 20px;
}
@media (max-width: 1109px) {
    header.banner .container .container {
        padding: 170px 20px 40px;
    }
}
header.banner .container .container > h1,
header.banner .container .container > p,
header.banner .container .container > span {
    max-width: 535px;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 1109px) {
    .overlayed header.banner .container .container > h1,
    .overlayed header.banner .container .container > p,
    .overlayed header.banner .container .container > span {
        visibility: hidden;
        opacity: 0;
        transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    }
}
header.banner .container .container > span {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.166;
    display: inline-block;
    color: #f3f3f4;
}
@media (max-width: 767px) {
    header.banner .container .container > span {
        font-size: 31px;
        font-size: 1.9375rem;
    }
}
header.banner .container .container > h1 {
    font-size: 46px;
    font-size: 2.875rem;
    line-height: 1.217;
    margin-bottom: 40px;
    margin-top: 100px;
    color: #f3f3f4;
}
@media (max-width: 767px) {
    header.banner .container .container > h1 {
        font-size: 40px;
        font-size: 2.5rem;
        margin-top: 80px;
    }
}
header.banner .container .container > p {
    color: #f3f3f4;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.444;
}
@media (max-width: 767px) {
    header.banner .container .container > p {
        font-size: 16px;
        font-size: 1rem;
        margin-bottom: 30px;
    }
}
header.banner .container .container > ul {
    padding: 0;
    display: table;
    table-layout: fixed;
    margin: 0 -25px;
}
header.banner .container .container > ul:after {
    clear: both;
    content: "";
    display: table;
}
header.banner .container .container > ul > li {
    list-style: none;
    display: table-cell;
    padding: 0 25px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 150px;
}
header.banner .container .container > ul > li a {
    color: #f3f3f4;
    border-bottom: 1px solid #eb2b5c;
}
header.banner .container .container > ul > li svg {
    display: block;
    margin-bottom: 20px;
    max-height: 40px;
    fill: #eb2b5c;
}
header.banner .container .container > ul > li:hover a {
    border: 0;
}
@media (max-width: 1109px) {
    header.banner .container .container > ul {
        display: none;
    }
}
header.banner .container .container > ul.breadcrumb {
    display: block;
    margin: 0 0 20px;
}
header.banner .container .container > ul.breadcrumb:after {
    clear: both;
    content: "";
    display: table;
}
header.banner .container .container > ul.breadcrumb + h1 {
    margin: 0 0 70px;
}
header.banner .container .container > ul.breadcrumb > li {
    display: inline-block;
    float: left;
    padding: 0;
    max-width: 100%;
}
header.banner .container .container > ul.breadcrumb > li:first-child:before {
    display: none;
}
header.banner .container .container > ul.breadcrumb > li:before {
    content: "|";
    display: inline-block;
    margin: 0 8px;
    color: #f3f3f4;
}
header.banner .container .container > ul.breadcrumb > li:last-child:after {
    content: "";
    display: inline-block;
    margin: 0 8px;
    color: #f3f3f4;
}
header.banner .container .container > ul.breadcrumb > li > a {
    display: inline-block;
    position: relative;
    border: 0;
}
header.banner .container .container > ul.breadcrumb > li > a:after {
    content: "";
    display: block;
    border-top: 1px solid #eb2b5c;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    width: 100%;
}
header.banner .container .container > ul.breadcrumb > li:hover > a:after {
    opacity: 1;
    width: 100%;
}
@media (max-width: 1109px) {
    header.banner .container .container > ul.breadcrumb {
        display: block;
    }
}
header.banner .container .container .container-item > h2 {
    color: #f3f3f4;
    font-size: 46px;
    font-size: 2.875rem;
    line-height: 1.217;
    margin-bottom: 20px;
}
header.banner .container .container .overview-icon-links a {
    border-bottom: 0;
    display: inline-block;
    vertical-align: top;
}
header.banner .container .container .overview-icon-links a:hover {
    border-bottom: 0;
}
header.banner .container .container .overview-icon-links a:hover .link-title {
    border-bottom: 1px solid transparent;
}
header.banner .container .container .overview-icon-links .link-title {
    transition: border-bottom 0.2s ease-out;
    border-bottom: 1px solid #eb2b5c;
}
header section p {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #f3f3f4;
}
.search-form {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #4e3180;
    z-index: 1;
}
.search-form .screen-reader-text,
.search-form .search-submit {
    display: none;
}
.search-form .form-container {
    padding: 0 20px;
    max-width: 1040px;
    margin: 0 auto;
}
.search-form input[type="search"] {
    width: 100%;
    background: none;
    height: 75px;
    border: 0;
    font-size: 24px;
    font-size: 1.5rem;
    color: #a192ba;
    padding: 8px 60px 1px;
}
.search-form input[type="search"]:placeholder {
    color: #a192ba;
    font-weight: 400;
    font-size: 24px;
    font-size: 1.5rem;
}
.search-form label {
    position: relative;
}
.search-form .icon-search {
    width: 30px;
    height: 30px;
    fill: #eb2b5c;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.search-form input:-webkit-autofill,
.search-form input:-webkit-autofill:active,
.search-form input:-webkit-autofill:focus,
.search-form input:-webkit-autofill:hover {
    -webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";
    -webkit-transition-delay: 9999s;
}
@media (max-width: 1109px) {
    .search-form {
        padding: 0 20px;
    }
    .overlayed .search-form,
    .search-form {
        transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    }
    .overlayed .search-form {
        visibility: hidden;
        opacity: 0;
    }
    .search-form input[type="search"] {
        height: 68px;
    }
    .search-form input[type="search"],
    .search-form input[type="search"]:placeholder {
        font-size: 21px;
        font-size: 1.3125rem;
    }
}
.hamburger-menu {
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: none;
}
.hamburger-menu .bar,
.hamburger-menu .bar:after,
.hamburger-menu .bar:before {
    width: 20px;
    height: 2px;
    background: #000;
}
.hamburger-menu .bar {
    position: absolute;
    background: #fff;
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.hamburger-menu .bar.animate {
    background: #452679;
    height: 0;
}
.hamburger-menu .bar.animate:after,
.hamburger-menu .bar.animate:before {
    background: #fff;
}
.nav-active .hamburger-menu .bar {
    background: #452679;
}
.nav-active .hamburger-menu .bar.animate:after,
.nav-active .hamburger-menu .bar.animate:before {
    background: #eb2b5c;
}
.hamburger-menu .bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    background: #fff;
    opacity: 1;
    transition: bottom 0.15s cubic-bezier(0.23, 1, 0.32, 1) 0.15s, transform 0.15s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-active .hamburger-menu .bar:before {
    background: #eb2b5c;
}
.hamburger-menu .bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    background: #fff;
    opacity: 1;
    transition: top 0.15s cubic-bezier(0.23, 1, 0.32, 1) 0.15s, transform 0.15s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-active .hamburger-menu .bar:after {
    background: #eb2b5c;
}
.hamburger-menu .bar.animate:after {
    top: -2px;
    transform: rotate(45deg);
    transition: top 0.15s cubic-bezier(0.23, 1, 0.32, 1), transform 0.15s cubic-bezier(0.23, 1, 0.32, 1) 0.15s;
}
.hamburger-menu .bar.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 0.15s cubic-bezier(0.23, 1, 0.32, 1), transform 0.15s cubic-bezier(0.23, 1, 0.32, 1) 0.15s;
}
@media (min-width: 768px) and (max-width: 1109px) {
    .hamburger-menu {
        display: block;
    }
}
.page-template-template-overview .small-heading-mob {
    display: none;
}
@media (max-width: 767px) {
    .page-template-template-overview .small-heading-mob {
        margin-top: 50px;
        display: block;
        color: #f3f3f4;
        font-size: 16px;
        font-size: 1rem;
    }
}
header.banner .container .container-404-msg {
    padding-top: 100px;
}
.container-404-header-svg {
    height: 500px;
    overflow: hidden;
    margin-top: -150px;
    position: relative;
}
.container-404-header-svg .svg-encore-pattern {
    transform: none;
    top: 0;
}
@media (max-width: 767px) {
    .container-404-header-svg {
        display: none;
    }
}
@media (max-width: 767px) {
    header.banner .container .container-404-msg {
        padding-top: 200px;
    }
    .container-404-header-svg {
        display: none;
    }
}
.breadcrumb.is-in-expertise {
    display: block;
    list-style-type: none;
    margin: 0 -10px 30px;
    padding: 0;
}
.breadcrumb.is-in-expertise:after {
    clear: both;
    content: "";
    display: table;
}
.breadcrumb.is-in-expertise li {
    float: left;
    padding: 0;
    font-size: 14px;
    font-size: 0.875rem;
}
.breadcrumb.is-in-expertise li:after {
    content: " | ";
    position: relative;
    left: -1px;
}
.breadcrumb.is-in-expertise li:last-child:after {
    content: "";
}
.breadcrumb.is-in-expertise li a {
    display: inline-block;
    padding: 0 10px;
    color: #eb2b5c;
    position: relative;
}
.breadcrumb.is-in-expertise li a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
}
.breadcrumb.is-in-expertise li:hover a:after {
    border-top: 1px solid #eb2b5c;
}
.breadcrumb.is-in-expertise li:before {
    display: none;
}
footer {
    position: relative;
    z-index: 98;
}
footer svg {
    fill: #fff;
}
footer .logo {
    width: 73px;
    height: 82px;
}
footer .icon-phone {
    width: 24px;
    height: 25px;
}
footer .footer-section {
    border-bottom: 1px solid #515151;
    padding: 26px 54px;
    position: relative;
}
footer .footer-section:after {
    clear: both;
    content: "";
    display: table;
}
@media (max-width: 1109px) {
    footer .footer-section {
        padding: 26px 20px;
    }
}
.footer-top .container {
    min-height: 117px;
}
.footer-top .logo {
    left: 0;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}
.footer-top img {
    float: right;
    width: 20%;
    position: relative;
    left: -58px;
}
@media (max-width: 767px) {
    .footer-top img {
        display: none;
    }
}
.footer-middle.footer-section {
    padding-top: 50px;
}
.footer-middle .content {
    float: left;
}
.footer-middle .phone {
    color: #f3f3f4;
    font-size: 2rem;
    margin-bottom: 10px;
}
.footer-middle .phone a {
    color: #f3f3f4;
}
.footer-middle .phone .icon-phone {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
.footer-middle .phone + a {
    font-size: 1.125rem;
    line-height: 1.333;
    color: #fff;
    display: inline-block;
    margin-bottom: 20px;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.footer-middle .phone + a:hover {
    color: #eb2b5c;
}
.footer-middle .social {
    margin: 0 -12px 40px;
    padding: 0;
}
.footer-middle .social:after {
    clear: both;
    content: "";
    display: table;
}
.footer-middle .social > li {
    list-style: none;
    float: left;
    margin: 0 12px;
}
.footer-middle .social > li:hover > a svg {
    fill: #eb2b5c;
}
.footer-middle .social > li > a svg {
    height: 29px;
    max-width: 32px;
    max-height: 32px;
}
.footer-middle .nav-footer {
    float: right;
    width: 426px;
}
.footer-middle .nav-footer:after {
    clear: both;
    content: "";
    display: table;
}
.footer-middle .nav-footer .column {
    float: left;
    width: 33.333%;
}
.footer-middle .nav-footer .column h5 {
    font-size: 0.875rem;
    line-height: 1;
    margin: 0 0 20px;
    color: #f3f3f4;
}
.footer-middle .nav-footer .column > ul {
    margin: 0;
    padding: 0;
}
.footer-middle .nav-footer .column > ul > li {
    list-style: none;
    font-size: 1.125rem;
    line-height: 1;
    margin-bottom: 10px;
}
.footer-middle .nav-footer .column > ul > li > a {
    color: #f3f3f4;
    display: inline-block;
    position: relative;
}
.footer-middle .nav-footer .column > ul > li > a:after {
    content: "";
    display: block;
    border-top: 1px solid #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.footer-middle .nav-footer .column > ul > li:hover > a:after {
    width: 100%;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 1109px) {
    .footer-middle .nav-footer {
        width: auto;
        float: none;
        clear: both;
    }
    .footer-middle .nav-footer .column {
        float: none;
        width: auto;
        margin: 0 -20px;
        padding: 20px;
        border-top: 1px solid #5a5a5a;
    }
}
.footer-middle p {
    max-width: 310px;
}
.footer-bottom,
.footer-middle p {
    color: #f3f3f4;
    font-size: 0.8125rem;
    line-height: 1.23;
}
.footer-bottom {
    border-bottom: 0;
}
.footer-bottom a {
    color: #f3f3f4;
    display: inline-block;
    margin-left: 8px;
    font-weight: 500;
}
.footer-bottom a:hover {
    border-bottom: 1px solid currentColor;
}
.add-ons {
    background: #452679;
    padding: 115px 0;
}
@media (max-width: 1109px) {
    .add-ons {
        padding: 35px 0;
    }
}
.add-ons .container,
.add-ons a,
.add-ons h2 {
    color: #f3f3f4;
}
.add-ons .container .column {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 100%;
}
.add-ons .container .column:last-child {
    margin-right: 0;
}
@media (max-width: 1109px) {
    .add-ons .container {
        padding: 35px 20px;
    }
}
.add-ons .container .add-on {
    border-top: 1px solid #61468d;
    padding-top: 30px;
    position: relative;
    margin-top: 30px;
}
.add-ons .container .add-on:after {
    clear: both;
    content: "";
    display: table;
}
.add-ons .container .add-on:before {
    content: "";
    width: 1px;
    background: #61468d;
    height: 100%;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}
@media (max-width: 1109px) {
    .add-ons .container .add-on:before {
        display: none;
    }
}
.add-ons .container dl {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 48.8211739883%;
    padding-top: 0;
    padding-right: 78px;
    margin: 10px 0;
}
.add-ons .container dl:last-child,
.add-ons .container dl:nth-child(2n) {
    margin-right: 0;
}
.add-ons .container dl:nth-child(odd) {
    clear: left;
}
.add-ons .container dl:nth-child(2n) {
    padding: 0 78px;
}
.add-ons .container dl dt {
    font-size: 22px;
    font-size: 1.375rem;
    margin-bottom: 20px;
}
.add-ons .container dl dt a {
    border-bottom: 1px solid #eb2b5c;
    line-height: 1.363;
    transition: all 0.15s ease-out 0s;
}
.add-ons .container dl dt a:hover {
    border: 0;
}
.add-ons .container dl dd {
    margin: 0;
}
@media (max-width: 1109px) {
    .add-ons .container dl {
        float: left;
        display: block;
        margin-right: 2.3576520234%;
        width: 100%;
        margin-right: 0;
        padding: 0;
    }
    .add-ons .container dl:last-child {
        margin-right: 0;
    }
    .add-ons .container dl:nth-child(2n) {
        padding: 0;
    }
}
.cta.callout {
    background-color: #452679;
}
section {
    padding: 115px 0;
    position: relative;
    background: #ececed;
    border-top: 1px solid #d5d5d6;
}
section:first-child {
    border: 0;
}
section.hit .section .section-item {
    opacity: 1;
    visibility: visible;
    top: 0;
    transition: all 1s;
}
section .container > svg {
    margin-bottom: 30px;
    fill: #eb2b5c;
}
section .container > p {
    max-width: 50%;
    line-height: 1.5;
}
section .container.below_location_blurb p {
    line-height: 1.5;
}
section .container.below_location_blurb.full-width p {
    /* Intended to override the `max-width: 50%;` rule for `section .container > p` */
    max-width: 100%;
}
section .container article.proper-width-article .entry-content {
    margin-bottom: 0px;
}

section .container .entry-content {
    margin-bottom: 95px;
}
@media (max-width: 1109px) {
    section {
        padding: 35px 0 55px;
    }
    section .container > p {
        max-width: 100%;
    }
}
.section:after {
    clear: both;
    content: "";
    display: table;
}
.section .section-item {
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 26.6514635124%;
    margin-right: 0;
    margin-left: 5.6421951144%;
    opacity: 0;
    visibility: hidden;
    position: relative;
    top: 0;
    transition: all 0.15s ease-out 0s;
}
.section .section-item:last-child {
    margin-right: 0;
}
@media (min-width: 1110px) {
    .section .section-item:nth-child(3n + 1) {
        margin-left: 0;
    }
    .section .section-item:nth-child(n + 4) {
        margin-top: 50px;
    }
}
@media (max-width: 1109px) {
    .section .section-item {
        float: left;
        display: block;
        margin-right: 1.5595120597%;
        width: 43.5780488557%;
        margin-bottom: 50px;
        transition: all 0.15s ease-out 0s;
    }
    .section .section-item:last-child {
        margin-right: 0;
    }
    .section .section-item:nth-child(odd) {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .section .section-item {
        float: left;
        display: block;
        margin-right: 1.5595120597%;
        width: 100%;
        margin-bottom: 50px;
    }
    .section .section-item:last-child {
        margin-right: 0;
    }
    .section .section-item:not(:first-child),
    .section .section-item:nth-child(odd) {
        margin-left: 0;
    }
}
.locations-template-default section.section-offices,
.page.contact section.section-offices {
    padding: 117px 54px;
}
.locations-template-default section.section-offices .contacts .contact-item,
.page.contact section.section-offices .contacts .contact-item {
    margin-bottom: 75px;
    float: left;
    display: block;
    margin-right: 1.1650916087%;
    width: 28.3413934438%;
    font-size: 16px;
    font-size: 1rem;
}
.locations-template-default section.section-offices .contacts .contact-item:last-child,
.locations-template-default section.section-offices .contacts .contact-item:nth-child(0),
.page.contact section.section-offices .contacts .contact-item:last-child,
.page.contact section.section-offices .contacts .contact-item:nth-child(0) {
    margin-right: 0;
}
.locations-template-default section.section-offices .contacts .contact-item:not(:nth-child(3n + 1)),
.page.contact section.section-offices .contacts .contact-item:not(:nth-child(3n + 1)) {
    margin-left: 5.6421951144%;
}
.locations-template-default section.section-offices .contacts .contact-item address,
.page.contact section.section-offices .contacts .contact-item address {
    font-style: normal;
    margin-bottom: 20px;
}
.locations-template-default section.section-offices .contacts .contact-item span,
.page.contact section.section-offices .contacts .contact-item span {
    display: block;
}
.locations-template-default section.section-offices .contacts .contact-item svg,
.page.contact section.section-offices .contacts .contact-item svg {
    height: 25px;
    width: 25px;
    display: inline-block;
    float: left;
    fill: transparent;
    margin-right: 6px;
    stroke: #eb2b5c;
}
.locations-template-default section.section-offices .contacts .contact-item span a,
.page.contact section.section-offices .contacts .contact-item span a {
    margin-top: 20px;
    float: left;
    line-height: 20px;
    display: inline-block;
    color: #eb2b5c;
}
.locations-template-default section.section-offices .contacts .contact-item h4 a,
.page.contact section.section-offices .contacts .contact-item h4 a {
    color: #452679;
}
@media (max-width: 1109px) {
    .locations-template-default section.section-offices,
    .page.contact section.section-offices {
        padding: 30px 0;
    }
}
@media (max-width: 767px) {
    .locations-template-default section.section-offices,
    .page.contact section.section-offices {
        padding: 30px 0;
    }
    .locations-template-default section.section-offices .contacts .contact-item,
    .page.contact section.section-offices .contacts .contact-item {
        float: left;
        display: block;
        margin-right: 1.0342980389%;
        width: 100%;
        margin-bottom: 50px;
    }
    .locations-template-default section.section-offices .contacts .contact-item:last-child,
    .locations-template-default section.section-offices .contacts .contact-item:nth-child(0),
    .page.contact section.section-offices .contacts .contact-item:last-child,
    .page.contact section.section-offices .contacts .contact-item:nth-child(0) {
        margin-right: 0;
    }
    .locations-template-default section.section-offices .contacts .contact-item:not(:first-child),
    .page.contact section.section-offices .contacts .contact-item:not(:first-child) {
        margin-left: 0;
    }
}
.page.case-studies .case-studies,
.page.expertise .case-studies,
.page.page-template-template-product-php .case-studies,
.tax-casestudies_taxonomy .case-studies {
    position: relative;
}
.page.case-studies .case-studies .section-subtitle,
.page.expertise .case-studies .section-subtitle,
.page.page-template-template-product-php .case-studies .section-subtitle,
.tax-casestudies_taxonomy .case-studies .section-subtitle {
    font-size: 36px;
    font-size: 2.25rem;
}
.page.case-studies .case-studies .intro-text,
.page.expertise .case-studies .intro-text,
.page.page-template-template-product-php .case-studies .intro-text,
.tax-casestudies_taxonomy .case-studies .intro-text {
    max-width: 50%;
}
@media (max-width: 1109px) {
    .page.case-studies .case-studies .intro-text,
    .page.expertise .case-studies .intro-text,
    .page.page-template-template-product-php .case-studies .intro-text,
    .tax-casestudies_taxonomy .case-studies .intro-text {
        max-width: 100%;
    }
}
.page.case-studies .case-studies .case-studies-item,
.page.expertise .case-studies .case-studies-item,
.page.page-template-template-product-php .case-studies .case-studies-item,
.tax-casestudies_taxonomy .case-studies .case-studies-item {
    margin-top: 20px;
    float: left;
    display: block;
    margin-right: 1.1650916087%;
    width: 19.9109691431%;
}
.page.case-studies .case-studies .case-studies-item:last-child,
.page.case-studies .case-studies .case-studies-item:nth-child(4n),
.page.expertise .case-studies .case-studies-item:last-child,
.page.expertise .case-studies .case-studies-item:nth-child(4n),
.page.page-template-template-product-php .case-studies .case-studies-item:last-child,
.page.page-template-template-product-php .case-studies .case-studies-item:nth-child(4n),
.tax-casestudies_taxonomy .case-studies .case-studies-item:last-child,
.tax-casestudies_taxonomy .case-studies .case-studies-item:nth-child(4n) {
    margin-right: 0;
}
.page.case-studies .case-studies .case-studies-item:nth-child(4n + 1),
.page.expertise .case-studies .case-studies-item:nth-child(4n + 1),
.page.page-template-template-product-php .case-studies .case-studies-item:nth-child(4n + 1),
.tax-casestudies_taxonomy .case-studies .case-studies-item:nth-child(4n + 1) {
    clear: left;
}
.page.case-studies .case-studies .case-studies-item:not(:first-child),
.page.expertise .case-studies .case-studies-item:not(:first-child),
.page.page-template-template-product-php .case-studies .case-studies-item:not(:first-child),
.tax-casestudies_taxonomy .case-studies .case-studies-item:not(:first-child) {
    margin-left: 5.0700687696%;
}
.page.case-studies .case-studies .case-studies-item:nth-child(4n + 1),
.page.expertise .case-studies .case-studies-item:nth-child(4n + 1),
.page.page-template-template-product-php .case-studies .case-studies-item:nth-child(4n + 1),
.tax-casestudies_taxonomy .case-studies .case-studies-item:nth-child(4n + 1) {
    margin-left: 0;
}
@media (max-width: 1109px) {
    .page.case-studies .case-studies .case-studies-item,
    .page.expertise .case-studies .case-studies-item,
    .page.page-template-template-product-php .case-studies .case-studies-item,
    .tax-casestudies_taxonomy .case-studies .case-studies-item {
        float: left;
        display: block;
        margin-right: 1.1650916087%;
        width: 45.2022420453%;
    }
    .page.case-studies .case-studies .case-studies-item:last-child,
    .page.case-studies .case-studies .case-studies-item:nth-child(2n),
    .page.expertise .case-studies .case-studies-item:last-child,
    .page.expertise .case-studies .case-studies-item:nth-child(2n),
    .page.page-template-template-product-php .case-studies .case-studies-item:last-child,
    .page.page-template-template-product-php .case-studies .case-studies-item:nth-child(2n),
    .tax-casestudies_taxonomy .case-studies .case-studies-item:last-child,
    .tax-casestudies_taxonomy .case-studies .case-studies-item:nth-child(2n) {
        margin-right: 0;
    }
    .page.case-studies .case-studies .case-studies-item:nth-child(odd),
    .page.expertise .case-studies .case-studies-item:nth-child(odd),
    .page.page-template-template-product-php .case-studies .case-studies-item:nth-child(odd),
    .tax-casestudies_taxonomy .case-studies .case-studies-item:nth-child(odd) {
        clear: left;
        margin-left: 0;
    }
    .page.case-studies .case-studies .case-studies-item:nth-child(2n),
    .page.expertise .case-studies .case-studies-item:nth-child(2n),
    .page.page-template-template-product-php .case-studies .case-studies-item:nth-child(2n),
    .tax-casestudies_taxonomy .case-studies .case-studies-item:nth-child(2n) {
        float: right;
    }
}
.page.case-studies .case-studies .thumbnail,
.page.expertise .case-studies .thumbnail,
.page.page-template-template-product-php .case-studies .thumbnail,
.tax-casestudies_taxonomy .case-studies .thumbnail {
    height: 355px;
}
.page.case-studies .case-studies .thumbnail-img-wrap,
.page.expertise .case-studies .thumbnail-img-wrap,
.page.page-template-template-product-php .case-studies .thumbnail-img-wrap,
.tax-casestudies_taxonomy .case-studies .thumbnail-img-wrap {
    height: 115px;
    padding: 30px 40px;
    border-bottom: 1px solid #ececed;
    position: relative;
}
.page.case-studies .case-studies .thumbnail-img-wrap img,
.page.expertise .case-studies .thumbnail-img-wrap img,
.page.page-template-template-product-php .case-studies .thumbnail-img-wrap img,
.tax-casestudies_taxonomy .case-studies .thumbnail-img-wrap img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    max-height: 55px;
    width: auto;
    margin: 0 auto;
}
.page.case-studies .case-studies .thumbnail-desc,
.page.expertise .case-studies .thumbnail-desc,
.page.page-template-template-product-php .case-studies .thumbnail-desc,
.tax-casestudies_taxonomy .case-studies .thumbnail-desc {
    padding: 20px;
}
.page.case-studies .case-studies .thumbnail-title,
.page.expertise .case-studies .thumbnail-title,
.page.page-template-template-product-php .case-studies .thumbnail-title,
.tax-casestudies_taxonomy .case-studies .thumbnail-title {
    line-height: 1.4;
}
.page.case-studies .case-studies .thumbnail-title a,
.page.expertise .case-studies .thumbnail-title a,
.page.page-template-template-product-php .case-studies .thumbnail-title a,
.tax-casestudies_taxonomy .case-studies .thumbnail-title a {
    font-size: 22px;
    font-size: 1.375rem;
    color: #454545;
    border-bottom: 1px solid #eb2b5c;
}
.page.case-studies .case-studies .thumbnail-title a:hover,
.page.expertise .case-studies .thumbnail-title a:hover,
.page.page-template-template-product-php .case-studies .thumbnail-title a:hover,
.tax-casestudies_taxonomy .case-studies .thumbnail-title a:hover {
    border-bottom: 1px solid transparent;
}
.page.case-studies .case-studies .case-studies-item,
.page.expertise .case-studies .case-studies-item,
.page.page-template-template-product-php .case-studies .case-studies-item,
.tax-casestudies_taxonomy .case-studies .case-studies-item {
    margin-bottom: 60px;
}
.page.case-studies .case-studies .thumbnail-content,
.page.expertise .case-studies .thumbnail-content,
.page.page-template-template-product-php .case-studies .thumbnail-content,
.tax-casestudies_taxonomy .case-studies .thumbnail-content {
    font-size: 14px;
    font-size: 0.875rem;
}
.page.case-studies .case-studies .button-wrap,
.page.expertise .case-studies .button-wrap,
.page.page-template-template-product-php .case-studies .button-wrap,
.tax-casestudies_taxonomy .case-studies .button-wrap {
    display: block;
    clear: both;
}
.page.case-studies .case-studies .button,
.page.expertise .case-studies .button,
.page.page-template-template-product-php .case-studies .button,
.tax-casestudies_taxonomy .case-studies .button {
    font-size: 16px;
    font-size: 1rem;
}
@media (max-width: 767px) {
    .page.expertise .case-studies .button-wrap {
        margin-bottom: 50px;
        transform: translateY(-20px);
    }
}
.page.page-template-template-product-php .section-product-cta {
    background: #452679;
    position: relative;
}
.page.page-template-template-product-php .section-product-cta:after,
.page.page-template-template-product-php .section-product-cta:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.7;
}
.page.page-template-template-product-php .section-product-cta:before {
    background: linear-gradient(90deg, rgba(235, 43, 92, 0.7) -1%, rgba(202, 85, 134, 0) 20%, rgba(125, 185, 232, 0));
}
.page.page-template-template-product-php .section-product-cta:after {
    background-image: url(../images/blog-events-press-hero.png);
    background-position: 0 0;
}
.page.page-template-template-product-php .section-product-cta .container {
    z-index: 1;
}
.page.page-template-template-product-php .section-product-cta .cta-row {
    display: inline-block;
    vertical-align: top;
}
.page.page-template-template-product-php .section-product-cta .cta-title-wrap {
    width: 77.7777777778%;
    padding-right: 50px;
}
.page.page-template-template-product-php .section-product-cta .cta-button-wrap {
    width: 16.6666666667%;
}
.page.page-template-template-product-php .section-product-cta h2 {
    color: #f3f3f4;
    font-size: 36px;
    font-size: 2.25rem;
}
@media (max-width: 767px) {
    .page.page-template-template-product-php .section-product-cta:after,
    .page.page-template-template-product-php .section-product-cta:before {
        content: none;
    }
    .page.page-template-template-product-php .section-product-cta .cta-row {
        width: 100%;
    }
}
.page-template-whichdynamics-php .page-header,
.page-template-whichdynamicsemail-php .page-header,
.page-template-whichdynamicsresults-php .page-header,
.page.awards .page-header,
.page.privacy .page-header,
.page.support .page-header,
.parent-pageid-117 .page-header {
    margin-bottom: 50px;
    width: 66.6666666667%;
}
.page-template-whichdynamics-php .page-header h1,
.page-template-whichdynamicsemail-php .page-header h1,
.page-template-whichdynamicsresults-php .page-header h1,
.page.awards .page-header h1,
.page.privacy .page-header h1,
.page.support .page-header h1,
.parent-pageid-117 .page-header h1 {
    font-size: 46px;
    font-size: 2.875rem;
    line-height: 1;
}
.page-template-whichdynamics-php .main .entry-content,
.page-template-whichdynamicsemail-php .main .entry-content,
.page-template-whichdynamicsresults-php .main .entry-content,
.page.awards .main .entry-content,
.page.privacy .main .entry-content,
.page.support .main .entry-content,
.parent-pageid-117 .main .entry-content {
    width: 61.1111111111%;
}
@media (max-width: 767px) {
    .page-template-whichdynamics-php .main .entry-content,
    .page-template-whichdynamicsemail-php .main .entry-content,
    .page-template-whichdynamicsresults-php .main .entry-content,
    .page.awards .main .entry-content,
    .page.privacy .main .entry-content,
    .page.support .main .entry-content,
    .parent-pageid-117 .main .entry-content {
        width: 100%;
    }
}
.page-template-whichdynamics-php .main .entry-content p a,
.page-template-whichdynamicsemail-php .main .entry-content p a,
.page-template-whichdynamicsresults-php .main .entry-content p a,
.page.awards .main .entry-content p a,
.page.privacy .main .entry-content p a,
.page.support .main .entry-content p a,
.parent-pageid-117 .main .entry-content p a {
    color: #eb2b5c;
}
.page-template-whichdynamics-php .main .entry-content p a:hover,
.page-template-whichdynamicsemail-php .main .entry-content p a:hover,
.page-template-whichdynamicsresults-php .main .entry-content p a:hover,
.page.awards .main .entry-content p a:hover,
.page.privacy .main .entry-content p a:hover,
.page.support .main .entry-content p a:hover,
.parent-pageid-117 .main .entry-content p a:hover {
    color: #454545;
}
@media (max-width: 767px) {
    .page-template-whichdynamics-php .entry-content,
    .page-template-whichdynamics-php .page-header,
    .page-template-whichdynamicsemail-php .entry-content,
    .page-template-whichdynamicsemail-php .page-header,
    .page-template-whichdynamicsresults-php .entry-content,
    .page-template-whichdynamicsresults-php .page-header,
    .page.awards .entry-content,
    .page.awards .page-header,
    .page.privacy .entry-content,
    .page.privacy .page-header,
    .page.support .entry-content,
    .page.support .page-header,
    .parent-pageid-117 .entry-content,
    .parent-pageid-117 .page-header {
        width: 100%;
    }
    .page-template-whichdynamics-php .page-header h1,
    .page-template-whichdynamicsemail-php .page-header h1,
    .page-template-whichdynamicsresults-php .page-header h1,
    .page.awards .page-header h1,
    .page.privacy .page-header h1,
    .page.support .page-header h1,
    .parent-pageid-117 .page-header h1 {
        font-size: 40px;
        font-size: 2.5rem;
    }
    .page-template-whichdynamics-php .entry-content h2,
    .page-template-whichdynamicsemail-php .entry-content h2,
    .page-template-whichdynamicsresults-php .entry-content h2,
    .page.awards .entry-content h2,
    .page.privacy .entry-content h2,
    .page.support .entry-content h2,
    .parent-pageid-117 .entry-content h2 {
        font-size: 36px;
        font-size: 2.25rem;
    }
}
.page.support table {
    width: 100% !important;
}
.page.page-id-29 section .container-item,
.page.partnerships section .container-item {
    padding: 50px 0;
    border-top: 1px solid #dfdfe0;
}
.page.page-id-29 section .container-item:after,
.page.partnerships section .container-item:after {
    clear: both;
    content: "";
    display: table;
}
.page.page-id-29 section .container-item .column,
.page.partnerships section .container-item .column {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 31.7615653177%;
    margin-right: 0;
    float: right;
}
.page.page-id-29 section .container-item .column:last-child,
.page.partnerships section .container-item .column:last-child {
    margin-right: 0;
}
.page.page-id-29 section .container-item .column:nth-child(2),
.page.partnerships section .container-item .column:nth-child(2) {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 65.8807826589%;
    margin-right: 0;
}
.page.page-id-29 section .container-item .column:nth-child(2):last-child,
.page.partnerships section .container-item .column:nth-child(2):last-child {
    margin-right: 0;
}
.page.page-id-29 .thumbnail,
.page.partnerships .thumbnail {
    max-width: 300px;
    padding: 20px 30px;
    right: 0;
}
@media (max-width: 767px) {
    .page.page-id-29 h1,
    .page.partnerships h1 {
        display: none;
    }
    .page.page-id-29 section .container-item .column,
    .page.partnerships section .container-item .column {
        float: left;
        display: block;
        margin-right: 2.3576520234%;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .page.page-id-29 section .container-item .column:last-child,
    .page.partnerships section .container-item .column:last-child {
        margin-right: 0;
    }
    .page.page-id-29 section .container-item .column:nth-child(2),
    .page.partnerships section .container-item .column:nth-child(2) {
        float: left;
        display: block;
        margin-right: 2.3576520234%;
        width: 100%;
        margin-right: 0;
    }
    .page.page-id-29 section .container-item .column:nth-child(2):last-child,
    .page.partnerships section .container-item .column:nth-child(2):last-child {
        margin-right: 0;
    }
}
.download-link {
    font-size: 16px;
    font-size: 1rem;
    color: #eb2b5c;
}
.download-link svg {
    margin: 1px 15px 0 0;
}
.download-link:hover {
    color: #454545;
}
.download-link:hover svg {
    fill: #454545;
    transition: fill 0.2s ease-out;
}
.page.leadership:after {
    clear: both;
    content: "";
    display: table;
}
.page.leadership section .container-item {
    padding: 50px 0;
    float: left;
    display: block;
    margin-right: 1.1650916087%;
    width: 40.9870298949%;
}
.page.leadership section .container-item:first-of-type,
.page.leadership section .container-item:nth-of-type(2) {
    padding-top: 0;
}
.page.leadership section .container-item:last-child,
.page.leadership section .container-item:nth-child(2n) {
    margin-right: 0;
}
.page.leadership section .container-item:nth-child(odd) {
    clear: left;
}
.page.leadership section .container-item:nth-child(2n) {
    margin-left: 8.4304243007%;
    float: right;
}
@media (max-width: 767px) {
    .page.leadership section .container-item {
        float: left;
        display: block;
        margin-right: 1.1650916087%;
        width: 100%;
    }
    .page.leadership section .container-item:last-child,
    .page.leadership section .container-item:nth-child(0) {
        margin-right: 0;
    }
    .page.leadership section .container-item:nth-child(2n) {
        margin-left: 0;
    }
    .page.leadership section .container-item:nth-of-type(2) {
        padding-top: 50px;
    }
}
.page.leadership section .container-item .column {
    position: relative;
}
.page.leadership section .container-item .column:after {
    clear: both;
    content: "";
    display: table;
}
.page.leadership section .container-item .column .thumbnail {
    float: left;
    width: 50%;
}
.page.leadership section .container-item .column .meta {
    position: absolute;
    bottom: 0;
    left: 50%;
    padding-left: 30px;
}
.page.leadership section .container-item .column .meta > h3,
.page.leadership section .container-item .column .meta h4 {
    margin: 0;
}
.page.leadership section .container-item .column .meta h3 {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1;
    margin-bottom: 10px;
}
.page.leadership section .container-item .column .meta h4 {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
}
.page.leadership section .container-item .column p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .page.leadership section .container-item .column .thumbnail {
        float: none;
        width: 100%;
    }
    .page.leadership section .container-item .column .meta {
        position: static;
        padding: 20px 0 0;
    }
}
.page.case-studies:after {
    clear: both;
    content: "";
    display: table;
}
.page.case-studies section .container-item {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 23.2317609825%;
}
.page.case-studies section .container-item:last-child,
.page.case-studies section .container-item:nth-child(4n) {
    margin-right: 0;
}
.page.case-studies section .container-item:nth-child(4n + 1) {
    clear: left;
}
.filter + div {
    padding-top: 70px;
}

body.archive .filter + div,
body.archive .blog-items,
body.blog .filter + div,
body.search .blog-items {
    padding-top: 100px;
}
body.post-type-archive-press .blog-items {
    padding-top: 0;
}
.filter {
    display: inline-block;
    margin-bottom: 70px;
    position: absolute;
    z-index: 10;
    top: 30px;
    max-width: 41.666%;
    background: #2e2e2e;
}
.filter.open > ul {
    max-height: 1024px;
    position: relative;
    transition: all 0.1s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.filter.open > ul > li:first-child:before {
    background: url(../images/svg/chevron-up.svg) no-repeat;
    background-size: contain;
}
@media (max-width: 767px) {
    .filter {
        max-width: 100%;
        top: 10px;
    }
}
.filter:before {
    top: -23px;
    height: 24px;
    border-radius: 30px 30px 0 0;
}
.filter:after,
.filter:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background: #2e2e2e;
}
.filter:after {
    bottom: -22px;
    height: 23px;
    border-radius: 0 0 30px 30px;
}
.filter > ul {
    padding: 0;
    margin: 0;
    max-height: 20px;
    overflow: hidden;
    display: block;
    z-index: 10;
    position: absolute;
    width: 100%;
    top: -12px;
    left: 0;
}
.filter > ul li {
    list-style: none;
}
.filter > ul ul {
    margin: 0;
    padding: 0;
}
.filter > ul > li {
    border-top: 1px solid #5a5a5a;
    display: block;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}
.filter > ul > li.has-sub:before {
    content: "";
    background: url(../images/svg/chevron-down-filter.svg) no-repeat;
    background-size: contain;
    width: 13px;
    height: 18px;
    display: inline-block;
    position: absolute;
    top: 14px;
    left: 24px;
}
.post-type-archive-event .filter > ul > li:after,
.tax-events_taxonomy .filter > ul > li:after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 14px;
    border: 2px solid #eb2b5c;
    margin-right: 15px;
    position: absolute;
    top: 12px;
    left: 20px;
}
.post-type-archive-event .filter > ul > li.active:after,
.post-type-archive-event .filter > ul > li:hover:after,
.tax-events_taxonomy .filter > ul > li.active:after,
.tax-events_taxonomy .filter > ul > li:hover:after {
    background: #eb2b5c;
}
.post-type-archive-event .filter > ul > li:first-child:after,
.tax-events_taxonomy .filter > ul > li:first-child:after {
    display: none;
}
.filter > ul > li a {
    color: #f3f3f4;
    padding: 0 48px;
    display: block;
}
.filter > ul > li > a {
    padding: 10px 50px;
}
.filter > ul > li > ul {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}
.filter > ul > li > ul > li {
    border: 0;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 6px;
    padding-left: 48px;
    padding-right: 48px;
}
.filter > ul > li > ul > li:before {
    display: none;
}
.filter > ul > li > ul > li > a {
    padding: 0 0 0 25px;
    position: relative;
}
.filter > ul > li > ul > li > a:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 14px;
    border: 2px solid #eb2b5c;
    margin-right: 15px;
    position: absolute;
    top: 1px;
    left: 0;
}
.filter > ul > li > ul > li > a.active:before {
    background-color: #eb2b5c;
}
.filter > ul > li > ul > li:hover > a {
    color: #fff;
}
.filter > ul > li > ul > li:hover > a:before {
    background: #eb2b5c;
}
.filter > ul > li > ul > li > ul {
    display: none;
}
.filter > ul > li.open > ul,
.filter > ul > li:first-child > ul {
    max-height: 100vh;
    padding: 0 0 15px;
    transition: all 0.6s ease-out;
}
.filter > ul > li:first-child {
    border: 0;
}
.filter > ul > li:first-child:before {
    content: "";
    left: auto;
    top: 7px;
    right: 20px;
    background: url(../images/svg/chevron-down-filter.svg) no-repeat;
    background-size: contain;
    width: 13px;
    height: 18px;
    display: inline-block;
    position: absolute;
}
.filter > ul > li:first-child > a {
    padding: 0 25px;
    line-height: 27px;
    height: 50px;
}
.blog-items .alert-warning h3 {
    text-align: left;
    padding-left: 20px;
}
.archive .blog-items > div,
.blog .blog-items > div,
.search .blog-items > div,
.single .blog-items > div {
    clear: both;
    text-align: center;
}
.archive .blog-item,
.blog .blog-item,
.search .blog-item,
.single .blog-item {
    margin-bottom: 60px;
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 43.5780488557%;
}
.archive .blog-item:last-child,
.archive .blog-item:nth-child(2n),
.blog .blog-item:last-child,
.blog .blog-item:nth-child(2n),
.search .blog-item:last-child,
.search .blog-item:nth-child(2n),
.single .blog-item:last-child,
.single .blog-item:nth-child(2n) {
    margin-right: 0;
}
.archive .blog-item:nth-child(odd),
.blog .blog-item:nth-child(odd),
.search .blog-item:nth-child(odd),
.single .blog-item:nth-child(odd) {
    clear: left;
}
.archive .blog-item:nth-child(2n),
.blog .blog-item:nth-child(2n),
.search .blog-item:nth-child(2n),
.single .blog-item:nth-child(2n) {
    margin-left: 11.2843902289%;
}
/* Following is for the new grid layout of both Case Studies and Blog */
.blog-items-grid,
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 436px);
  column-gap: 128px;
  row-gap: 60px;
  /* justify-items: left; */ /* Change in case we want them centred later. EDIT: Turns out `left` breaks blog's pagination buttons  */
}
/* Bit of a hack so that we can have the new grid without waking the octopus */
.blog-items-grid .blog-item,
.blog-items-grid .blog-item:nth-child(2n) {
  margin-left: 0px;
  margin-bottom: 0px;
  float: unset;
  display: unset;
  margin-right: 0px;
  width: 100%;;
}

@media only screen and (max-width: 1000px) {
  .blog-items-grid,
  .case-studies-grid {
    grid-template-columns: 435.7px;
    row-gap: 40px;
    justify-content: center;
  }
}

@media only screen and (max-width: 800px) {
  .blog-items-grid,
  .case-studies-grid {
    grid-template-columns: 360px;
  }
}


/* End "Following is for the new grid layout of both Case Studies and Blog" */
@media (max-width: 767px) {
    .archive .blog-item,
    .archive .blog-item:nth-child(2n),
    .blog .blog-item,
    .blog .blog-item:nth-child(2n),
    .search .blog-item,
    .search .blog-item:nth-child(2n),
    .single .blog-item,
    .single .blog-item:nth-child(2n) {
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
}
.archive .thumbnail,
.blog .thumbnail,
.search .thumbnail,
.single .thumbnail {
    height: 500px;
}
.archive .thumbnail .thumbnail-desc,
.blog .thumbnail .thumbnail-desc,
.search .thumbnail .thumbnail-desc,
.single .thumbnail .thumbnail-desc {
    height: auto;
}
.archive .filter,
.blog .filter,
.search .filter,
.single .filter {
    width: 400px !important;
    padding-top: 0 !important;
    max-width: 100% !important;
}
@media (max-width: 767px) {
    .archive .filter,
    .blog .filter,
    .search .filter,
    .single .filter {
        width: 80% !important;
        margin-top: 10px;
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
    .archive .filter:nth-child(2n),
    .blog .filter:nth-child(2n),
    .search .filter:nth-child(2n),
    .single .filter:nth-child(2n) {
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
}
.archive .filter-left,
.blog .filter-left,
.search .filter-left,
.single .filter-left {
    margin-right: 1.5595120597%;
    width: 21.009268398%;
    float: left;
    display: block;
    clear: both;
    position: absolute;
}
.archive .filter-left:last-child,
.blog .filter-left:last-child,
.search .filter-left:last-child,
.single .filter-left:last-child {
    margin-right: 0;
}
.archive .filter-left .filter,
.blog .filter-left .filter,
.search .filter-left .filter,
.single .filter-left .filter {
    width: 225px !important;
    padding-top: 0 !important;
    max-width: 100% !important;
}
@media (max-width: 767px) {
    .archive .filter-left .filter,
    .blog .filter-left .filter,
    .search .filter-left .filter,
    .single .filter-left .filter {
        width: 225px !important;
        margin-top: -75px;
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
    .archive .filter-left .filter:nth-child(2n),
    .blog .filter-left .filter:nth-child(2n),
    .search .filter-left .filter:nth-child(2n),
    .single .filter-left .filter:nth-child(2n) {
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
}
.archive .filter-left .event-taxonomies,
.blog .filter-left .event-taxonomies,
.search .filter-left .event-taxonomies,
.single .filter-left .event-taxonomies {
    top: 150px;
}
@media (max-width: 767px) {
    .archive .filter-left .event-taxonomies,
    .blog .filter-left .event-taxonomies,
    .search .filter-left .event-taxonomies,
    .single .filter-left .event-taxonomies {
        display: none;
    }
}
.archive .filter-left .event-taxonomies ul,
.blog .filter-left .event-taxonomies ul,
.search .filter-left .event-taxonomies ul,
.single .filter-left .event-taxonomies ul {
    margin: 0 0 30px;
    margin: 10px 0;
    padding: 0;
}
.archive .filter-left .event-taxonomies li,
.blog .filter-left .event-taxonomies li,
.search .filter-left .event-taxonomies li,
.single .filter-left .event-taxonomies li {
    list-style: none;
    padding-left: 16px;
    position: relative;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 7px;
}
.archive .filter-left .event-taxonomies li a,
.blog .filter-left .event-taxonomies li a,
.search .filter-left .event-taxonomies li a,
.single .filter-left .event-taxonomies li a {
    color: #eb2b5c;
}
.archive .filter-left .event-taxonomies li a.active,
.archive .filter-left .event-taxonomies li a:hover,
.blog .filter-left .event-taxonomies li a.active,
.blog .filter-left .event-taxonomies li a:hover,
.search .filter-left .event-taxonomies li a.active,
.search .filter-left .event-taxonomies li a:hover,
.single .filter-left .event-taxonomies li a.active,
.single .filter-left .event-taxonomies li a:hover {
    color: #454545;
}
.archive .filter-left .event-taxonomies li:before,
.blog .filter-left .event-taxonomies li:before,
.search .filter-left .event-taxonomies li:before,
.single .filter-left .event-taxonomies li:before {
    display: inline-block;
    content: "";
    width: 6px;
    height: 6px;
    border: 2px solid #452679;
    position: absolute;
    top: 7px;
    left: 0;
    border-radius: 20px;
}
.archive .event-items,
.blog .event-items,
.search .event-items,
.single .event-items {
    min-height: 400px;
    clear: both;
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 71.7890244279%;
    float: none;
    display: inline-block;
    margin-left: 28.2109755721%;
}
.archive .event-items:last-child,
.blog .event-items:last-child,
.search .event-items:last-child,
.single .event-items:last-child {
    margin-right: 0;
}
@media (max-width: 767px) {
    .archive .event-items,
    .blog .event-items,
    .search .event-items,
    .single .event-items {
        margin-top: 120px;
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
    .archive .event-items:nth-child(2n),
    .blog .event-items:nth-child(2n),
    .search .event-items:nth-child(2n),
    .single .event-items:nth-child(2n) {
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
}
.archive .event-items .blog-item,
.blog .event-items .blog-item,
.search .event-items .blog-item,
.single .event-items .blog-item {
    margin-bottom: 45px;
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 100%;
    margin-left: 0;
}
.archive .event-items .blog-item:last-child,
.blog .event-items .blog-item:last-child,
.search .event-items .blog-item:last-child,
.single .event-items .blog-item:last-child {
    margin-right: 0;
}
.archive .event-items .thumbnail,
.archive .event-items .thumbnail .thumbnail-desc,
.blog .event-items .thumbnail,
.blog .event-items .thumbnail .thumbnail-desc,
.search .event-items .thumbnail,
.search .event-items .thumbnail .thumbnail-desc,
.single .event-items .thumbnail,
.single .event-items .thumbnail .thumbnail-desc {
    height: auto;
}
@media (max-width: 767px) {
    .archive .event-items .thumbnail .thumbnail-desc,
    .archive .event-items .thumbnail .thumbnail-desc:nth-child(2n),
    .blog .event-items .thumbnail .thumbnail-desc,
    .blog .event-items .thumbnail .thumbnail-desc:nth-child(2n),
    .search .event-items .thumbnail .thumbnail-desc,
    .search .event-items .thumbnail .thumbnail-desc:nth-child(2n),
    .single .event-items .thumbnail .thumbnail-desc,
    .single .event-items .thumbnail .thumbnail-desc:nth-child(2n) {
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
}
.archive .event-items .thumbnail .thumbnail-content,
.blog .event-items .thumbnail .thumbnail-content,
.search .event-items .thumbnail .thumbnail-content,
.single .event-items .thumbnail .thumbnail-content {
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 66.1468293134%;
}
.archive .event-items .thumbnail .thumbnail-content:last-child,
.blog .event-items .thumbnail .thumbnail-content:last-child,
.search .event-items .thumbnail .thumbnail-content:last-child,
.single .event-items .thumbnail .thumbnail-content:last-child {
    margin-right: 0;
}
@media (max-width: 767px) {
    .archive .event-items .thumbnail .thumbnail-content,
    .archive .event-items .thumbnail .thumbnail-content:nth-child(2n),
    .blog .event-items .thumbnail .thumbnail-content,
    .blog .event-items .thumbnail .thumbnail-content:nth-child(2n),
    .search .event-items .thumbnail .thumbnail-content,
    .search .event-items .thumbnail .thumbnail-content:nth-child(2n),
    .single .event-items .thumbnail .thumbnail-content,
    .single .event-items .thumbnail .thumbnail-content:nth-child(2n) {
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
}
.archive .event-items .thumbnail .thumbnail-date,
.blog .event-items .thumbnail .thumbnail-date,
.search .event-items .thumbnail .thumbnail-date,
.single .event-items .thumbnail .thumbnail-date {
    max-width: 60%;
    text-align: right;
}
.archive .event-items .thumbnail .event-register,
.blog .event-items .thumbnail .event-register,
.search .event-items .thumbnail .event-register,
.single .event-items .thumbnail .event-register {
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 32.2936586269%;
    text-align: right;
}
.archive .event-items .thumbnail .event-register:last-child,
.blog .event-items .thumbnail .event-register:last-child,
.search .event-items .thumbnail .event-register:last-child,
.single .event-items .thumbnail .event-register:last-child {
    margin-right: 0;
}
@media (max-width: 767px) {
    .archive .event-items .thumbnail .event-register,
    .archive .event-items .thumbnail .event-register:nth-child(2n),
    .blog .event-items .thumbnail .event-register,
    .blog .event-items .thumbnail .event-register:nth-child(2n),
    .search .event-items .thumbnail .event-register,
    .search .event-items .thumbnail .event-register:nth-child(2n),
    .single .event-items .thumbnail .event-register,
    .single .event-items .thumbnail .event-register:nth-child(2n) {
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
}
.search .section-title {
    display: none;
}
.search .search-item {
    margin-bottom: 60px;
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 43.5780488557%;
}
.search .search-item:last-child,
.search .search-item:nth-child(2n) {
    margin-right: 0;
}
.search .search-item:nth-child(odd) {
    clear: left;
}
.search .search-item:nth-child(2n) {
    margin-left: 11.2843902289%;
}
@media (max-width: 767px) {
    .search .search-item,
    .search .search-item:nth-child(2n) {
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
}
.search .thumbnail {
    height: 500px;
}
.search .thumbnail .thumbnail-desc {
    height: auto;
}
.search-current-term {
    padding-top: 90px;
    font-size: 18px;
    padding-left: 20px;
    margin-bottom: -60px;
}
@media (max-width: 767px) {
    .search-current-term {
        padding-top: 70px;
        padding-left: 25px;
    }
}
.video-item,
.white-paper-item {
    margin-bottom: 60px;
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 43.5780488557%;
}
.video-item:last-child,
.video-item:nth-child(2n),
.white-paper-item:last-child,
.white-paper-item:nth-child(2n) {
    margin-right: 0;
}
.video-item:nth-child(odd),
.white-paper-item:nth-child(odd) {
    clear: left;
}
.video-item:nth-child(2n),
.white-paper-item:nth-child(2n) {
    margin-left: 11.2843902289%;
}
@media (max-width: 767px) {
    .video-item,
    .video-item:nth-child(2n),
    .white-paper-item,
    .white-paper-item:nth-child(2n) {
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
}
.video-item {
    height: 360px;
}
@media (max-width: 767px) {
    .video-item {
        height: auto;
    }
}
.video-item__header {
    display: block;
    height: 230px;
    background-size: cover;
    background-position: 50%;
}
.video-item__content {
    height: 100px;
}
.white-paper-item__content {
    height: 250px;
}
.post-pagination {
    position: relative;
    clear: both;
    grid-column: 1 / span 2;
}
.post-pagination .button {
    width: 130px;
    text-align: center;
    font-size: 16px;
    font-size: 1rem;
}
.post-pagination .button.next {
    float: right;
}
.post-pagination .button.prev {
    float: left;
}

@media only screen and (max-width: 1000px) {
  .post-pagination {
    grid-column: unset;
  }
}

@media (max-width: 767px) {
    .post-pagination .button {
        width: 95px;
        font-size: 11px;
        font-size: 0.6875rem;
    }
}
.post-pagination .page-num {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.post-pagination .page-num .pagination-number-input {
    width: 4em;
    color: #454545;
    background-color: #ececed;
    border-color: #ffffff;
    border-style: solid;
    border-width: thin;
}

@media (max-width: 767px) {
    .post-pagination .page-num {
        top: 10px;
    }
}
.post-pagination svg {
    fill: #eb2b5c;
    width: 8px;
    height: 12px;
    transition: all 0.5s cubic-bezier(0.47, 0, 0.745, 0.715);
    position: relative;
    top: 14px;
}
.post-pagination a:hover svg {
    fill: #fff;
}
.post-pagination .icon-chevron-left {
    float: left;
}
.post-pagination .icon-chevron-right {
    float: right;
}
.thumbnail-content--press p {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .thumbnail-content--press p {
        font-size: 16px;
        font-size: 1rem;
    }
}

body.about-us section {
    border-top: 0;
}
body.about-us .section-why-encore {
    background: #452679;
}
body.about-us .section-why-encore,
body.about-us .section-why-encore h2 {
    color: #fff;
}
body.about-us .section-quote {
    background: #fff;
}
body.about-us .quote-img-wrap {
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 15.3670732836%;
    margin-right: 0;
}
body.about-us .quote-img-wrap:last-child {
    margin-right: 0;
}
body.about-us .quote-text-wrap {
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 77.4312195423%;
    margin-right: 0;
    margin-left: 5.6421951144%;
}
body.about-us .quote-text-wrap:last-child {
    margin-right: 0;
}
body.about-us .quote-text {
    margin: 0;
    padding: 0 50px;
}
body.about-us .quote-text:after,
body.about-us .quote-text:before {
    background-size: 100px 46px;
    width: 100px;
    height: 46px;
}
body.about-us .quote-text:before {
    background-image: url(../images/svg/icon-quotation-left-gray.svg);
    top: -55px;
}
body.about-us .quote-text:after {
    background-image: url(../images/svg/icon-quotation-right-gray.svg);
    right: 50px;
}
body.about-us .section-about-us .container-2-cols--w3,
body.about-us .section-client-exp .container-2-cols--w3 {
    border-top: 1px solid #cfcfd0;
}
body.about-us .section-about-us .column-row,
body.about-us .section-client-exp .column-row {
    margin-bottom: 20px;
}
body.about-us .section-clients {
    background: #fff;
}
body.about-us .client-list {
    padding: 30px 0 70px;
    border-top: 1px solid #dfdfe0;
    border-bottom: 1px solid #dfdfe0;
    margin-top: 55px;
    position: relative;
}
body.about-us .client-list .line {
    position: absolute;
    width: 1px;
    height: 90%;
    background: #dfdfe0;
    top: 50%;
    transform: translateY(-50%);
}
body.about-us .client-list-item {
    display: inline-block;
    width: 25%;
    margin-right: -4px;
    padding: 10px 50px;
}
body.about-us .link-case-studies {
    font-size: 20px;
    font-size: 1.25rem;
    border-bottom: 1px solid #eb2b5c;
}
body.about-us .link-case-studies:hover {
    border-bottom: 0;
}
body.about-us .section-why-encore {
    position: relative;
}
body.about-us .section-why-encore:after,
body.about-us .section-why-encore:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.7;
}
body.about-us .section-why-encore:before {
    background: linear-gradient(90deg, rgba(125, 185, 232, 0) -1%, rgba(202, 85, 134, 0) 80%, rgba(235, 43, 92, 0.7));
}
body.about-us .section-why-encore:after {
    background-image: url(../images/blog-events-press-hero.png);
    background-position: 100% 0;
}
body.about-us .section-why-encore .container {
    z-index: 1;
}
body.about-us .section-why-encore-title {
    font-size: 46px;
    font-size: 2.875rem;
}
body.about-us .why-encore-items {
    margin: 55px 0 65px;
}
body.about-us .why-encore-item {
    display: inline-block;
    width: 16.6666666667%;
    padding-right: 20px;
    vertical-align: top;
}
body.about-us .why-encore-icon {
    height: 60px;
    margin-bottom: 5px;
}
body.about-us .why-encore-link {
    display: inline-block;
    color: #f3f3f4;
    /* width: 40%; */
    /* New CSS about us word wrap option as per Josh begins */
    width: 60%;
    word-spacing: 100vw;
    min-width: 70px;
    /* New CSS about us word wrap option as per Josh ends */
    text-align: center;
}
body.about-us .why-encore-link.active .why-encore-chevron-down,
body.about-us .why-encore-link:hover .why-encore-chevron-down {
    fill: #f3f3f4;
}
body.about-us .why-encore-chevron-down {
    transition: fill 0.2s ease-out;
    display: block;
    margin: 5px auto 0;
    fill: #eb2b5c;
    width: 18px;
    height: 9px;
}
body.about-us .why-encore-desc-wrap {
    position: relative;
    width: 61.1111111111%;
}
body.about-us .why-encore-desc {
    display: none;
}
body.about-us .why-encore-desc.active {
    display: block;
}
body.about-us .why-encore-desc h3 {
    color: #f3f3f4;
    font-size: 36px;
    font-size: 2.25rem;
}
body.about-us .why-encore-desc p {
    font-size: 18px;
    font-size: 1.125rem;
}
@media (min-width: 768px) and (max-width: 1109px) {
    body.about-us .section-quote {
        padding: 85px 0 105px;
    }
}
@media (max-width: 767px) {
    body.about-us .quote-img-wrap,
    body.about-us .quote-text-wrap {
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
    body.about-us .quote-text-wrap {
        margin-top: 40px;
    }
    body.about-us .quote-text {
        margin: 0;
        padding: 100px 0;
    }
    body.about-us .quote-text:after,
    body.about-us .quote-text:before {
        background-size: 150px 75px;
        width: 150px;
        height: 75px;
    }
    body.about-us .quote-text:before {
        top: 15px;
    }
    body.about-us .quote-text:after {
        right: 0;
        bottom: 20px;
    }
    body.about-us .client-list {
        padding: 30px 0 50px;
    }
    body.about-us .client-list span.line {
        top: 50%;
        left: 50%;
        transform: translateY(-50%);
    }
    body.about-us .client-list span.line:not(:first-of-type) {
        display: none;
    }
    body.about-us .client-list-item {
        display: inline-block;
        width: 50%;
        padding: 10px 20px;
    }
    body.about-us .link-case-studies {
        font-size: 19px;
        font-size: 1.1875rem;
    }
    body.about-us .section-why-encore:after,
    body.about-us .section-why-encore:before {
        content: none;
    }
    body.about-us .section-why-encore-title {
        font-size: 36px;
        font-size: 2.25rem;
    }
    body.about-us .why-encore-icon {
        height: 65px;
        margin-bottom: 10px;
    }
    body.about-us .why-encore-items {
        margin-bottom: 30px;
    }
    body.about-us .why-encore-item {
        display: inline-block;
        width: 25%;
        margin: 0 -4px 30px 0;
        text-align: center;
    }
    body.about-us .why-encore-link {
        width: 100%;
    }
    body.about-us .why-encore-chevron-down {
        margin: 10px auto 0;
    }
    body.about-us .why-encore-desc-wrap {
        position: relative;
        width: 100%;
    }
    body.about-us .why-encore-desc h3 {
        font-size: 22px;
        font-size: 1.375rem;
    }
    body.about-us .why-encore-desc p {
        font-size: 16px;
        font-size: 1rem;
    }
}
body.careers .multi-column-2 {
    column-count: 2;
    column-gap: 150px;
    width: 94.4444444444%;
}
body.careers .multi-column-3 {
    column-count: 3;
    column-gap: 100px;
    width: 88.8888888889%;
}
body.careers .section-careers .entry-content li {
    padding: 10px 0;
    border-top: 1px solid #dfdfe0;
}
body.careers .section-careers .entry-content li:before {
    top: 16px;
    left: -16px;
}
body.careers .section-careers .entry-content li:last-child {
    border-bottom: 1px solid #dfdfe0;
}
body.careers .section-careers .no-bullets {
    margin-bottom: 40px;
}
body.careers .section-careers .icon-file {
    margin-right: 10px;
}
body.careers .section-careers li a {
    color: #eb2b5c;
}
body.careers .section-careers li a:hover {
    color: #454545;
}
body.careers .section-careers li a:hover svg {
    fill: currentColor;
}
body.careers .section-careers .mail-link {
    font-size: 20px;
    font-size: 1.25rem;
    margin-top: 5px;
    display: inline-block;
    border-bottom: 1px solid #eb2b5c;
}
body.careers .section-careers .mail-link:hover {
    border-bottom: 0;
}
body.careers .section-benefits {
    border-top: 0;
    background: #452679;
    color: #fff;
}
body.careers .section-benefits h2,
body.careers .section-benefits h3 {
    color: #fff;
}
body.careers .section-benefits li {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 2.22;
}
body.careers .section-benefits .container-multi-cols {
    padding-top: 25px;
    margin-top: 35px;
    border-top: 1px solid #61468d;
}
body.careers .section-benefits .multi-column-3 {
    position: relative;
}
body.careers .section-benefits .multi-column-3:after,
body.careers .section-benefits .multi-column-3:before {
    position: absolute;
    content: "";
    height: 150%;
    width: 1px;
    background: #61468d;
    top: -30px;
}
body.careers .section-benefits .multi-column-3:before {
    left: 32%;
}
body.careers .section-benefits .multi-column-3:after {
    left: 70%;
}
@media (max-width: 767px) {
    body.careers .multi-column-2 {
        column-count: auto;
        column-gap: normal;
        width: 100%;
    }
    body.careers .multi-column-3 {
        column-count: auto;
        width: 100%;
    }
    body.careers .section-benefits .multi-column-3:after,
    body.careers .section-benefits .multi-column-3:before {
        content: none;
    }
    body.careers .section-benefits li {
        font-size: 16px;
        font-size: 1rem;
    }
}
.entry-content .resource-items ul li {
    padding-left: 0;
}
.entry-content .resource-items ul li:before {
    display: none;
}
.section-contact .container-content {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 57.3509783236%;
    margin-right: 0;
}
.section-contact .container-content:last-child {
    margin-right: 0;
}
.section-contact .sidebar {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 31.7615653177%;
    margin-left: 8.5298043353%;
}
.section-contact .sidebar:last-child {
    margin-right: 0;
}
.section-contact .sidebar a[href^="tel"] {
    font-size: 30px;
    font-size: 1.875rem;
    color: #452679;
    font-weight: 400;
    margin-bottom: 10px;
    display: inline-block;
}
.section-contact .sidebar a[href^="tel"]:before {
    content: "";
    background: url(../images/svg/icon-phone-contact.svg) 50% no-repeat;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: cover;
    margin-right: 10px;
    position: relative;
    top: 2px;
}
.section-contact .sidebar a[href^="mailto"] {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1;
    display: inline-block;
    border-bottom: 1px solid #eb2b5c;
    margin-bottom: 60px;
}
.section-contact .sidebar a[href^="mailto"]:hover {
    border-bottom: 1px solid transparent;
}
.section-contact .sidebar ul {
    padding: 0;
    margin: 0;
}
.section-contact .sidebar ul li {
    list-style: none;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 15px;
}
@media (max-width: 767px) {
    .section-contact .container-content {
        float: left;
        display: block;
        margin-right: 2.3576520234%;
        width: 100%;
    }
    .section-contact .container-content:last-child {
        margin-right: 0;
    }
    .section-contact .sidebar {
        float: left;
        display: block;
        margin-right: 2.3576520234%;
        width: 100%;
        margin-left: 0;
    }
    .section-contact .sidebar:last-child {
        margin-right: 0;
    }
}
.single-casestudies article.casestudies {
    position: relative;
}
.single-casestudies article.casestudies .thumbnail {
    max-height: 150px;
    max-width: 300px;
    padding: 20px 30px;
    border-bottom: 1px solid #ececed;
    position: absolute;
    right: 0;
    top: 0;
}
.single-casestudies article.casestudies .client-logo {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    margin: 0 auto;
    max-height: 110px;
}
@media (max-width: 767px) {
    .single-casestudies article.casestudies .client-logo {
        position: relative;
    }
}
.events-intro p a {
    color: #eb2b5c;
}
.events-intro p a:hover {
    color: #454545;
}
.entry-content p a {
    color: #eb2b5c;
}
.entry-content p a:hover {
    color: #454545;
}
.home header.banner {
    height: 100vh;
    padding-bottom: 0;
}
.section-home-header {
    background: #452679;
    padding: 0 54px;
    color: #fff;
    border-top: 0;
}
.section-home-header h2 {
    font-size: 2rem;
    line-height: 1;
    color: #fff;
}
.section-home-header .container {
    max-width: 910px;
    margin: 0 auto;
    padding: 112px 0;
}
.section-home-header .container:after {
    clear: both;
    content: "";
    display: table;
}
.section-home-header .container > div {
    max-width: 45%;
    width: 375px;
    float: left;
}
.section-home-header .container > div:nth-child(2) {
    float: right;
}
@media (max-width: 767px) {
    .section-home-header {
        padding: 0 20px;
    }
    .section-home-header .container > div {
        max-width: none;
        width: 100%;
        float: none;
    }
    .section-home-header .container > div:nth-child(2) {
        float: none;
    }
    .section-home-header .container > div:first-child {
        margin-bottom: 70px;
    }
}
.section-homepage-hero {
    max-height: 600px;
    height: 600px;
    background-size: cover;
    position: relative;
}
.home .icon-scroll {
    fill: #eb2b5c;
    width: 29px;
    height: 48px;
}
.home .icon-scroll__dot {
    transform: translateY(0);
    transition: transform 0.2s ease-out;
}
.home .icon-scroll:hover .icon-scroll__dot {
    transform: translateY(18px);
}

.home .entry-content-asset {
  /* Parent of 'iframe[src*="youtube.com/embed/"]' */
  position: unset;
  padding-bottom: unset;
  padding-top: unset;
  height: unset;
}

.home iframe[src*="youtube.com/embed/"] {
  position: unset;
  width: 610px;
  height: auto;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  margin-bottom: calc( var(--encore-paragraph-margin-size) - 10px ); /* the parent div adds an extra 10px */
}

.home .main .section-title {
    font-size: 30px;
    font-size: 1.875rem;
}
.home section {
    border-top: 0;
}
.home .case-study-item {
    position: relative;
}
.home .case-study-item:after {
    clear: both;
    content: "";
    display: table;
}
.home .case-study-item .featured,
.home .case-study-item .info {
    width: 50%;
}
.home .case-study-item p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
}
.home .case-study-item .info-contents {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.home .case-study-item:not(:first-child) {
    margin-top: -20px;
}
.home .case-study-item:nth-child(odd) .featured {
    float: right;
}
.home .case-study-item:nth-child(odd) .featured-contents {
    padding-left: 5.5555555556%;
}
.home .case-study-item:nth-child(odd) .info {
    float: left;
}
.home .case-study-item:nth-child(odd) .info-contents {
    width: 33.3333333333%;
    left: 0;
}
.home .case-study-item:nth-child(2n) .featured {
    float: left;
}
.home .case-study-item:nth-child(2n) .featured-contents {
    padding-right: 5.5555555556%;
}
.home .case-study-item:nth-child(2n) .info {
    float: right;
}
.home .case-study-item:nth-child(2n) .info-contents {
    left: 61.1111111111%;
    right: 5.5555555556%;
}
.home .case-study-logo {
    max-width: 60%;
    margin-bottom: 30px;
    width: auto;
}
.home .case-study-more {
    font-size: 20px;
    font-size: 1.25rem;
    padding-bottom: 2px;
    position: relative;
    display: inline-block;
}
.home .case-study-more:after {
    content: "";
    clear: both;
    display: block;
    width: 100%;
    border-top: 1px solid #eb2b5c;
    transition: all 0.15s ease-out 0s;
}
.home .case-study-more:hover:after {
    width: 0;
}
.home .section-blogs-events {
    padding: 115px 0;
}
.home .section-blogs-events .section-title {
    top: 115px;
}

.home .blog-events-container {
  display: grid;
  grid-template-columns: 435.7px 435.7px;
  column-gap: 112.833px;
  justify-content: center;
}
.home .blog-events-container .blog-item,
.home .blog-events-container .events-item {
    width: 100%;
}
.home .blog-events-container .button-wrap {
    text-align: center;
    margin-top: 40px;
}

.home .blog-events:after {
    clear: both;
    content: "";
    display: table;
}
.home .blog-events .blog-item,
.home .blog-events .events-item {
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 43.5780488557%;
    margin-right: 0;
}
.home .blog-events .blog-item:last-child,
.home .blog-events .events-item:last-child {
    margin-right: 0;
}
.home .blog-events .blog-item:nth-child(2),
.home .blog-events .events-item + .blog-item {
    margin-left: 11.2843902289%;
}
.home .blog-events .blog-item:first-child .button-wrap {
    display: none;
}
.home .blog-events .blog-item:nth-child(2) .button-wrap {
    width: 100%;
    transform: translateX(-63%);
}
.home .blog-events .blog-item:nth-child(2) .button-wrap.has-event {
    transform: translateX(0);
}
.home .blog-events .button-wrap {
    text-align: center;
    margin-top: 40px;
}
@media only screen and (max-width: 1000px) {
    .home .blog-events-container {
        grid-template-columns: 435.7px;
        row-gap: 40px;
    }
}
@media (max-width: 800px) {
    .home .blog-events-container {
        grid-template-columns: 390px;
        justify-content: center;
        row-gap: 40px;
    }
}
@media (max-width: 767px) {
    .home .blog-events .blog-item:nth-child(2),
    .home .blog-events .events-item + .blog-item {
        margin-left: 0;
    }
}


/* Sections get alternating background colours */
.home main.main > section {
    background-color: var(--encore-white);
}
.home main.main > section:nth-child(even) {
    background-color: var(--encore-whitesmoke);
}

.home .section-about-us h2 {
    font-size: 22px;
    font-size: 1.375rem;
}
.home .section-about-us a {
    color: #eb2b5c;
}
.home .section-about-us a:hover {
    color: #454545;
}
.no-touchevents .home .fade-in-el {
    opacity: 0;
    transition: opacity 0.5s ease-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.no-touchevents .home .fade-in-el.is-visible {
    opacity: 1;
}
@media (max-width: 767px) {
    .home .main .section-title {
        font-size: 26px;
        font-size: 1.625rem;
    }
    .home .case-study-item {
        position: relative;
        margin-top: 80px;
    }
    .home .case-study-item .featured,
    .home .case-study-item .info {
        width: 100%;
    }
    .home .case-study-item p {
        font-size: 14px;
        font-size: 0.875rem;
    }
    .home .case-study-item .info {
        padding: 50px 0 0;
    }
    .home .case-study-item .info-contents {
        position: static;
        top: auto;
        transform: none;
    }
    .home .case-study-item:not(:first-child) {
        margin-top: 80px;
    }
    .home .case-study-item:nth-child(odd) .featured {
        float: none;
    }
    .home .case-study-item:nth-child(odd) .featured-contents {
        padding-left: 0;
    }
    .home .case-study-item:nth-child(odd) .info {
        float: none;
    }
    .home .case-study-item:nth-child(odd) .info-contents {
        width: 100%;
        left: auto;
    }
    .home .case-study-item:nth-child(2n) .featured {
        float: none;
    }
    .home .case-study-item:nth-child(2n) .featured-contents {
        padding-right: 0;
    }
    .home .case-study-item:nth-child(2n) .info {
        float: none;
    }
    .home .case-study-item:nth-child(2n) .info-contents {
        left: auto;
        right: auto;
    }
    .home .case-study-logo {
        max-width: 50%;
        margin-bottom: 30px;
        width: auto;
    }
    .home .case-study-more {
        font-size: 17px;
        font-size: 1.0625rem;
    }
    .home .section-blogs-events {
        padding: 35px 0 55px;
    }
    .home .section-blogs-events .section-title {
        top: auto;
    }
    .home .blog-events .blog-item,
    .home .blog-events .events-item {
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
        margin-top: 60px;
    }
    .home .blog-events .blog-item {
        margin-left: 0;
    }
    .home .blog-events .button-wrap {
        text-align: left;
        margin-top: 40px;
    }
}
header.banner .section-home-animation {
    border-top: 0;
    padding: 0;
    height: calc(100% - 134px);
    overflow: hidden;
}
header.banner .section-home-animation:after {
    pointer-events: none;
    width: 100%;
    height: 200px;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(69, 38, 121, 0) 10%, #452679);
    content: "";
    display: block;
    position: absolute;
    z-index: 3;
}
header.banner .svg-wrapper {
    padding: 45px 0;
}
header.banner .icon-scroll {
    height: 50px;
    width: 30px;
    fill: #eb2b5c;
    position: absolute;
    z-index: 11;
    bottom: 100px;
    left: 50%;
    transform: translate(-50%);
}
.home-encore-animation-el {
    fill: #fff !important;
}
.svg-encore-pattern {
    position: absolute;
    width: 1457px;
    fill: #fff;
    z-index: 1;
    top: calc(50% - 186px);
    right: calc(50vw - 2px);
}
.svg-encore-logo {
    width: 460px;
    height: 460px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(50% - 134px - 230px);
    z-index: 10;
    overflow: hidden;
}
.home-encore-circle {
    stroke-dasharray: 1384;
    stroke-dashoffset: 1384;
    transform-origin: 50% 50%;
}
.home-encore-circle-path {
    fill: none;
    stroke: #fff;
    stroke-width: 96;
    stroke-miterlimit: 10;
}
.home-intro-statement {
    font-size: 36px;
    font-size: 2.25rem;
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(calc(-50% - 220px));
    top: 175px;
    max-width: 800px;
    line-height: 1.16;
    color: #fff;
}
.is-ms .home-intro-statement {
    transform: translateX(-450px);
}
@media (max-height: 960px) and (min-width: 1025px) {
    .svg-encore-pattern {
        top: calc(64% - 188px);
    }
    .svg-encore-logo {
        top: calc(64% - 134px - 230px);
    }
    .home-intro-statement {
        top: 175px;
    }
    header.banner .icon-scroll {
        bottom: 5%;
    }
}
.svg-encore-pattern {
    opacity: 1;
    transform: translateX(0);
}
.home .svg-encore-pattern {
    opacity: 0;
    transform: translateX(150px);
}
.is-ms .home .svg-encore-pattern,
.is-not-ms .home .svg-encore-pattern {
    animation: showPattern 0.8s ease-out 2s forwards;
}
@keyframes showPattern {
    0% {
        opacity: 0;
        transform: translateX(150px);
    }
    to {
        opacity: 0.9;
        transform: translateX(0);
    }
}
.is-not-ms .home-encore-circle1 {
    transform: rotate(90deg);
    animation: showCircle1 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
    transform-origin: 50% 50%;
}
@keyframes showCircle1 {
    0% {
        stroke-dashoffset: 1384;
    }
    to {
        stroke-dashoffset: 1038;
    }
}
.is-not-ms .home-encore-circle2 {
    transform: rotate(270deg);
    animation: showCircle2 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
    transform-origin: 50% 50%;
}
@keyframes showCircle2 {
    0% {
        stroke-dashoffset: 1384;
    }
    to {
        stroke-dashoffset: 1001;
    }
}
.home-encore-line {
    display: none;
}
.is-not-ms .home-encore-line {
    opacity: 0;
    transform: scaleX(0);
    animation: expandLine 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2s forwards;
    transform-origin: 100% 50%;
    display: block;
}
@keyframes expandLine {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    1% {
        opacity: 1;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}
.home-encore-logo {
    opacity: 0;
}
.is-not-ms .home-encore-logo {
    animation: showLogo 0.1s linear 2.5s forwards;
}
.is-ms .home-encore-logo {
    animation: showLogo 1s linear 1s forwards;
}
@keyframes showLogo {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.home header.banner:after {
    opacity: 0;
}
.is-ms .home header.banner:after,
.is-not-ms .home header.banner:after {
    display: block;
    z-index: 5;
    animation: fadeInGrad 1.2s ease-out 2s forwards;
}
@keyframes fadeInGrad {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.home-intro-statement {
    opacity: 1;
}
.is-not-ms .home-intro-statement {
    animation: showText 0.5s ease-out 2.2s forwards;
}
.is-ms .home-intro-statement {
    animation: showTextInMS 0.5s ease-out 2.2s forwards;
}
@keyframes showText {
    0% {
        opacity: 0;
        transform: translate(calc(-50% - 220px));
    }
    to {
        opacity: 1;
        transform: translate(calc(-50% - 250px));
    }
}
@keyframes showTextInMS {
    0% {
        opacity: 0;
        transform: translate(-420px);
    }
    to {
        opacity: 1;
        transform: translate(-450px);
    }
}
@media (max-width: 1109px) {
    header.banner .section-home-animation {
        height: calc(100% - 134px);
    }
    header.banner .icon-scroll {
        bottom: 20px;
        left: 20px;
        transform: none;
    }
    .svg-encore-logo {
        position: relative;
        left: 67%;
        transform: translateX(-50%);
        top: auto;
        margin-top: -200px;
    }
    .home-encore-logo {
        opacity: 1;
        animation: none;
    }
    .is-ms .home-encore-logo {
        animation: none;
    }
    .home-intro-statement {
        font-size: 31px;
        font-size: 1.9375rem;
        position: relative;
        left: 20px;
        transform: none;
        top: auto;
        max-width: 60%;
        margin-top: 40px;
        opacity: 1;
        animation: none;
    }
    .is-ms .home-intro-statement {
        transform: none;
    }
    .home-encore-circle1,
    .home-encore-circle2,
    .home-encore-line {
        display: none;
        transform: none;
        animation: none;
    }
    .home-encore-circle {
        display: none;
    }
    .svg-encore-pattern {
        transform: none;
        display: none;
    }
    .home header.banner:after,
    .svg-encore-pattern {
        opacity: 1;
        animation: none;
    }
}
@media (max-width: 400px) {
    .home-intro-statement {
        margin-top: -20px;
    }
    .svg-encore-logo {
        height: 300px;
        width: 300px;
        margin-top: -160px;
        left: 75%;
    }
}
body.expertise .section:after {
    clear: both;
    content: "";
    display: table;
}
body.expertise .section .section-item {
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 43.5780488557%;
    margin-right: 0;
    margin-left: 11.2843902289%;
    margin-bottom: 50px;
}
body.expertise .section .section-item:last-child {
    margin-right: 0;
}
body.expertise .section .section-item:nth-child(n + 4) {
    margin-top: 0;
}
@media (min-width: 768px) {
    body.expertise .section .section-item:nth-child(odd) {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    body.expertise .section .section-item {
        float: none;
        float: left;
        display: block;
        margin-right: 1.5595120597%;
        width: 100%;
        margin-bottom: 50px;
    }
    body.expertise .section .section-item:last-child {
        margin-right: 0;
    }
    body.expertise .section .section-item:not(:first-child),
    body.expertise .section .section-item:nth-child(odd) {
        margin-left: 0;
    }
}
body.expertise .thumbnail-title {
    line-height: 1.16;
}
body.expertise .thumbnail-title a {
    font-size: 36px;
    font-size: 2.25rem;
    color: #452679;
    border-bottom: 0;
}
body.expertise .thumbnail-title a:hover {
    border-bottom: inherit;
}
body.expertise .thumbnail-desc {
    padding: 50px 30px;
    height: 410px;
}
body.expertise .case-studies {
    background: #dfdfe0;
}
body.expertise .case-studies > .container {
    padding-right: 20px;
    padding-left: 20px;
}
@media (max-width: 1109px) {
    body.expertise .case-studies > .container {
        padding-bottom: 60px;
    }
}
.page.page-template-template-product .product-content p > a {
    color: #eb2b5c;
}
.page.page-template-template-product .product-content p > a:hover {
    color: #454545;
}
.page.page-template-template-product section {
    padding: 115px 0;
    position: relative;
}
@media (max-width: 1109px) {
    .page.page-template-template-product section {
        padding: 35px 0 55px;
    }
}
.page.page-template-template-product .section-intro-column {
    width: 55%;
}
@media (max-width: 1109px) {
    .page.page-template-template-product .section-intro-column {
        width: 100%;
    }
}
.page.page-template-template-product section.section-features {
    background: #ececed;
}
.page.page-template-template-product section.section-features .column {
    padding-bottom: 30px;
}
.page.page-template-template-product section.section-resources {
    background: #ececed;
}
.page.page-template-template-product section.section-resources .section-intro-column,
.page.page-template-template-product section.section-resources .texts-column {
    padding-bottom: 30px;
}
.page.page-template-template-product section.section-product-cta {
    padding-bottom: 115px;
}
.page.page-template-template-product section.section-inquire .column {
    padding-bottom: 30px;
}
.page.page-template-template-product .container-2-cols {
    border-top: 1px solid #dfdfe0;
}
.page.page-template-template-product .section-overview {
    background: #fff;
}
.page.page-template-template-product .section-overview .column {
    display: inline-block;
}
.page.page-template-template-product .product-overview-container {
    position: relative;
    margin-bottom: 30px;
}
.page.page-template-template-product .column.product-detail {
    width: 55%;
}
@media (max-width: 767px) {
    .page.page-template-template-product .column.product-detail {
        width: 100%;
    }
}
.page.page-template-template-product .column.product-thumb img {
    width: auto;
    max-width: 200px;
    position: absolute;
    top: 50%;
    left: 66%;
    transform: translateY(-50%);
}
@media (max-width: 767px) {
    .page.page-template-template-product .column.product-thumb {
        max-width: 100%;
    }
    .page.page-template-template-product .column.product-thumb img {
        position: static;
        transform: translateY(0);
    }
}
.page.page-template-template-product .case-studies .intro-text {
    max-width: 57%;
    margin-bottom: 60px;
}
.video-white-paper .video-items:after,
.video-white-paper .white-paper-items:after {
    clear: both;
    content: "";
    display: table;
}
.video-white-paper .icon-play,
.video-white-paper .icon-play-hover {
    width: 35px;
    height: 35px;
    display: block;
}
.video-white-paper .icon-play {
    fill: #eb2b5c;
}
.video-white-paper .icon-play-hover {
    display: none;
}
.video-white-paper .video-item__content {
    padding: 25px 20px;
    font-size: 14px;
    font-size: 0.875rem;
}
.video-white-paper .video-item__icon {
    float: left;
    display: block;
    margin-right: 3.5786642602%;
    width: 15.8423352885%;
    margin-right: 0;
    display: inline-block;
}
.video-white-paper .video-item__icon:last-child {
    margin-right: 0;
}
.video-white-paper .video-item__icon:hover .icon-play {
    display: none;
}
.video-white-paper .video-item__icon:hover .icon-play-hover {
    display: block;
}
.video-white-paper .video-item__desc {
    float: left;
    display: block;
    margin-right: 3.5786642602%;
    width: 67.6316674187%;
    margin-right: 0;
    padding-right: 20px;
}
.video-white-paper .video-item__desc:last-child {
    margin-right: 0;
}
.video-white-paper .video-item__duration {
    padding-left: 15px;
    font-weight: 500;
}
.video-white-paper .video-item__media {
    display: none;
}
.video-white-paper .white-paper-item__content {
    padding: 35px 25px;
}
.video-white-paper .white-paper-item__title {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.45;
    margin-bottom: 25px;
}
.video-white-paper .white-paper-item__desc {
    font-size: 16px;
    font-size: 1rem;
}
.video-white-paper .white-paper-item__meta {
    border-top: 1px solid #dfdfe0;
}
.video-white-paper .white-paper-item__date {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 20px 25px;
    display: block;
}
.resource-items ul {
    list-style-type: none;
    padding: 0;
}
.resource-items li {
    margin-bottom: 5px;
}
.resource-items li:hover a {
    color: #454545;
}
.resource-items li:hover svg {
    fill: #454545;
}
.resource-items .icon-file + a,
.resource-items .icon-link + a {
    margin-left: 10px;
    max-width: 90%;
    white-space: nowrap;
}
@media (max-width: 1109px) {
    .resource-items .icon-file + a,
    .resource-items .icon-link + a {
        white-space: normal;
    }
}
.resource-items .resource-item {
    margin-bottom: 60px;
}
.resource-items .resource-item:nth-child(odd) {
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 43.5780488557%;
    margin-right: 0;
}
.resource-items .resource-item:nth-child(odd):last-child {
    margin-right: 0;
}
.resource-items .resource-item:nth-child(2n) {
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 43.5780488557%;
    margin-right: 0;
    margin-left: 11.2843902289%;
}
.resource-items .resource-item:nth-child(2n):last-child {
    margin-right: 0;
}
@media (max-width: 1109px) {
    .resource-items .resource-item:nth-child(odd) {
        float: left;
        display: block;
        margin-right: 1.5595120597%;
        width: 100%;
        margin-right: 0;
    }
    .resource-items .resource-item:nth-child(odd):last-child {
        margin-right: 0;
    }
    .resource-items .resource-item:nth-child(2n) {
        float: left;
        display: block;
        margin-right: 1.5595120597%;
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
    .resource-items .resource-item:nth-child(2n):last-child {
        margin-right: 0;
    }
}
.resource-items p {
    font-size: 14px;
    font-size: 0.875rem;
    width: 87%;
}
.resource-items p a {
    color: #eb2b5c;
}
.resource-items p a:hover {
    color: #454545;
}
.resource-items p:empty {
    display: none;
}
@media (max-width: 1109px) {
    .resource-items p {
        width: 100%;
    }
}
body.solutions .thumbnail-img-wrap {
    padding: 20px;
    border-bottom: 1px solid #ececed;
    height: 150px;
}
body.solutions .thumbnail-img-wrap img {
    max-height: 100%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
}
body.solutions .thumbnail-desc {
    height: 350px;
}
@media (max-width: 767px) {
    body.solutions .thumbnail-desc {
        height: 300px;
    }
}
body.solutions .thumbnail-title {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.4;
}
.single .single-section {
    padding: 135px 0;
}
@media (max-width: 1109px) {
    .single .single-section {
        padding: 35px 0 55px;
    }
}
.single .section-title {
    top: 135px;
}
.single .entry-title {
    font-size: 46px;
    font-size: 2.875rem;
    line-height: 1;
    width: 66.6666666667%;
}
.single .entry-meta {
    font-size: 16px;
    font-size: 1rem;
}
.single .entry-meta a {
    color: #eb2b5c;
    text-transform: capitalize;
    margin-right: 15px;
}
.single .entry-meta a:hover {
    color: #454545;
}

article.proper-width-article {
   /*  width: 61%; */
    width: var(--encore-single-post-content-width);
    max-width: unset;
}

.single .entry-content__header .entry-content-asset,
.single .entry-content__header blockquote,
.single .entry-content__header figure,
.single .entry-content__header h1,
.single .entry-content__header h2,
.single .entry-content__header h3,
.single .entry-content__header h4,
.single .entry-content__header h5,
.single .entry-content__header h6,
.single .entry-content__header img,
.single .entry-content__header ol,
.single .entry-content__header p,
.single .entry-content__header table,
.single .entry-content__header ul,
.single .entry-content__main .entry-content-asset,
.single .entry-content__main blockquote,
.single .entry-content__main figure,
.single .entry-content__main h1,
.single .entry-content__main h2,
.single .entry-content__main h3,
.single .entry-content__main h4,
.single .entry-content__main h5,
.single .entry-content__main h6,
.single .entry-content__main img,
.single .entry-content__main ol,
.single .entry-content__main p,
.single .entry-content__main table,
.single .entry-content__main ul {
    width: 61.1111111111%;
}

.single .entry-content__header img,
.single .entry-content__main img {
    margin-bottom: 30px;
}
.single .entry-content__header p > img,
.single .entry-content__main p > img {
    width: 100%;
}

.single article.proper-width-article .entry-content__main {
    padding: 50px 0 var(--encore-paragraph-margin-size);
}

.single .entry-content__main {
    padding: 50px 0 80px;
}
.single .entry-content__main > img:first-child {
    margin-bottom: 55px;
}
.single .entry-content__main img {
    max-width: 61.1111111111%;
    width: auto;
}

/*
.single .entry-content__main > ol > li > img.size-full,
.single .entry-content__main > ul > li > img.size-full,
.single .entry-content__main > ol > p > img.size-full,
.single .entry-content__main > ul > p > img.size-full {
    width: 100%;
    max-width: unset;
}*/

.single article.proper-width-article * { /* Careful with modifying this selector */
    width: unset;
    max-width: 100%;
}

.single article.proper-width-article .small-text {
    font-size: var(--encore-small-text-size);
    line-height: 15px;
}

.single article.proper-width-article iframe {
    width: 600px;
}

.single article.proper-width-article .clickdform input,
.single article.proper-width-article .clickdform textarea {
    width: 100%;
}

.single article.proper-width-article .clickdform .buttonContainer {
    width: 240px;
}

.single article.proper-width-article .clickdform #btnSubmit {
    width: auto;
}

.single article.proper-width-article div.callout-module {
    width: 1000px;
    max-width: unset;
}

/*
.single article.proper-width-article div.callout-module.after-article {
    width: 100%;
}
*/

.single article.proper-width-article div.callout-module > .callout-content-wrap {
    width: 50%;
}

.single article.proper-width-article img.size-full {
    max-width: 100%;
}

.single .entry-content__main h2 {
    font-size: 36px;
    font-size: 2.25rem;
}
.single .entry-content__main h3 {
    font-size: 22px;
    font-size: 1.375rem;
}
.single .entry-content__main h4,
.single .entry-content__main h5,
.single .entry-content__main h6,
.single .entry-content__main p {
    font-size: 16px;
    font-size: 1rem;
}
.single .entry-content__main p a {
    color: var(--encore-pink);
}
.single .entry-content__main p a:hover {
    color: var(--encore-darkgrey);
}
.single .entry-content__main ol {
    margin: 0 0 30px;
    padding-left: 16px;
    font-size: 16px;
    font-size: 1rem;
}
.single .entry-content__main figure {
    margin: 55px 0;
}
.single .entry-content__main figcaption {
    margin-top: 20px;
    font-size: 14px;
    font-size: 0.875rem;
}
/* TODO: Delete this rule. It's obsolete after adding margin to `blockquote` itself
.single .entry-content__main blockquote {
    margin: 70px 0 60px;
}
*/
.single .entry-content__main blockquote p {
    width: 100%;
    line-height: 1.3;
    /* font-size: 30px; */
    font-size: 1.4rem;
}
.single .entry-content__footer h5 {
    font-size: 16px;
    font-size: 1rem;
    color: #454545;
}
.single .entry-content__footer li:before {
    content: none;
}
.single .entry-content__footer a,
.single .entry-content__footer h5,
.single .entry-content__footer li,
.single .entry-content__footer ul {
    display: inline-block;
    margin: 0;
    line-height: 1;
}
.single .entry-content__footer h5,
.single .entry-content__footer ul {
    vertical-align: middle;
}
.single .entry-content__footer a {
    color: #eb2b5c;
}
.single .entry-content__footer a:hover {
    color: #454545;
}
.single .entry-content__footer svg {
    fill: #eb2b5c;
    width: 30px;
    height: 30px;
}
.single .entry-content__footer .post-categories {
    list-style-type: none;
}
.single .entry-content__footer .entry-cat {
    float: unset;
}
.single .entry-content__footer .social-share-horizontal-list {
    display: flex;
    align-items: center;
    justify-content: left;
    column-gap: 5px;
}
.single .entry-content__footer .social-share-horizontal-list span {
    outline-color: unset;
    padding-right: 7px;
}

.single .entry-content__footer .social-share-horizontal-list a > img {
    height: 30px;
}
.single .entry-cat {
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 66.1468293134%;
    margin-right: 0;
    padding-top: 11px;
}
.single .entry-cat:last-child {
    margin-right: 0;
}
.single .entry-share-wrap {
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 26.6514635124%;
    margin-right: 0;
    margin-left: 5.6421951144%;
}
.single .entry-share-wrap:last-child {
    margin-right: 0;
}
.single .entry-share {
    width: auto;
    display: inline-block;
}
.single .entry-share-email {
    display: inline-block;
    margin-left: 13px;
    vertical-align: middle;
    padding-top: 4px;
}
.single .section-author {
    background: #f3f3f4;
    border-top: 0;
}
.single .section-author h2 {
    text-transform: capitalize;
}
.single .author-img-wrap {
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 15.3670732836%;
    margin-right: 0;
}
.single .author-img-wrap:last-child {
    margin-right: 0;
}
.single .author-img-wrap img {
    border-radius: 100%;
}
.single .author-info {
    float: left;
    display: block;
    margin-right: 1.5595120597%;
    width: 43.5780488557%;
    margin-right: 0;
    margin-left: 5.6421951144%;
}
.single .author-info:last-child {
    margin-right: 0;
}
.single .author-info p {
    font-size: 16px;
    font-size: 1rem;
}
.single .author-link {
    font-size: 20px;
    font-size: 1.25rem;
    border-bottom: 1px solid #eb2b5c;
}
.single .author-link:hover {
    border-bottom: 1px solid #454545;
}
.single .author-name {
    text-transform: capitalize;
}
.single .section-related {
    border-top: 0;
}
.single .event-table-wrap {
    background: #fff;
    padding: 45px 50px;
    margin-bottom: 60px;
    width: 61.1111111111%;
}
.single .event-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 30px;
}
.single .event-table-wrap td,
.single .event-table-wrap th {
    padding: 20px 0 15px;
    border: 0;
    border-bottom: 1px solid #dfdfe0;
    vertical-align: middle;
    line-height: 1;
}
.single .event-table-wrap th {
    border-right: 1px solid #dfdfe0;
    width: 15%;
    padding-right: 20px;
}
.single .event-table-wrap td {
    padding-left: 20px;
    width: 85%;
}
.single .event-table-wrap .first-row td,
.single .event-table-wrap .first-row th {
    border-top: 1px solid #dfdfe0;
}
.single .section-contact .event-table-wrap {
    width: 100%;
}
.single .section-contact .event-table-wrap p {
    margin: 0;
}
.single .section-contact .event-table-wrap a {
    color: #eb2b5c;
}
.single .section-contact .event-table-wrap a:hover {
    color: #454545;
}
.single .section-contact .nf-before-form-content {
    display: none;
}
.entry-content-asset {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}
.entry-content-asset iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



@media (max-width: 767px) {
    .single .section-title {
        display: none;
    }
    .single .entry-title {
        font-size: 40px;
        font-size: 2.5rem;
        line-height: 1.25;
    }
    .single .entry-meta {
        font-size: 14px;
        font-size: 0.875rem;
    }
    article.proper-width-article {
        width: 100%;
    }
    .single .entry-content__header .entry-content-asset,
    .single .entry-content__header blockquote,
    .single .entry-content__header figure,
    .single .entry-content__header h2,
    .single .entry-content__header h3,
    .single .entry-content__header h4,
    .single .entry-content__header h5,
    .single .entry-content__header h6,
    .single .entry-content__header img,
    .single .entry-content__header ol,
    .single .entry-content__header p,
    .single .entry-content__header table,
    .single .entry-content__header ul,
    .single .entry-content__main .entry-content-asset,
    .single .entry-content__main blockquote,
    .single .entry-content__main figure,
    .single .entry-content__main h2,
    .single .entry-content__main h3,
    .single .entry-content__main h4,
    .single .entry-content__main h5,
    .single .entry-content__main h6,
    .single .entry-content__main img,
    .single .entry-content__main ol,
    .single .entry-content__main p,
    .single .entry-content__main table,
    .single .entry-content__main ul {
        width: 100%;
    }
    .single .entry-content__header img,
    .single .entry-content__main img {
        margin-bottom: 30px;
    }
    .single .entry-content__header h1,
    .single .entry-content__header p > img,
    .single .entry-content__main p > img {
        width: 100%;
    }
    .single .entry-content__main h2 {
        font-size: 31px;
        font-size: 1.9375rem;
    }
    .single .entry-content__main h3,
    .single .entry-content__main h4,
    .single .entry-content__main h5,
    .single .entry-content__main h6 {
        font-size: 19px;
        font-size: 1.1875rem;
    }
    .single .entry-content__main blockquote {
        padding: 40px 0;
    }
    .single .entry-content__main blockquote p {
        font-size: 26px;
        font-size: 1.625rem;
    }
    .single .entry-content__footer h5,
    .single .entry-content__footer ul {
        display: block;
    }
    .single .entry-content__footer h5 {
        margin-bottom: 12px;
    }
    .single .entry-content__footer svg {
        fill: #eb2b5c;
        width: 25px;
        height: 25px;
    }
    .single .entry-cat,
    .single .entry-share-wrap {
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
    .single .entry-share-email {
        padding-top: 2px;
    }
    .single .entry-cat li {
        margin-bottom: 12px;
    }
    .single .entry-share {
        margin-top: 50px;
    }
    .single .entry-share h5,
    .single .entry-share ul {
        display: inline-block;
    }
    .single .entry-share h5 {
        margin-bottom: 0;
    }
    .single .section-author .section-title {
        display: block;
    }
    .single .author-img-wrap,
    .single .author-info {
        display: block;
        float: none;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
    .single .author-img-wrap {
        width: 48%;
        margin-bottom: 30px;
    }
    .single .author-info h2 {
        font-size: 31px;
        font-size: 1.9375rem;
    }
    .single .author-link {
        font-size: 18px;
        font-size: 1.125rem;
    }
    .single .section-related {
        border-top: 0;
    }
    .single .event-table-wrap {
        width: 100%;
    }
    .single .callout-module {
        background-image: none !important;
        padding: 75px 20px 65px;
        margin: 60px -20px;
    }
    .single .callout-module h2,
    .single .callout-module p {
        color: #fff;
        width: 100%;
    }
    .single .callout-module p {
        font-size: 18px;
        font-size: 1.125rem;
    }
    .single .callout-content-wrap {
        width: 100%;
    }

    .single .after-article-callout-module {
        background-image: none !important;
        padding: 75px 20px 65px;
        margin: 60px -20px;
    }
    .single .after-article-callout-module h2,
    .single .after-article-callout-module p {
        /* TODO: remove this class as .callout-headline|.callout-description-container replaced it */
        color: #fff;
        width: 100%;
    }
    .single .after-article-callout-module .callout-headline,
    .single .after-article-callout-module .callout-description-container p {
        color: #fff;
        width: 100%;
    }
    .single .after-article-callout-module p {
        /* TODO: remove this class as .callout-headline|.callout-description-container replaced it */
        font-size: 18px;
        font-size: 1.125rem;
    }
    .single .after-article-callout-module .callout-description-container p {
        font-size: 18px;
        font-size: 1.125rem;
    }
    .single article.proper-width-article div.callout-module {
        width: 100%;
        max-width: 100%;
        margin: 60px 0px 60px 0px;
    }

    .single article.proper-width-article div.callout-module > .callout-content-wrap {
        width: 100%;
    }

    .single article.proper-width-article div.after-article-callout-module {
        width: 100%;
        max-width: 100%;
        margin: 60px 0px 0px 0px;
    }

    .single article.proper-width-article div.after-article-callout-module > .callout-content-wrap {
        width: 100%;
    }


}
.callout-module {
    background-repeat: no-repeat !important;
    background-position: 85% 50% !important;
    background-size: 30% !important;
    padding: 75px 60px 65px;
    background: #452679;
    margin: 60px 0;
}
.callout-module h2,
.callout-module p {
    color: #fff;
    width: 100% !important;
}
.callout-module p {
    font-size: 18px;
    font-size: 1.125rem;
}
.callout-content-wrap {
    width: 50%;
}

.after-article-callout-module {
    background-repeat: no-repeat !important;
    background-position: 85% 50% !important;
    background-size: 30% !important;
    padding: 75px 60px 65px;
    background: #452679;
    margin: 60px 0;
}
.after-article-callout-module h2,
.after-article-callout-module p {
    /* TODO: remove this class as .callout-headline|.callout-description-container replaced it */
    color: #fff;
    width: 100% !important;
}
.after-article-callout-module .callout-headline,
.after-article-callout-module .callout-description-container p {
    color: #fff;
    width: 100% !important;
}
.after-article-callout-module p {
    /* TODO: remove this class as .callout-headline|.callout-description-container replaced it */
    font-size: 18px;
    font-size: 1.125rem;
}
.after-article-callout-module .callout-description-container p {
    font-size: 18px;
    font-size: 1.125rem;
}

.after-article-callout-module {
    width: 61.1111111111%;
    background-repeat: no-repeat !important;
    background-position: 0;
    background-size: 100% !important;
    padding: 30px;
    background: #452679;
    margin: 0;
}
.after-article-callout-module h3,
.after-article-callout-module p {
    /* TODO: remove this class as .callout-headline|.callout-description-container replaced it */
    color: #fff;
    width: 100% !important;
}
.after-article-callout-module .callout-headline,
.after-article-callout-module .callout-description-container p {
    color: #fff;
    width: 100% !important;
}
.after-article-callout-module h3 {
    /* TODO: remove this class as .callout-headline|.callout-description-container replaced it */
    font-weight: 500;
}
.after-article-callout-module .callout-headline {
    font-size: 1.375rem;
    font-weight: 500;
    margin: 0 0 30px;
}
.after-article-callout-module p {
    /* TODO: remove this class as .callout-headline|.callout-description-container replaced it */
    font-size: 18px;
    font-size: 1.125rem;
}
.after-article-callout-module .callout-description-container p {
    font-size: 16px;
    font-size: 1rem;
    margin: 0 0 30px;
}
.after-article-callout-module .callout-content-wrap {
    width: 100%;
}

@media only screen and (max-width: 1050px) {
    article.proper-width-article {
        /* width:70%; */ /* Possible future change to make it look a little nicer on small desktop monitors */
    }

    .single article.proper-width-article div.callout-module {
        width: calc(100vw - 50px);
        max-width: unset;
    }

    .single article.proper-width-article div.after-article-callout-module {
        width: calc(100vw - 50px);
        max-width: unset;
    }
}
.container-content p a {
    color: #eb2b5c;
}
.container-content p a:hover {
    color: #454545;
}
body#tinymce {
    margin: 12px !important;
}

.salesy-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    column-gap: 4rem;
}

.leftmargin10{
    /*This lines up elements with a ClickD form's left side */
    margin-left: 10px
}

.leftrightmargin40{
    /*This lines up text with a blockquote on the current blockquote style as of 20220420*/
    margin-left: 40px;
    margin-right: 40px
}




@media only screen and (max-width: 800px) {
    html {
      /* min-width: 457px; the functional good size */
      min-width: 390px; /* The width of an iPhone 12 Pro */
    }
}

@media all and (max-width: 600px){
    .social-share-grid {
        max-width: 9rem;
    }

    .social-share-p {
        text-align: left;
    }

    .disappearonmobile {
        display:none;
    }

    .salesy-page-grid {
        grid-template-columns: 1fr;
    }
}
