@charset "UTF-8";
:root {
  --layout-header-height: 73px;
  --color-primary: #993dbb;
  --color-primary-light: #FDF9FF;
  --color-base-invert: #000000;
  --color-base-light: #303030;
  --color-base: #ffffff;
  --color-base-light-muted: #F5ECF8;
  --color-base-light-muted-half: #F5ECF880;
  --color-muted: #D0D0D0;
  --color-muted-dark: #777;
  --color-danger: #BB3D3D;
  --site-width-large: 80.125rem;
  --site-width-medium: 60rem;
  --site-width-small: 48rem;
  --site-width-mobile: 40rem;
  --grid-gap: calc(1.75rem - 1px);
  --grid-gap-old: 1.875rem;
  --spacing-extra-smaller: 0.875rem;
  --spacing-extra-small: 1rem;
  --spacing-smaller: 1.125rem;
  --spacing-small-medium: 1.25rem;
  --spacing-small: 1.875rem;
  --spacing-default: 2.5rem;
  --spacing-medium: 2.875rem;
  --spacing-large: 3.75rem;
  --spacing-custom-large: 4.375rem;
  --spacing-custom: var(--grid-gap);
  --spacing-custom-grid: var(--grid-gap);
  --section-spacing-small: var(--spacing-small);
  --section-spacing-default: var(--spacing-default);
  --section-spacing-large: var(--spacing-large);
  --section-spacing-custom-large: var(--spacing-custom-large);
  --section-spacing-larger: calc(var(--spacing-default) * 2);
  --section-spacing-extra-large: calc(var(--spacing-large) * 2);
  --font-primary-new: "Nunito", sans-serif;
  --font-secondary-new: "DM Sans", sans-serif;
  --font-custom-default: "Avenir Default", sans-serif;
  --font-custom-medium: "Avenir Medium", sans-serif;
  --font-custom-bold: "Avenir Bold", sans-serif;
  --font-gotcha: "Gotcha Regular", sans-serif;
  --font-size-h1: 3rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.625rem;
  --font-size-h4: 1.5rem;
  --font-size-h5: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-large-custom: 2.625rem;
  --font-size-custom: 1.375rem;
  --font-size-small: 1.125rem;
  --font-size-extra-small: 0.875rem;
  --font-size-h2-line-height: 1.25;
  --font-size-h4-line-height: 1.25;
  --shadow-primary: 0 4px 10px 0 rgb(0 0 0 / 10%);
  --shadow-secondary: 0 8px 10px 2px rgb(0 0 0 / 10%);
  --shadow-custom: 0px 3px 10px rgba(0, 0, 0, 0.05); }
  @media (max-width: 62rem) {
    :root {
      --spacing-default: 1.875rem;
      --spacing-large: 2.5rem;
      --spacing-custom-large: 1.875rem;
      --section-spacing-large: 1.875rem;
      --section-spacing-larger: var(--spacing-default);
      --section-spacing-extra-large: var(--spacing-large); } }
  @media (max-width: 42rem) {
    :root {
      --grid-gap: 1.5rem;
      --grid-gap-old: 0;
      --spacing-medium: 1.5rem; } }
  @media (max-width: 62rem) {
    :root {
      --font-size-h1: 2.5rem;
      --font-size-large-custom: 2.125rem; } }
  @media (max-width: 42rem) {
    :root {
      --font-size-h1: 1.75rem;
      --font-size-h2: 1.5rem;
      --font-size-h3: 1.25rem;
      --font-size-h5: 1rem;
      --font-size-h4: 1.125rem;
      --font-size-large-custom: 1.375rem;
      --font-size-custom: 1.125rem;
      --font-size-small: 1rem; } }

.content-flexible-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 59.625rem) 18.75rem;
  justify-content: space-between;
  grid-gap: var(--grid-gap); }
  .content-flexible-wrapper .secondary-container {
    grid-column: 2/3; }
  .content-flexible-wrapper .primary-container, .content-flexible-wrapper .secondary-container {
    width: 100%; }
  .content-flexible-wrapper.boxes-reverse {
    grid-template-columns: 18.75rem minmax(0, 59.625rem); }
  @media (max-width: 62rem) {
    .content-flexible-wrapper {
      grid-template-columns: minmax(0, 100%); }
      .content-flexible-wrapper.boxes-reverse {
        grid-template-columns: 1fr; }
      .content-flexible-wrapper .primary-container, .content-flexible-wrapper .secondary-container {
        grid-column: auto; }
      .content-flexible-wrapper .secondary-container {
        grid-column: 1/2; } }

.content-flexible-custom-wrapper {
  display: grid;
  grid-template-columns: minmax(0, calc(66.66% + 30px)) minmax(0, calc(33.33% - 20px));
  justify-content: space-between;
  grid-gap: var(--grid-gap-old); }
  .content-flexible-custom-wrapper .primary-container, .content-flexible-custom-wrapper .secondary-container {
    width: 100%; }
  .content-flexible-custom-wrapper .secondary-container {
    grid-column: 2/3; }
  .content-flexible-custom-wrapper.equal-columns {
    grid-template-columns: 1fr 1fr; }
  @media (max-width: 63.9375rem) {
    .content-flexible-custom-wrapper.one-container, .content-flexible-custom-wrapper.equal-columns, .content-flexible-custom-wrapper.tablet-fullwidth {
      grid-template-columns: 1fr; }
      .content-flexible-custom-wrapper.one-container .secondary-container, .content-flexible-custom-wrapper.equal-columns .secondary-container, .content-flexible-custom-wrapper.tablet-fullwidth .secondary-container {
        grid-column: 1/2; } }
  @media (max-width: 42rem) {
    .content-flexible-custom-wrapper {
      grid-template-columns: 100%; }
      .content-flexible-custom-wrapper .secondary-container {
        grid-column: 1/2; } }

.grid-container {
  --grid-columns-count: 1fr;
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: var(--grid-columns-count); }
  .grid-container.no-horizontal-space {
    row-gap: 0; }
  .grid-container.centered-vertically {
    align-items: center; }
  .grid-container.two-boxes {
    --grid-columns-count: repeat(2, 1fr); }
  .grid-container.three-boxes {
    --grid-columns-count: repeat(3, 1fr); }
  .grid-container.four-boxes {
    --grid-columns-count: repeat(4, 1fr); }
  @media screen and (max-width: 62rem) {
    .grid-container.four-boxes {
      --grid-columns-count: repeat(2, 1fr); } }
  @media screen and (max-width: 50rem) {
    .grid-container.three-boxes {
      --grid-columns-count: repeat(2, 1fr); } }
  @media screen and (max-width: 42rem) {
    .grid-container {
      justify-content: center; }
      .grid-container.four-boxes, .grid-container.three-boxes, .grid-container.two-boxes {
        --grid-columns-count: 1fr; } }

.content-flexible-ads-wrapper {
  display: grid;
  grid-gap: var(--grid-gap); }
  .content-flexible-ads-wrapper .ad-wrapper {
    min-width: 18.75rem; }
  .content-flexible-ads-wrapper.aside-container {
    height: -moz-fit-content;
    height: fit-content; }
  .content-flexible-ads-wrapper.four-boxes:not(.vertical-content) {
    grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 62rem) {
    .content-flexible-ads-wrapper.aside-container {
      grid-template-columns: repeat(2, 1fr); }
    .content-flexible-ads-wrapper.four-boxes:not(.vertical-content) {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 42rem) {
    .content-flexible-ads-wrapper.aside-container {
      grid-template-columns: 1fr; }
    .content-flexible-ads-wrapper.four-boxes:not(.vertical-content) {
      grid-template-columns: 1fr; } }

.spacing-top-small {
  margin-top: var(--spacing-small); }

.spacing-top-default {
  margin-top: var(--spacing-default); }

.spacing-top-custom {
  margin-top: var(--spacing-custom); }

.spacing-top-large {
  margin-top: var(--spacing-large); }

.spacing-top-custom-large {
  margin-top: var(--spacing-custom-large); }

.spacing-bottom-small {
  margin-bottom: var(--spacing-small); }

.spacing-bottom-custom {
  margin-bottom: var(--spacing-custom); }

.spacing-bottom-custom-large {
  margin-bottom: var(--spacing-custom-large); }

.spacing-bottom-custom-grid {
  margin-bottom: var(--spacing-custom-grid); }

@font-face {
  font-family: "DM Sans";
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Bold.eot");
  /* IE9 Compat Modes */
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Bold.woff2") format("woff2"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Bold.woff") format("woff"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Bold.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: "DM Sans";
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Medium.eot");
  /* IE9 Compat Modes */
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Medium.woff2") format("woff2"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Medium.woff") format("woff"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Medium.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Medium.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: "DM Sans";
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Regular.eot");
  /* IE9 Compat Modes */
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Regular.woff2") format("woff2"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Regular.woff") format("woff"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Regular.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Regular.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: "Nunito";
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-ExtraBold.eot");
  /* IE9 Compat Modes */
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-ExtraBold.woff2") format("woff2"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-ExtraBold.woff") format("woff"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-ExtraBold.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-ExtraBold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: 800;
  font-style: normal; }

@font-face {
  font-family: "Nunito";
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Bold.eot");
  /* IE9 Compat Modes */
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Bold.woff2") format("woff2"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Bold.woff") format("woff"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Bold.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: "Nunito";
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-SemiBold.eot");
  /* IE9 Compat Modes */
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-SemiBold.woff2") format("woff2"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-SemiBold.woff") format("woff"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-SemiBold.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-SemiBold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: "Nunito";
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Medium.eot");
  /* IE9 Compat Modes */
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Medium.woff2") format("woff2"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Medium.woff") format("woff"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Medium.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Medium.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: "Nunito";
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Regular.eot");
  /* IE9 Compat Modes */
  src: url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Regular.woff2") format("woff2"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Regular.woff") format("woff"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Regular.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Regular.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

button,
input,
select,
textarea {
  color: #404040;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5; }

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both; }

dfn,
cite,
em,
i {
  font-style: italic; }

blockquote {
  margin: 0 1.5em; }

address {
  margin: 0 0 1.5em; }

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem; }

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help; }

mark,
ins {
  background: #fff9c0;
  text-decoration: none; }

big {
  font-size: 125%; }

dt {
  font-weight: bold; }

dd {
  margin: 0 1.5em 1.5em; }

table {
  margin: 0 0 1.5em;
  width: 100%; }

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-block-start: 80px; }

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

::-moz-selection {
  background-color: #993dbb;
  color: white; }

::selection,
::-moz-selection {
  background-color: #993dbb;
  color: white; }

body.admin-bar {
  padding-top: 32px; }
  @media (max-width: 782px) {
    body.admin-bar {
      padding-top: 46px; } }

body {
  scroll-behavior: smooth;
  scroll-padding-block-start: 80px;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: white;
  color: #333;
  margin: 0;
  /* Avoid Chrome to see Safari hack */ }
  @supports (-webkit-touch-callout: none) {
    body {
      /* The hack for Safari */
      height: -webkit-fill-available; } }

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

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

a h3.heading-title {
  text-decoration: none;
  color: #333333;
  -webkit-tap-highlight-color: transparent; }

a {
  text-decoration: none;
  color: #993dbb;
  -webkit-tap-highlight-color: transparent; }

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  margin: 0; }

h1 {
  font-size: 3.25em; }

h2 {
  font-size: 2.75em; }

h3 {
  font-size: 2.25em; }

h4 {
  font-size: 1.75em; }

h5 {
  font-size: 1.375em; }

h6 {
  font-size: 1.125em; }

blockquote {
  font-style: italic; }

hr {
  height: 1px;
  border: none;
  width: 100%;
  background: #f0f0f0; }

img.alignright {
  margin: 20px 0 20px 20px; }

img.alignleft {
  margin: 20px 20px 20px 0; }

img.aligncenter {
  margin: 20px auto; }

img {
  max-width: 100%;
  height: auto; }

/**
 * Required classes by WordPress. To pass the theme check
 * stylings to those must be applied, since the SASS watch
 * script is skipping classes that have no properties.
 */
.sticky {
  display: block; }

.bypostauthor {
  display: block; }

.alignleft {
  float: left;
  margin-right: 1.5em; }

.alignright {
  float: right;
  margin-left: 1.5em; }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.webinars-entry-meta {
  margin: 0.675em 0 0.5em; }

.webinars-entry-title {
  font-size: 1.375em;
  margin-bottom: 2em; }
  .webinars-entry-title a {
    color: #212121; }

.webinars-heading-title {
  margin: 1em 0; }

.webinars-entry-aside a {
  display: block;
  position: relative;
  height: 0;
  width: 100%;
  padding-top: calc(100% * (231/401)); }

.webinars-entry-aside img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px; }

ol, ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: var(--font-size-custom); }

.entry-header-content ol, .entry-header-content ul {
  font-size: unset;
  padding: revert;
  margin: revert;
  list-style-type: unset; }

.section-events-flexible-tabs ol, .section-events-flexible-tabs ul {
  font-size: unset;
  padding: revert;
  margin: revert;
  list-style-type: unset; }

.section-heading-new ol, .section-heading-new ul {
  font-size: unset; }

.type-webinar ol, .type-webinar ul {
  font-size: unset; }

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

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */ }

#content[tabindex="-1"]:focus {
  outline: 0; }

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

embed,
iframe,
object {
  max-width: 100%; }

body:not(.single):not(.archive.category):not(.post-type-archive):not(.homepage):not(.page-template-magazine):not(.post-type-archive-magazine_issue):not(.post-type-archive-destination-posts):not(.single-destination_article):not(.events-template-events-flexible-2023):not(.post-type-archive-destination_article) .site {
  overflow: hidden; }

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption .wp-caption-text {
  margin: 0.8075em 0; }

.wp-caption-text {
  text-align: center; }

.gallery {
  margin-bottom: 1.5em; }

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%; }

.gallery-columns-2 .gallery-item {
  max-width: 50%; }

.gallery-columns-3 .gallery-item {
  max-width: 33.33%; }

.gallery-columns-4 .gallery-item {
  max-width: 25%; }

.gallery-columns-5 .gallery-item {
  max-width: 20%; }

.gallery-columns-6 .gallery-item {
  max-width: 16.66%; }

.gallery-columns-7 .gallery-item {
  max-width: 14.28%; }

.gallery-columns-8 .gallery-item {
  max-width: 12.5%; }

.gallery-columns-9 .gallery-item {
  max-width: 11.11%; }

.gallery-caption {
  display: block; }

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

body {
  margin: 0; }

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

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

a {
  background-color: transparent; }

a:active, a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

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

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

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

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

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code, kbd, pre, samp {
  font-family: monospace,monospace;
  font-size: 1em; }

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button, select {
  text-transform: none; }

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

button[disabled], html input[disabled] {
  cursor: default; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

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

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

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

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td, th {
  padding: 0; }

.center-ul {
  text-align: center; }
  .center-ul > ul {
    display: inline-block; }

.float-right {
  float: right; }

.float-left {
  float: left; }

.no-float,
.flost-none {
  float: none; }

.is-hidden {
  display: none; }

.cb {
  clear: both; }

hr.clear {
  border: none;
  background: transparent;
  clear: both; }

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

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

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

.text-uppercase {
  text-transform: uppercase; }

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

.text-white {
  color: white; }
  .text-white h1,
  .text-white h2,
  .text-white h3,
  .text-white h4,
  .text-white h5,
  .text-white h6 {
    color: white; }
  .text-white a {
    color: white; }
  .text-white a:hover {
    color: white; }

.truncate {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.mt-0 {
  margin-top: 0 !important; }

.mt-10 {
  margin-top: 10px; }

.mt-20 {
  margin-top: 20px; }

.mt-30 {
  margin-top: 30px; }

.mt-40 {
  margin-top: 40px; }

.mt-50 {
  margin-top: 50px; }

.mt-60 {
  margin-top: 60px; }

.mt-70 {
  margin-top: 70px; }

.mt-80 {
  margin-top: 80px; }

.mt-90 {
  margin-top: 90px; }

.mt-100 {
  margin-top: 100px; }

.mb-0 {
  margin-bottom: 0 !important; }

.mb-10 {
  margin-bottom: 10px; }

.mb-20 {
  margin-bottom: 20px; }

.mb-30 {
  margin-bottom: 30px; }

.mb-40 {
  margin-bottom: 40px; }

.mb-50 {
  margin-bottom: 50px; }

.mb-60 {
  margin-bottom: 60px; }

.mb-70 {
  margin-bottom: 70px; }

.mb-80 {
  margin-bottom: 80px; }

.mb-90 {
  margin-bottom: 90px; }

.mb-100 {
  margin-bottom: 100px; }

.position-initial {
  position: initial; }

.background-primary-color {
  background-color: var(--color-primary); }

.background-base-invert-color {
  background-color: var(--color-base-invert); }

.background-primary-light {
  background-color: var(--color-primary-light); }

.background-base-light-muted {
  background-color: var(--color-base-light-muted); }

.color-primary {
  color: var(--color-primary); }

.color-base-invert {
  color: var(--color-base-invert); }

.color-base-light {
  color: var(--color-base-light); }

.hidden-label {
  font-size: 0;
  position: absolute; }

@media print {
  .main-nav-toggle-label,
  .widget-area,
  .pronto-platform-1,
  .pronto-platform-2
.entries-group-double,
  .site-footer-widgets .widget_nav_menu,
  .site-footer-menu,
  .entry-aside,
  .footer-social,
  .entries-group-double {
    display: none !important; }
  .section-main .medium-8 {
    max-width: 100%;
    flex: 1 1 100%; }
  article.entry-single .entry-content {
    font-size: 12pt; } }

.btn {
  --btn-color: var(--color-base);
  --btn-background-color: var(--color-primary);
  --btn-font-family: var(--font-primary-new);
  --btn-font-size: 1.125em;
  --btn-font-weight: 700;
  --btn-padding: 0.75rem 2rem;
  --btn-border-color: var(--color-primary);
  --btn-arrow-icon-color: var(--color-primary);
  --btn-line-height: 1.5;
  display: inline-block;
  background-color: var(--btn-background-color);
  color: var(--btn-color);
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: var(--btn-line-height);
  padding: var(--btn-padding);
  border: 2px solid;
  border-color: var(--btn-border-color);
  box-sizing: border-box; }
  .btn.btn-small {
    --btn-font-size: 1em;
    --btn-line-height: 1.4; }
  .btn.btn-medium {
    --btn-font-size: 1.5em;
    --btn-line-height: 1.3; }
    @media (max-width: 42rem) {
      .btn.btn-medium {
        --btn-font-size: 1.25em; } }
  .btn.btn-custom {
    --btn-font-size: var(--font-size-custom);
    --btn-line-height: 1.1365; }
  .btn.btn-font-secondary {
    --btn-font-family: var(--font-secondary-new); }
  .btn.btn-primary.btn-inline {
    --btn-color: var(--color-primary); }
  .btn.btn-primary.btn-outline {
    --btn-color: var(--color-primary);
    --btn-background-color: transparent;
    --btn-border-color: var(--color-primary); }
  .btn.btn-danger {
    --btn-arrow-icon-color: var(--color-danger); }
    .btn.btn-danger:not(.btn-inline) {
      --btn-background-color: var(--color-danger);
      --btn-border-color: var(--color-danger); }
    .btn.btn-danger.btn-inline {
      --btn-color: var(--color-danger); }
    .btn.btn-danger.btn-outline {
      --btn-color: var(--color-danger);
      --btn-background-color: transparent;
      --btn-border-color: var(--color-danger); }
  .btn.btn-subscribe {
    --btn-arrow-icon-color: var(--color-danger);
    display: flex;
    align-items: center; }
    .btn.btn-subscribe:not(.btn-inline) {
      --btn-background-color: white;
      --btn-border-color: var(--color-white);
      --btn-color: var(--color-primary);
      border: 1px solid #FFFFFF;
      border-radius: 5px;
      text-transform: uppercase;
      font-size: 10px; }
    .btn.btn-subscribe.btn-inline {
      --btn-color: var(--color-white); }
    .btn.btn-subscribe.btn-outline {
      --btn-color: var(--color-white);
      --btn-background-color: transparent;
      --btn-border-color: var(--color-white); }
    .btn.btn-subscribe .subscribe-button-thumbnail {
      max-width: 70px;
      max-height: 20px;
      -o-object-fit: cover;
         object-fit: cover;
      padding-left: 5px; }
  .btn.btn-inline {
    --btn-background-color: transparent;
    --btn-border-color: transparent; }
  .btn.btn-inline-link {
    padding: 0;
    border: 0; }
  .btn.btn-arrow-right, .btn.btn-arrow-down {
    display: flex;
    align-items: center; }
  .btn.btn-arrow-right .btn-arrow-icon {
    margin-left: var(--spacing-extra-smaller); }
  .btn.btn-arrow-down .btn-arrow-icon {
    margin-left: calc(var(--spacing-extra-small) / 2); }
  .btn.animated:hover .btn-arrow-icon-line svg {
    width: 22px; }
  .btn.btn-underlined {
    text-decoration: underline; }
  .btn .btn-arrow-icon {
    position: relative;
    display: flex;
    align-items: center; }
    .btn .btn-arrow-icon-line {
      display: flex;
      background-color: var(--btn-arrow-icon-color);
      transition: 0.25s ease-in-out; }
      .btn .btn-arrow-icon-line svg {
        transition: 0.25s ease-in-out; }
      .btn .btn-arrow-icon-line + svg {
        position: absolute;
        right: -1px; }

.btn-cta {
  display: flex;
  flex-wrap: wrap; }
  .btn-cta.centered-content {
    justify-content: center; }
  .btn-cta .btn:not(:last-child) {
    margin-right: var(--spacing-small-medium); }
  @media (max-width: 42rem) {
    .btn-cta .btn {
      width: 100%;
      max-width: 100%;
      text-align: center; }
    .btn-cta .btn:not(:first-child) {
      margin-top: 0.625rem; }
    .btn-cta .btn:not(:last-child) {
      margin-right: 0; } }

/**
 * The standard section wrapper. Use this with other classes for the base styling.
 * Default paddings are 40px
 */
.section-fullwidth-new {
  --section-padding-top: var(--section-spacing-default);
  --section-padding-bottom: var(--section-spacing-default);
  padding: var(--section-padding-top) 0 var(--section-padding-bottom);
  outline: none; }
  .section-fullwidth-new.section-padding-none {
    --section-padding-top: 0;
    --section-padding-bottom: 0; }
  .section-fullwidth-new.section-padding-top-none {
    --section-padding-top: 0; }
  .section-fullwidth-new.section-padding-top-small {
    --section-padding-top: var(--section-spacing-small); }
  .section-fullwidth-new.section-padding-top-custom-grid {
    --section-padding-top: var(--spacing-custom-grid); }
  .section-fullwidth-new.section-padding-top-large {
    --section-padding-top: var(--section-spacing-large); }
  .section-fullwidth-new.section-padding-top-larger {
    --section-padding-top: var(--section-spacing-larger); }
  .section-fullwidth-new.section-padding-top-custom-large {
    --section-padding-top: var(--section-spacing-custom-large); }
  .section-fullwidth-new.section-padding-bottom-none {
    --section-padding-bottom: 0; }
  .section-fullwidth-new.section-padding-bottom-small {
    --section-padding-bottom: var(--section-spacing-small); }
  .section-fullwidth-new.section-padding-bottom-large {
    --section-padding-bottom: var(--section-spacing-large); }
  .section-fullwidth-new.section-padding-bottom-larger {
    --section-padding-bottom: var(--section-spacing-larger); }
  .section-fullwidth-new.section-padding-bottom-extra-large {
    --section-padding-bottom: var(--section-spacing-extra-large); }
  @media (max-width: 62rem) {
    .section-fullwidth-new + .section-fullwidth-new:not(:nth-of-type(2)):not(:last-of-type) {
      --section-padding-top: 0; } }

.section-heading-new.centered-content {
  text-align: center; }

.section-heading-new .heading-title {
  --font-weight-title: 700;
  --heading-title-font-family: var(--font-primary-new);
  --heading-title-font-size: var(--font-size-h2);
  --heading-title-line-height: 1.375;
  font-family: var(--heading-title-font-family);
  font-size: var(--heading-title-font-size);
  font-weight: var(--font-weight-title);
  line-height: var(--heading-title-line-height); }
  .section-heading-new .heading-title.title-large-custom {
    margin-top: 0;
    margin-bottom: 0;
    --heading-title-font-size: var(--font-size-large-custom);
    --heading-title-line-height: 1.3; }
  .section-heading-new .heading-title.font-secondary {
    --heading-title-font-family: var(--font-secondary-new); }

.section-heading-new .heading-description {
  --heading-description-font-family: var(--font-primary-new);
  --heading-description-font-size: var(--font-size-h5);
  --heading-description-line-height: 1.4;
  line-height: var(--heading-description-line-height);
  font-family: var(--heading-description-font-family);
  font-size: var(--heading-description-font-size); }
  .section-heading-new .heading-description.font-large {
    --heading-description-font-size: var(--font-size-h4);
    --heading-description-line-height: 1.3335; }
  .section-heading-new .heading-description.font-custom {
    --heading-description-font-size: var(--font-size-custom);
    --heading-description-line-height: 1.3185; }
  .section-heading-new .heading-description.font-secondary {
    --heading-description-font-family: var(--font-secondary-new); }

.ad-wrapper.align-center .ad-wrapper-inner {
  display: flex;
  justify-content: center; }

.ad-wrapper iframe {
  display: block; }

@media all and (max-width: 82em) {
  .ad-wrapper.align-center-mobile {
    display: flex;
    justify-content: center; } }

.ad-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 15px solid #993dbb;
  background: rgba(255, 255, 255, 0.94);
  z-index: 9000;
  justify-content: center;
  align-items: center; }
  .ad-popup.active {
    display: flex; }
  .ad-popup-close {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #993dbb;
    color: #FFF;
    position: absolute;
    font-size: 1.3em;
    top: 1rem;
    right: 1rem; }
  .ad-popup-content {
    min-width: 5em;
    min-height: 5em;
    background: #CCC;
    box-shadow: 0 13px 99px 0 rgba(0, 0, 0, 0.15); }

.ad-pushdown {
  margin-bottom: 1.5em; }

.ad-header-line-wrapper {
  background: #c4c4c4;
  height: 1px;
  width: 100%;
  margin-bottom: 10px;
  display: block; }

.sm-ad-full-wrapper {
  pointer-events: none; }
  .sm-ad-full-wrapper:before, .sm-ad-full-wrapper:after {
    width: calc(50% - 70px);
    background: #c4c4c4;
    height: 1px;
    content: '';
    display: block;
    margin: 16px 0px; }
  .sm-ad-full-wrapper:before {
    float: left; }
  .sm-ad-full-wrapper:after {
    float: right; }
  .sm-ad-full-wrapper .sm-ad-title {
    padding-left: 15px;
    font-size: 14px;
    font-weight: bold;
    color: #c4c4c4;
    text-transform: uppercase; }

.ad-boxes .ad-dfp {
  margin: 0 auto;
  text-align: center; }

.fullwidth-ad-box-wrapper {
  display: flex;
  justify-content: center; }

.ad-leader-board {
  min-height: 90px;
  max-height: 90px; }

@media (max-width: 68.75rem) {
  .leader-board-ad-box {
    display: none; } }

.ad-large-leader-board {
  min-height: 90px;
  max-height: 90px; }

@media (max-width: 63.625rem) {
  .large-leader-board-ad-box {
    display: none; } }

.ad-medium-rectangle {
  min-height: 250px;
  max-height: 250px; }

.ad-half-page {
  min-height: 600px;
  max-height: 600px; }

.ad-leaderboard .ad-dfp {
  text-align: center; }

.dfp-ad-shortcode-wrapper > div {
  margin: 15px auto; }

.ad-centered {
  margin: 0 auto; }

.ad-wrapper {
  margin-bottom: 2em; }
  .ad-wrapper.no-margin-bottom {
    margin-bottom: 0; }

.adhesion-ad {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 1em;
  border-top: 1px solid #eee;
  background: #fff;
  z-index: 20; }
  @media (max-width: 40em) {
    .adhesion-ad {
      display: flex;
      z-index: 20;
      min-height: 83px; } }

@media all and (max-width: 1200px) {
  .row-ads {
    justify-content: space-between; }
    .row-ads .column-ad,
    .row-ads .column-post {
      flex: 0 0 50%;
      max-width: 50%; } }

body > div[id*="div-gpt-ad"] {
  position: absolute;
  pointer-events: none; }

.admin-bar .ad-sticky-box .ad-sticky-wrapper {
  --ad-sticky-top-position: calc(var(--layout-header-height) + 32px + var(--grid-gap)); }

.ad-sticky-box {
  display: inline-block;
  height: 100%;
  width: 100%; }
  .ad-sticky-box .ad-sticky-wrapper {
    --ad-sticky-top-position: calc(var(--layout-header-height) + var(--grid-gap));
    position: sticky;
    top: var(--ad-sticky-top-position); }

.ad-wrapper-logo {
  text-align: center; }

.ad-sticky-header {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--color-base-light); }

.ad-image-wrapper {
  display: flex;
  justify-content: center; }

.ad-image-wrapper img {
  max-height: 169px; }

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 999; }
  .popup.is-visible {
    display: flex; }
  .popup-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95); }
  .popup-content {
    z-index: 1;
    position: relative;
    background-color: #ffffff;
    border-radius: 1em;
    box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.16);
    display: flex;
    width: 100%;
    max-width: calc(100% - 4em);
    height: calc(100% - 2*var(--layout-header-height) - 2rem);
    max-height: 48.5em;
    margin: auto; }
    @media screen and (min-width: 1200px) {
      .popup-content {
        width: 75.875em;
        max-width: calc( 100% - 420px); } }
  .popup-close {
    display: flex;
    position: absolute;
    top: 2em;
    right: 2em;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding: 1em;
    cursor: pointer;
    outline: none; }
  .popup-thumbnail-wrapper {
    position: relative;
    padding-bottom: inherit;
    flex: 0 0 28em; }
  .popup-thumbnail {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 1em;
    border-bottom-left-radius: 1em; }
  .popup-body-wrapper {
    padding: 7.25em 5.375em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto; }
  .popup-body .popup-title {
    color: #212121;
    font-size: 2.25em;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5em; }
    .page-template-smart-stars .popup-body .popup-title {
      font-family: var(--font-primary-new); }
  .page-template-smart-stars .popup-excerpt {
    font-family: var(--font-secondary-new); }
  .popup-more-info .popup-title {
    color: #333;
    font-size: 1.125em;
    font-weight: 700;
    padding-bottom: 1.125em;
    border-bottom: 1px solid #ddd;
    margin-top: 1em; }
    .page-template-smart-stars .popup-more-info .popup-title {
      font-family: var(--font-primary-new); }
  .popup-more-info .contact-list-wrapper {
    margin-top: 1.75em; }
    .popup-more-info .contact-list-wrapper .list-item {
      display: flex;
      flex-direction: row;
      align-items: center; }
      .popup-more-info .contact-list-wrapper .list-item:not(:last-child) {
        margin-bottom: 0.625em; }
    .popup-more-info .contact-list-wrapper .list-item-icon {
      width: 1.125em;
      display: flex;
      flex-direction: row;
      justify-content: center; }
    .popup-more-info .contact-list-wrapper a {
      color: #777777;
      font-size: 1.125em;
      font-weight: 400;
      margin-left: 0.875em;
      overflow-wrap: anywhere; }
      .popup-more-info .contact-list-wrapper a:hover {
        text-decoration: underline; }
      .page-template-smart-stars .popup-more-info .contact-list-wrapper a {
        font-size: 1.125rem;
        font-family: var(--font-secondary-new); }
  @media (max-width: 42rem) {
    .popup-close {
      right: 1em; } }
  @media (max-width: 50rem) {
    .popup-close {
      top: 1em; }
      .popup-close path {
        fill: black; } }
  @media screen and (max-width: 79em) {
    .popup .popup-body-wrapper {
      padding: 5.25em 3.375em; }
    .popup .popup-close {
      top: 1em;
      right: 1em; }
    .popup .popup-thumbnail-wrapper {
      flex: 0 0 24em; } }
  @media screen and (max-width: 50.75em) {
    .popup .popup-body .popup-title {
      font-size: 2em; }
    .popup .popup-body-wrapper {
      padding: 4.25em 3.375em; }
    .popup .popup-thumbnail-wrapper {
      flex: 0 0 22em; } }
  @media screen and (max-width: 48em) {
    .popup .popup-content {
      flex-direction: column;
      max-height: calc(100% - 7em);
      margin-top: 65px; }
    .popup .popup-thumbnail-wrapper {
      height: 0;
      padding-bottom: 16.625em;
      flex: 0 0 16.625em; }
    .popup .popup-thumbnail {
      border-top-right-radius: 1em;
      border-bottom-left-radius: 0; }
    .popup .popup-close {
      display: flex;
      padding: 0.75em;
      border: 2px solid #ffffff;
      border-radius: 50%; }
      .popup .popup-close path {
        fill: #ffffff; }
    .popup .popup-title {
      margin-bottom: 0; }
    .popup .popup-excerpt {
      margin: 1em 0; }
    .popup .popup-body-wrapper {
      padding: 1.75em 1em;
      height: 100%;
      overflow-y: scroll; } }
  @media (max-width: 40em) {
    .popup .popup-excerpt {
      font-size: 0.875em; } }
  @media (max-width: 26.5em) {
    .popup .popup-body .popup-title {
      font-size: 1.25em; } }

.page-template-smart-stars .popup .popup-thumbnail-wrapper {
  flex: 0 0 36.90%; }
  @media screen and (max-width: 79em) {
    .page-template-smart-stars .popup .popup-thumbnail-wrapper {
      flex: 0 0 36.90%; } }
  @media screen and (max-width: 48em) {
    .page-template-smart-stars .popup .popup-thumbnail-wrapper {
      flex: 0 0 16.625em; } }

.section-resources-heading {
  --heading-spacing-bottom: var(--spacing-extra-small);
  --heading-wrapper-spacing-bottom: var(--spacing-custom);
  width: 100%;
  border-bottom: 1px solid var(--color-base-light-muted);
  padding-bottom: var(--heading-spacing-bottom);
  margin-bottom: var(--heading-wrapper-spacing-bottom); }
  .section-resources-heading.no-margin-bottom {
    --heading-wrapper-spacing-bottom: 0; }
  .section-resources-heading.heading-small {
    --heading-spacing-bottom: 0.625rem; }
    .section-resources-heading.heading-small .heading-title {
      --title-font-size: var(--font-size-h4);
      --title-line-height: var(--font-size-h4-line-height); }
  .section-resources-heading .heading-title-wrapper {
    display: flex;
    align-items: center;
    color: var(--color-base-light); }
  .section-resources-heading .separate-content {
    justify-content: space-between; }
    .section-resources-heading .separate-content .btn-inline-link.btn-underlined {
      font-weight: 500; }
  .section-resources-heading .heading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-small-medium); }
  .section-resources-heading .heading-title {
    --title-font-size: var(--font-size-h2);
    --title-line-height: var(--font-size-h2-line-height);
    font-family: var(--font-secondary-new);
    font-size: var(--title-font-size);
    font-weight: 700;
    line-height: var(--title-line-height); }
  .section-resources-heading .heading-flex {
    display: flex;
    align-items: center; }
    .section-resources-heading .heading-flex.separated-content {
      justify-content: space-between; }
  @media (max-width: 42rem) {
    .section-resources-heading .heading-icon {
      margin-right: 0.625rem; }
    .section-resources-heading .heading-flex {
      flex-direction: column;
      align-items: flex-start; }
      .section-resources-heading .heading-flex *:not(:last-child) {
        margin-bottom: var(--heading-spacing-bottom); } }

.subscribe-form-wrapper form {
  display: flex; }
  .subscribe-form-wrapper form .btn {
    margin-left: var(--spacing-custom);
    white-space: nowrap; }

.subscribe-form-wrapper input {
  color: var(--color-base-light);
  font-size: var(--font-size-small);
  font-family: var(--font-secondary-new);
  width: 100%;
  background-color: var(--color-base);
  outline: none;
  padding: 0.875rem 1.625rem;
  line-height: 1;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  min-height: 3.375rem; }
  .subscribe-form-wrapper input::-moz-placeholder {
    color: var(--color-muted);
    opacity: 1;
    /* Firefox */ }
  .subscribe-form-wrapper input::placeholder {
    color: var(--color-muted);
    opacity: 1;
    /* Firefox */ }
  .subscribe-form-wrapper input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--color-muted); }
  .subscribe-form-wrapper input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--color-muted); }

@media (max-width: 62rem) {
  .subscribe-form-wrapper form {
    flex-direction: column; }
    .subscribe-form-wrapper form .btn {
      margin-top: 0.75rem;
      margin-left: 0; } }

.section-subscribe-form .heading-title {
  --font-weight-title: 800;
  margin-bottom: 0; }
  .section-subscribe-form .heading-title + .heading-description {
    margin-top: var(--spacing-extra-smaller); }

.section-subscribe-form .subscribe-btn-wrapper {
  justify-self: flex-end; }

@media (max-width: 42rem) {
  .section-subscribe-form.section-padding-bottom-large {
    --section-padding-bottom: 1.5rem; }
  .section-subscribe-form .heading-title {
    text-align: center;
    font-size: 1.375em; }
    .section-subscribe-form .heading-title + .heading-description {
      margin-top: 0.5rem; }
  .section-subscribe-form .heading-description {
    text-align: center; }
  .section-subscribe-form .subscribe-btn-wrapper {
    justify-self: stretch; }
    .section-subscribe-form .subscribe-btn-wrapper .btn {
      width: 100%;
      text-align: center; } }

.events-welcome-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 33rem;
  height: auto;
  position: relative;
  max-width: 100%;
  padding-bottom: 4.3125rem; }
  .events-welcome-header .events-video-wrapper .jwplayer {
    z-index: 1; }
    .events-welcome-header .events-video-wrapper .jwplayer:not(.jw-state-playing) + .events-video-thumbnail {
      opacity: 1;
      z-index: 5; }
    .events-welcome-header .events-video-wrapper .jwplayer.jw-state-paused:not(.jw-state-playing) + .events-video-thumbnail {
      opacity: 0;
      z-index: 0; }
  .events-welcome-header .events-video-thumbnail {
    transition: 0.15s ease-in-out;
    opacity: 0;
    z-index: 0; }
    .events-welcome-header .events-video-thumbnail[src=""] {
      display: none; }
  .events-welcome-header .video-bg,
  .events-welcome-header img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
  .events-welcome-header img {
    -o-object-fit: cover;
       object-fit: cover; }
  @media screen and (min-width: 768px) {
    .events-welcome-header .video-bg {
      display: block; } }
  .events-welcome-header .events-welcome-big-text {
    display: block;
    width: 100%;
    padding: 0 0.125em;
    position: relative;
    z-index: 2;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    color: white;
    margin: 0;
    text-shadow: 0 0 32px var(--color-base-invert); }
  .events-welcome-header .events-welcome-big-text.big-text-size {
    font-size: 10em;
    font-size: 10.4vw; }
    @media screen and (max-width: 1024px) {
      .events-welcome-header .events-welcome-big-text.big-text-size {
        font-size: 6.5em;
        font-size: 14.4vw; } }
    @media screen and (max-width: 40em) {
      .events-welcome-header .events-welcome-big-text.big-text-size {
        font-size: 4em;
        font-size: 13.4vw; } }
  .events-welcome-header .events-welcome-big-text.medium-text-size {
    font-size: 8em;
    font-size: 7.4vw; }
    @media screen and (max-width: 1024px) {
      .events-welcome-header .events-welcome-big-text.medium-text-size {
        font-size: 5.5em;
        font-size: 12.4vw; } }
    @media screen and (max-width: 40em) {
      .events-welcome-header .events-welcome-big-text.medium-text-size {
        font-size: 3.5em;
        font-size: 12.4vw; } }
  .events-welcome-header .events-welcome-big-text.small-text-size {
    font-size: 6em;
    font-size: 5.4vw; }
    @media screen and (max-width: 1024px) {
      .events-welcome-header .events-welcome-big-text.small-text-size {
        font-size: 5em;
        font-size: 11vw; } }
    @media screen and (max-width: 40em) {
      .events-welcome-header .events-welcome-big-text.small-text-size {
        font-size: 3em;
        font-size: 11vw; } }
  .events-welcome-header .events-welcome-small-text {
    display: block;
    padding: 0 0.25rem;
    position: relative;
    z-index: 2;
    text-align: center;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 0 14px var(--color-base-invert); }
    @media screen and (max-width: 60em) {
      .events-welcome-header .events-welcome-small-text {
        font-size: 2em; } }
  .events-welcome-header .events-welcome-small-text.big-text-size {
    font-size: 3.5em;
    max-width: 100%; }
    @media (max-width: 42rem) {
      .events-welcome-header .events-welcome-small-text.big-text-size {
        font-size: 1.875em; } }
  .events-welcome-header .events-welcome-small-text.medium-text-size {
    font-size: 2.5em; }
    @media (max-width: 42rem) {
      .events-welcome-header .events-welcome-small-text.medium-text-size {
        font-size: 1.75em; } }
  .events-welcome-header .events-welcome-small-text.small-text-size {
    font-size: 1.5em; }
  .events-welcome-header video {
    -o-object-position: center 20%;
       object-position: center 20%; }
  .events-welcome-header .jw-preview {
    background-position: center 20% !important; }
  .events-welcome-header .events-welcome-big-text,
  .events-welcome-header .events-welcome-small-text {
    font-family: "NunitoSans-Еxtra-Bold";
    position: relative;
    z-index: 10; }
  .events-welcome-header .jwplayer.jw-flag-aspect-mode {
    height: 100% !important; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .events-welcome-header .jwplayer.jw-flag-aspect-mode {
      height: auto !important; }
    .events-welcome-header .video-bg {
      overflow: hidden; }
    .events-welcome-header .jw-video {
      transform: translateY(-10%); } }
  @media (max-width: 42rem) {
    .events-welcome-header {
      min-height: 20rem;
      padding-bottom: 2.375rem; } }
  @media (max-width: 380px) {
    .events-welcome-header .events-welcome-small-text {
      font-size: 1.625rem; } }

.location-data-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; }
  .location-data-list.data-color-purple .list-item-icon {
    --icon-color: var(--color-primary);
    --icon-background-color: var(--color-base-light-muted); }
    .location-data-list.data-color-purple .list-item-icon::before {
      z-index: -1;
      opacity: 1; }
  .location-data-list .list-item {
    display: flex;
    align-items: center;
    margin: 0 var(--spacing-small-medium) var(--spacing-smaller); }
    .location-data-list .list-item-icon {
      --icon-wrapper-size: 2.75em;
      --icon-color: var(--single-event-accent-color);
      --icon-background-color: var(--single-event-accent-color);
      --icon-right-spacing: 1rem;
      --icon-padding: 0.75rem;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      height: var(--icon-wrapper-size);
      width: var(--icon-wrapper-size);
      color: var(--icon-color);
      margin-right: var(--icon-right-spacing);
      padding: var(--icon-padding);
      overflow: hidden;
      flex: 0 0 auto; }
      .location-data-list .list-item-icon svg {
        height: 100%;
        width: 100%; }
      .location-data-list .list-item-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: var(--icon-background-color);
        opacity: 0.1; }
    .location-data-list .list-item-title {
      font-family: var(--font-secondary-new);
      font-size: var(--font-size-h5);
      font-weight: 700;
      margin: 0; }
  @media (max-width: 42rem) {
    .location-data-list {
      flex-direction: column;
      align-items: start;
      width: -moz-fit-content;
      width: fit-content;
      margin-left: auto;
      margin-right: auto; }
      .location-data-list .list-item {
        margin: 0 0 var(--spacing-smaller); }
        .location-data-list .list-item-icon {
          --icon-wrapper-size: 2.25em;
          --icon-right-spacing: 0.625rem;
          --icon-padding: 0.625rem; } }

.section-single-event-header .entry-header-location, .section-events-archive-header .entry-header-location {
  --location-wrapper-width: calc(100% - 13.75em);
  --location-list-spacing-top: 2rem;
  --location-vertical-position: -4.3125rem;
  --location-inner-spacing: var(--spacing-medium) var(--spacing-medium) var(--spacing-small);
  position: relative;
  left: 50%;
  transform: translate3d(-50%, var(--location-vertical-position), 0);
  margin-bottom: calc(var(--location-vertical-position) + 0.625rem);
  width: 100%;
  max-width: var(--location-wrapper-width);
  box-shadow: var(--shadow-custom);
  padding: var(--location-inner-spacing);
  background-color: var(--color-base); }
  @media (max-width: 62rem) {
    .section-single-event-header .entry-header-location, .section-events-archive-header .entry-header-location {
      --location-wrapper-width: calc(100% - 7.875em); } }
  @media (max-width: 50rem) {
    .section-single-event-header .entry-header-location, .section-events-archive-header .entry-header-location {
      --location-wrapper-width: calc(100% - 3em);
      --location-inner-spacing: var(--spacing-medium) 1.25rem var(--spacing-small); } }
  @media (max-width: 42rem) {
    .section-single-event-header .entry-header-location, .section-events-archive-header .entry-header-location {
      --location-wrapper-width: calc(100% - 1em);
      --location-inner-spacing: 1.125rem 1rem 0;
      --location-vertical-position: -2.375rem; } }

.resource-box-event {
  --box-event-border-color: var(--color-base-light-muted);
  --box-event-inner-vertical-space: var(--spacing-small-medium);
  --box-event-inner-horizontal-space: var(--spacing-smaller);
  --box-thumbnail-wrapper-height: 83.33333%;
  height: 100%; }
  .resource-box-event, .resource-box-event .box-event-link, .resource-box-event .box-event-content, .resource-box-event .event-content-data {
    display: flex;
    flex-direction: column; }
  .resource-box-event .box-event-link {
    cursor: pointer;
    height: 100%; }
    .resource-box-event .box-event-link:hover {
      --box-event-border-color: var(--color-primary); }
  .resource-box-event .box-event-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover; }
    .resource-box-event .box-event-thumbnail-wrapper {
      position: relative;
      height: 0;
      width: 100%;
      padding-bottom: var(--box-thumbnail-wrapper-height); }
  .resource-box-event .box-event-content {
    border: 1px solid var(--box-event-border-color);
    border-top: 0;
    transition: 0.25s ease-in-out;
    height: 100%; }
  .resource-box-event .event-content-title, .resource-box-event .box-description {
    color: var(--color-base-light); }
  .resource-box-event .event-content-title, .resource-box-event .event-content-data {
    padding: var(--box-event-inner-vertical-space) var(--box-event-inner-horizontal-space); }
  .resource-box-event .event-content-title + .event-content-data {
    margin-top: var(--box-event-inner-vertical-space); }
    .resource-box-event .event-content-title + .event-content-data::before {
      content: '';
      display: block;
      top: calc((-1) * var(--box-event-inner-vertical-space) - 0.03125rem); }
  .resource-box-event .event-content-data {
    flex-grow: 1; }
    .resource-box-event .event-content-data::before, .resource-box-event .event-content-data::after {
      position: relative;
      left: 0;
      width: 100%;
      background-color: var(--box-event-border-color);
      height: 1px; }
    .resource-box-event .event-content-data::after {
      content: '';
      display: block;
      bottom: calc((-1) * var(--box-event-inner-vertical-space) - 0.03125rem); }
  .resource-box-event .event-content-title {
    flex-grow: 50;
    padding-bottom: 0;
    font-family: var(--font-primary-new);
    font-size: var(--font-size-custom);
    font-weight: 700;
    line-height: 1.137;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: -moz-fit-content;
    height: fit-content;
    max-height: 75px;
    box-sizing: content-box; }
  .resource-box-event .event-content-link {
    padding: var(--box-event-inner-vertical-space) var(--box-event-inner-horizontal-space); }
  .resource-box-event .data-box .box-heading {
    display: flex;
    align-items: center; }
    .resource-box-event .data-box .box-heading-icon {
      --icon-wrapper-size: 1.625em;
      --icon-color: var(--color-primary);
      --icon-background-color: var(--color-base-light-muted);
      --icon-right-spacing: 0.625rem;
      --icon-padding: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      height: var(--icon-wrapper-size);
      width: var(--icon-wrapper-size);
      color: var(--icon-color);
      background-color: var(--icon-background-color);
      margin-right: var(--icon-right-spacing);
      padding: var(--icon-padding); }
      .resource-box-event .data-box .box-heading-icon svg {
        height: 100%;
        width: 100%; }
    .resource-box-event .data-box .box-heading-title {
      font-family: var(--font-secondary-new);
      font-size: var(--font-size-h6);
      font-weight: 400;
      margin: 0; }
    .resource-box-event .data-box .box-heading + .box-description {
      margin-top: 0.625rem; }
  .resource-box-event .data-box .box-description {
    font-family: var(--font-secondary-new);
    font-size: var(--font-size-h6);
    font-weight: 400;
    line-height: 1.275;
    margin: 0;
    padding-right: 0.125em; }
  .resource-box-event .data-box + .data-box {
    margin-top: auto;
    padding-top: var(--spacing-small-medium); }
  @media (max-width: 42rem) {
    .resource-box-event {
      --box-thumbnail-wrapper-height: 58.30904%; } }

.infinity-slider {
  position: relative;
  overflow: hidden; }
  .infinity-slider .slider-list {
    position: relative;
    display: flex;
    justify-content: flex-start;
    width: 100%; }
  .infinity-slider-news::before, .infinity-slider-news::after {
    content: '';
    position: absolute;
    top: 0;
    background: linear-gradient(90deg, #FDF9FF 0%, rgba(253, 249, 255, 0) 100%);
    height: 100%;
    width: 100%;
    max-width: 15.625vw;
    z-index: 1;
    pointer-events: none; }
  .infinity-slider-news::before {
    left: -2px; }
  .infinity-slider-news::after {
    right: -2px;
    transform: rotate(180deg); }
  .infinity-slider-news .list-item {
    box-sizing: border-box;
    margin: 0 3.375em;
    opacity: 0; }
    .infinity-slider-news .list-item.is-visible {
      opacity: 1; }
    .infinity-slider-news .list-item-title {
      font-size: 1.25em;
      white-space: nowrap; }
    .infinity-slider-news .list-item-title-link {
      display: inline-block;
      color: var(--color-base-invert);
      padding: 1.75rem 0; }
    @media (max-width: 42rem) {
      .infinity-slider-news .list-item {
        margin: 0 2.375em; } }

.slider-tabs-card {
  position: relative;
  height: 0;
  padding-bottom: 57.625%;
  --thumbnail-left-spacing: 6.875em; }
  .slider-tabs-card .slider-item {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 0.25s ease-in-out;
    pointer-events: none; }
    .slider-tabs-card .slider-item.is-active {
      opacity: 1;
      pointer-events: all; }
  .slider-tabs-card .item-content-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 2.125em;
    width: 100%;
    max-width: 18.75rem;
    box-sizing: border-box;
    color: var(--color-primary);
    z-index: 1;
    height: 100%;
    max-height: calc(100% - 1.625em * 2); }
  .slider-tabs-card .item-content-inner-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; }
  .slider-tabs-card .item-thumbnail-wrapper {
    position: relative;
    height: 0;
    padding-bottom: 57.625%;
    width: 100%;
    max-width: calc(100% - var(--thumbnail-left-spacing));
    margin-left: auto; }
  .slider-tabs-card .item-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover; }
  .slider-tabs-card .item-tags {
    display: flex;
    flex-wrap: wrap; }
    .slider-tabs-card .item-tags .tag-item {
      margin-bottom: calc(var(--spacing-extra-smaller) / 2);
      line-height: 1; }
      .slider-tabs-card .item-tags .tag-item:last-of-type {
        margin-bottom: var(--spacing-extra-smaller); }
    .slider-tabs-card .item-tags .tag-item-link {
      display: inline-block;
      color: var(--color-base-invert);
      font-family: var(--font-secondary-new);
      font-size: var(--font-size-extra-small);
      font-weight: 500;
      letter-spacing: 1.125px;
      line-height: 1.285;
      text-transform: uppercase; }
  .slider-tabs-card .item-title {
    font-family: var(--font-primary-new);
    font-size: var(--font-size-h4);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: var(--spacing-extra-smaller);
    color: var(--color-base-invert); }
    .slider-tabs-card .item-title a {
      color: inherit; }
  .slider-tabs-card .item-description-wrapper {
    flex-grow: 1; }
  .slider-tabs-card .item-description {
    font-family: var(--font-secondary-new);
    font-size: var(--font-size-small);
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    height: 100%;
    max-height: 192px;
    width: 100%;
    max-width: 100%;
    margin: 0; }
  .slider-tabs-card .item-slider-controller {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: var(--spacing-extra-small);
    background-color: var(--color-primary-light); }
    .slider-tabs-card .item-slider-controller .controller-button {
      display: flex;
      border: none;
      background-color: var(--color-base-light-muted);
      color: var(--color-primary);
      padding: calc(var(--spacing-extra-small) - 1px);
      cursor: pointer; }
      .slider-tabs-card .item-slider-controller .controller-button:first-of-type {
        margin-right: var(--spacing-extra-small); }
  @media screen and (max-width: 81.625rem) {
    .slider-tabs-card .item-description {
      -webkit-line-clamp: 6;
      max-height: 166px; } }
  @media (max-width: 62rem) {
    .slider-tabs-card .item-content-wrapper {
      padding: 1.5em; }
    .slider-tabs-card .item-description {
      -webkit-line-clamp: 4;
      max-height: 112px; } }
  @media (max-width: 50rem) {
    .slider-tabs-card .item-title {
      --font-size-h4: 1.125em;
      line-height: var(--font-size-h4-line-height);
      margin-bottom: 0.625rem; }
    .slider-tabs-card .item-description {
      --font-size-small: 1em;
      -webkit-line-clamp: 3;
      max-height: 74px; } }
  @media (max-width: 42rem) {
    .slider-tabs-card {
      --thumbnail-left-spacing: 0;
      padding-bottom: calc(58.30904% + 340px); }
      .slider-tabs-card .slider-item {
        display: flex;
        flex-direction: column-reverse; }
      .slider-tabs-card .item-thumbnail-wrapper {
        padding-bottom: 58.30904%; }
      .slider-tabs-card .item-content-wrapper {
        position: relative;
        top: 0;
        left: 0;
        transform: translateY(0);
        max-width: 100%;
        max-height: 340px; }
      .slider-tabs-card .item-description {
        -webkit-line-clamp: 4;
        max-height: 100px; }
      .slider-tabs-card .item-tags .tag-item:last-of-type {
        margin-bottom: calc(var(--spacing-extra-smaller)/ 2); }
      .slider-tabs-card .item-slider-controller .controller-button:first-of-type {
        margin-right: 1.5rem; } }

.multiple-content-slider {
  --slide-arrow-size: 1.25rem;
  --slick-slide-spacing: 0.84375rem;
  --slider-content-spacing: var(--spacing-extra-small);
  padding: 0 calc((var(--spacing-extra-small) - 1px) * 2 + var(--slide-arrow-size) + var(--slick-slide-spacing)); }
  .multiple-content-slider::before, .multiple-content-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: calc((var(--spacing-extra-small) - 1px) * 2 + var(--slide-arrow-size) + 1.5rem);
    height: 100%;
    background-color: var(--color-base);
    z-index: 5; }
  .multiple-content-slider::before {
    left: 0; }
  .multiple-content-slider::after {
    right: 0; }
  .multiple-content-slider .slick-prev, .multiple-content-slider .slick-next {
    display: flex;
    top: 50%;
    transform: translateY(-50%);
    height: calc(var(--slide-arrow-size) * 2);
    width: var(--slide-arrow-size);
    z-index: 10;
    border: none;
    background-color: var(--color-base-light-muted) !important;
    padding: calc(var(--spacing-extra-small) - 1px);
    height: calc((var(--spacing-extra-small) - 1px) * 2 + var(--slide-arrow-size));
    width: calc((var(--spacing-extra-small) - 1px) * 2 + var(--slide-arrow-size));
    cursor: pointer; }
    .multiple-content-slider .slick-prev::before, .multiple-content-slider .slick-next::before {
      content: '';
      position: relative;
      width: var(--slide-arrow-size);
      height: var(--slide-arrow-size);
      background-repeat: no-repeat;
      background-size: contain;
      opacity: 1; }
  .multiple-content-slider .slick-prev {
    left: 0; }
    .multiple-content-slider .slick-prev::before {
      background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5128 9.90039H4.48639' stroke='%23993DBB' stroke-width='1.89024' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 4.3877L4.48679 9.9002L10 15.4127' stroke='%23993DBB' stroke-width='1.89024' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A"); }
  .multiple-content-slider .slick-next {
    right: 0; }
    .multiple-content-slider .slick-next::before {
      background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.48718 9.90039H15.5136' stroke='%23993DBB' stroke-width='1.89024' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 4.3877L15.5132 9.9002L10 15.4127' stroke='%23993DBB' stroke-width='1.89024' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A"); }
  .multiple-content-slider .slick-slide {
    margin-left: var(--slick-slide-spacing);
    margin-right: var(--slick-slide-spacing);
    display: flex;
    flex-direction: column;
    height: inherit !important; }
    .multiple-content-slider .slick-slide.slick-current .carousel-content {
      opacity: 1;
      pointer-events: all; }
  .multiple-content-slider .slide {
    height: 100%; }
  .multiple-content-slider .slick-track {
    display: flex !important; }
  @media (max-width: 42rem) {
    .multiple-content-slider {
      --slick-slide-spacing: 0;
      padding-left: 0;
      padding-right: 0;
      padding-bottom: calc(50px + var(--grid-gap)); }
      .multiple-content-slider::before, .multiple-content-slider::after {
        display: none; }
      .multiple-content-slider .slick-prev, .multiple-content-slider .slick-next {
        top: calc(100% - 50px);
        transform: translate3d(-50%, 0, 0); }
      .multiple-content-slider .slick-prev {
        left: calc(50% - calc((var(--spacing-extra-small) - 1px) * 2 + var(--slide-arrow-size)) + var(--grid-gap) / 2); }
      .multiple-content-slider .slick-next {
        right: calc(50% - calc((var(--spacing-extra-small) - 1px) * 2 + var(--slide-arrow-size)) - 1.5* var(--grid-gap)); } }

.slider-resources-sponsored-content .flex-box-wrapper {
  height: 100%; }

@media (max-width: 1440px) {
  .slider-resources-sponsored-content .flex-box-wrapper .resource-box {
    padding: 0 0 0 2px; } }

@media (max-width: 64rem) {
  .slider-resources-sponsored-content .flex-box-wrapper .resource-box {
    padding: 0 2px; } }

@media (max-width: 62rem) {
  .section-slider-news {
    margin-top: var(--section-spacing-custom-large); } }

.list-social {
  display: inline-flex; }
  .list-social a {
    color: #212121;
    padding: .5em; }

.list-tags {
  display: inline-flex;
  align-items: center; }
  .list-tags .list-item {
    margin-right: .5em; }
    .list-tags .list-item:last-child {
      margin-right: 0; }

.list-share-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1em; }
  .list-share-vertical a {
    position: relative;
    background: rgba(0, 0, 0, 0.05);
    height: 2.75rem;
    width: 2.75em;
    line-height: 2.5em;
    text-align: center;
    color: #212121;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
    cursor: pointer; }
    .list-share-vertical a:hover {
      transform: scale(1.1);
      transition: .3s; }
    .list-share-vertical a:focus, .list-share-vertical a:active {
      transform: scale(0.9);
      transition: .2s;
      outline: none; }
    @media (max-width: 50rem) {
      .list-share-vertical a {
        height: 2.125em;
        width: 2.125em;
        padding: 0.625em;
        box-sizing: border-box; } }
  .list-share-vertical .list-item {
    margin-bottom: 1em; }
    .list-share-vertical .list-item:last-child {
      margin-bottom: 0; }
    .list-share-vertical .list-item .social-copy-link:before {
      content: 'Copy to Clipboard';
      display: block;
      position: absolute;
      padding: .3em .6em;
      background: #212121;
      border-radius: 4px;
      color: #FFF;
      opacity: 0;
      visibility: hidden;
      text-align: left;
      white-space: pre;
      transform: translate(1.25em, 0);
      transform-origin: right;
      top: -0.3em;
      left: 3.75em; }
      @media (max-width: 42rem) {
        .list-share-vertical .list-item .social-copy-link:before {
          display: none; } }
    .list-share-vertical .list-item .social-copy-link:hover:before {
      opacity: 1;
      visibility: visible;
      transition: .3s ease;
      transform: translate(0, 0); }
    .list-share-vertical .list-item .social-copy-link.is-copied:before {
      content: 'Copied!'; }
    .list-share-vertical .list-item .social-copy-url {
      display: inline;
      opacity: 0;
      width: 0;
      height: 0;
      position: absolute; }

.list-share-horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1em; }
  .list-share-horizontal a {
    background: rgba(0, 0, 0, 0.05);
    height: 2.5em;
    width: 2.5em;
    line-height: 2.5em;
    text-align: center;
    color: #212121;
    display: inline-block;
    border-radius: 50%;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center; }
    .list-share-horizontal a:hover {
      transform: scale(1.1);
      transition: .3s; }
    .list-share-horizontal a:focus, .list-share-horizontal a:active {
      transform: scale(0.9);
      transition: .2s;
      outline: none; }
  .list-share-horizontal .list-item {
    margin-right: 1em; }
    .list-share-horizontal .list-item .social-copy-link:before {
      content: 'Copy to Clipboard';
      display: block;
      position: absolute;
      padding: .3em .6em;
      background: #212121;
      border-radius: 4px;
      color: #FFF;
      opacity: 0;
      visibility: hidden;
      text-align: left;
      white-space: pre;
      transform: translate(1.25em, 0);
      transform-origin: right;
      top: -0.3em;
      left: 3.75em; }
    .list-share-horizontal .list-item .social-copy-link:hover:before {
      opacity: 1;
      visibility: visible;
      transition: .3s ease;
      transform: translate(0, 0); }
    .list-share-horizontal .list-item .social-copy-link.is-copied:before {
      content: 'Copied!'; }
    .list-share-horizontal .list-item .social-copy-url {
      display: inline-block;
      width: 1px;
      opacity: 0;
      position: absolute;
      z-index: 1; }

.list-people {
  align-items: flex-start; }
  .list-people-title {
    font-size: .8em;
    font-weight: normal; }
  .list-people-name {
    font-size: 1.75em;
    margin-bottom: .3em; }
  .list-people img {
    margin-right: 1em;
    width: 5em;
    height: 5em;
    border-radius: 50%; }
  .list-people li {
    margin: 2.5em .6em 2.1em;
    padding: 0 1.25em 2.1em;
    display: flex;
    border-bottom: 2px solid #ededed; }
    .list-people li:last-child {
      border-bottom: none; }

.list-sponsors-logos {
  width: 100%;
  max-height: 20em;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center; }

.latest-videos-list {
  display: flex;
  align-items: center;
  margin: 1.5em 0;
  overflow: hidden; }
  @media (max-width: 60em) {
    .latest-videos-list {
      flex-wrap: wrap;
      margin: .5em 0 1em; } }

.latest-videos-wrapper {
  margin-bottom: 4em; }
  @media (max-width: 60em) {
    .latest-videos-wrapper {
      margin-bottom: 0; } }
  .latest-videos-wrapper .playlist-switcher {
    display: none; }
  .latest-videos-wrapper .playlist-container:not(.is-active) {
    display: none; }

.latest-videos-item {
  position: relative;
  flex-basis: calc(100% / 4);
  padding-right: .5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid rgba(119, 119, 119, 0.1);
  color: #777777;
  font-size: 1.125em;
  font-weight: bold; }
  @media (max-width: 60em) {
    .latest-videos-item {
      padding: .75em;
      flex: 100%; } }
  .latest-videos-item:nth-child(n+5) {
    display: none; }
  .latest-videos-item:after {
    height: 1px;
    background: #993dbb;
    position: absolute;
    bottom: -1px;
    width: calc(100% - .5em);
    z-index: 1;
    display: none;
    content: ''; }
  .latest-videos-item:hover {
    color: #515151; }
  .latest-videos-item.is-active {
    color: #993dbb; }
    .latest-videos-item.is-active:after {
      display: block; }
  .latest-videos-item a {
    color: inherit;
    display: block; }

.latest-videos-list .playlist-container {
  width: 100%; }

.resource-box-inner-link, .resource-box-links.vertical-box {
  cursor: pointer; }
  .resource-box-inner-link:hover .box-content, .resource-box-links.vertical-box:hover .box-content {
    border-color: var(--color-primary); }
  .resource-box-inner-link:hover .btn-arrow-icon-line svg, .resource-box-links.vertical-box:hover .btn-arrow-icon-line svg {
    width: 22px; }

.resource-box .box-thumbnail-wrapper.events-thumbnail-ceus {
  --box-thumbnail-wrapper-height: 100%;
  padding-bottom: var(--box-thumbnail-wrapper-height); }
  .resource-box .box-thumbnail-wrapper.events-thumbnail-ceus.size-medium {
    --box-thumbnail-wrapper-height: 260px; }
  .resource-box .box-thumbnail-wrapper.events-thumbnail-ceus.size-medium-custom {
    --box-thumbnail-wrapper-height: 260px; }
  @media (max-width: 62rem) {
    .resource-box .box-thumbnail-wrapper.events-thumbnail-ceus.size-medium {
      --box-thumbnail-wrapper-height: 58.30904%; }
    .resource-box .box-thumbnail-wrapper.events-thumbnail-ceus.size-medium-custom {
      --box-thumbnail-wrapper-height: 58.30904%; } }
  .resource-box .box-thumbnail-wrapper.events-thumbnail-ceus .ceus-inner-wrapper {
    position: absolute;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    font-family: Nunito;
    font-size: 22px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: left;
    padding: 20px;
    margin: 0;
    bottom: 0;
    color: #ffffff;
    background: linear-gradient(360deg, #993DBB 0%, rgba(153, 61, 187, 0) 100%);
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(50% + 25px);
    width: 100%; }
  .resource-box .box-thumbnail-wrapper.events-thumbnail-ceus .ceus-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px; }

.resource-box .box-thumbnail-wrapper {
  --box-thumbnail-wrapper-height: calc(83% + 1px);
  padding-bottom: var(--box-thumbnail-wrapper-height); }
  .resource-box .box-thumbnail-wrapper.size-medium {
    --box-thumbnail-wrapper-height: 260px; }
  .resource-box .box-thumbnail-wrapper.size-medium-custom {
    --box-thumbnail-wrapper-height: 260px; }
  @media (max-width: 62rem) {
    .resource-box .box-thumbnail-wrapper.size-medium {
      --box-thumbnail-wrapper-height: 58.30904%; }
    .resource-box .box-thumbnail-wrapper.size-medium-custom {
      --box-thumbnail-wrapper-height: 58.30904%; } }

.resource-box .box-thumbnail-wrapper {
  position: relative;
  height: 0;
  width: 100%; }

.resource-box .box-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover; }

.resource-box:not(.separated):not(.horizontal-content):not(.horizontal-box) .box-content {
  border-top: 0; }

.resource-box .box-content {
  border: 1px solid var(--color-base-light-muted);
  padding: var(--spacing-small-medium);
  transition: 0.25s ease-in-out; }
  .resource-box .box-content .content-date, .resource-box .box-content .content-tag {
    color: var(--color-base-light);
    font-family: var(--font-secondary-new);
    font-size: var(--font-size-extra-small);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.75rem; }
  .resource-box .box-content .hide-date {
    visibility: hidden; }
  .resource-box .box-content .content-tag {
    text-transform: uppercase; }
    .resource-box .box-content .content-tag a {
      color: inherit; }
  .resource-box .box-content .content-title {
    color: var(--color-base-light);
    font-family: var(--font-primary-new);
    font-size: var(--font-size-custom);
    font-weight: 700;
    line-height: 1.137;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: -moz-fit-content;
    height: fit-content;
    max-height: 50px; }
  .resource-box .box-content .content-link {
    margin-top: 0.75rem; }
    .resource-box .box-content .content-link-author {
      transition: 0.25s ease-in-out; }
      .resource-box .box-content .content-link-author:hover {
        color: var(--color-muted-dark); }

@media (max-width: 42rem) {
  .resource-box .box-thumbnail-wrapper, .resource-box .box-thumbnail-wrapper.size-medium, .resource-box .box-thumbnail-wrapper.size-medium-custom {
    --box-thumbnail-wrapper-height: 58.30904%; }
  .resource-box .box-content .content-date {
    margin-bottom: 0.625rem; }
  .resource-box .box-content .content-link {
    margin-top: 0.625rem; } }

.resource-box.horizontal-content + .resource-box.horizontal-content, .horizontal-box + .resource-box.horizontal-content, .resource-box.horizontal-content + .horizontal-box, .horizontal-box + .horizontal-box {
  margin-top: var(--spacing-custom-grid); }

.resource-box.horizontal-content .box-content, .horizontal-box .box-content {
  border-left-color: transparent;
  width: 100%; }

@media (max-width: 50rem) {
  .resource-box.horizontal-content .box-content, .horizontal-box .box-content {
    border-left-color: var(--color-base-light-muted); } }

.resource-box.horizontal-content .resource-box-inner-link {
  display: flex; }

.resource-box.horizontal-content .box-thumbnail-wrapper {
  --box-thumbnail-wrapper-height: 162px;
  max-width: 190px;
  min-width: 190px; }

.resource-box.horizontal-content .box-content .content-title {
  -webkit-line-clamp: 3;
  max-height: 75px; }

@media (max-width: 50rem) {
  .resource-box.horizontal-content .resource-box-inner-link {
    flex-direction: column; }
    .resource-box.horizontal-content .resource-box-inner-link:hover .box-content {
      border-left-color: var(--color-primary); }
  .resource-box.horizontal-content .box-thumbnail-wrapper {
    --box-thumbnail-wrapper-height: 58.30904%;
    max-width: 100%;
    min-width: 100%; } }

.flex-box-wrapper .resource-box, .grid-box-wrapper .resource-box, .magazine-issues-list .list-item .resource-box {
  height: 100%; }
  .flex-box-wrapper .resource-box-inner-link, .flex-box-wrapper .resource-box-links.vertical-box, .grid-box-wrapper .resource-box-inner-link, .grid-box-wrapper .resource-box-links.vertical-box, .magazine-issues-list .list-item .resource-box-inner-link, .magazine-issues-list .list-item .resource-box-links.vertical-box {
    display: flex;
    flex-direction: column;
    height: 100%; }
    .flex-box-wrapper .resource-box-inner-link .box-content, .flex-box-wrapper .resource-box-links.vertical-box .box-content, .grid-box-wrapper .resource-box-inner-link .box-content, .grid-box-wrapper .resource-box-links.vertical-box .box-content, .magazine-issues-list .list-item .resource-box-inner-link .box-content, .magazine-issues-list .list-item .resource-box-links.vertical-box .box-content {
      display: flex;
      flex-direction: column;
      height: 100%; }
    .flex-box-wrapper .resource-box-inner-link .content-title, .flex-box-wrapper .resource-box-links.vertical-box .content-title, .grid-box-wrapper .resource-box-inner-link .content-title, .grid-box-wrapper .resource-box-links.vertical-box .content-title, .magazine-issues-list .list-item .resource-box-inner-link .content-title, .magazine-issues-list .list-item .resource-box-links.vertical-box .content-title {
      flex-grow: 1; }

.resources-list-wrapper .resource-box:not(:last-child):hover .box-content::after {
  background-color: var(--color-primary); }

.resources-list-wrapper .resource-box:not(:last-child) .box-content {
  position: relative;
  border-bottom-color: transparent; }
  .resources-list-wrapper .resource-box:not(:last-child) .box-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    height: 1px;
    background-color: var(--color-base-light-muted);
    width: calc(100% - 2 * var(--spacing-small-medium));
    transition: 0.25s ease-in-out; }

.resources-list-wrapper .resource-box:last-child:hover .box-content {
  border-bottom-color: var(--color-base-light-muted); }

.resources-list-wrapper .resource-box:last-child .box-content .content-title {
  -webkit-line-clamp: 1; }

.resources-list-wrapper .resource-box-links.vertical-box {
  display: flex;
  flex-direction: column; }
  .resources-list-wrapper .resource-box-links.vertical-box:hover .box-content {
    border-left-color: var(--color-base-light-muted);
    border-right-color: var(--color-base-light-muted); }

.resource-box-links.horizontal-box {
  display: grid;
  grid-template-columns: minmax(0, 18.75rem) minmax(66%, calc(100% - 18.75rem)); }
  .resource-box-links.horizontal-box .box-thumbnail-wrapper {
    --box-thumbnail-wrapper-height: 71.66667%; }
  .resource-box-links.horizontal-box .box-content {
    display: flex;
    flex-direction: column;
    justify-content: center; }

.resource-box-links.fillsize-animation {
  transition: 0.25s ease-in-out; }
  .resource-box-links.fillsize-animation:hover .box-content {
    background-color: var(--color-base-light-muted-half);
    border-color: var(--color-base-light-muted-half);
    border-left-color: transparent; }

.resource-box-links .content-title a {
  color: inherit; }

.resource-box-thumbnail-link {
  display: inline-block;
  width: 100%; }

@media (max-width: 42rem) {
  .resource-box-links.horizontal-box {
    grid-template-columns: 1fr; } }

.section-fullwidth-new .row .tve_p_right {
  display: none; }

.section-fullwidth-new .row .thrv_wrapper.tve-tqb-page-type.tqb-splash-template-1.tve_editor_main_content.tve_empty_dropzone {
  padding: 25px !important;
  margin: 0 !important;
  max-width: unset; }

.section-fullwidth-new .row .thrv_wrapper.tve-tqb-page-type.tqb-optin-template-1 {
  padding: 0 !important; }

.section-fullwidth-new .row .thrv_wrapper.thrv_social_custom.thrv_social {
  padding: 0 !important; }

.section-fullwidth-new .row .tve_lg_input_container.tve_submit_container button {
  padding: 10px 15px !important; }

.section-fullwidth-new .row .thrv_wrapper {
  padding: 20px !important;
  margin: 0 auto !important; }
  .section-fullwidth-new .row .thrv_wrapper h1 {
    font-size: 28px !important; }
  .section-fullwidth-new .row .thrv_wrapper h2 {
    font-size: 26px !important; }
  .section-fullwidth-new .row .thrv_wrapper h3 {
    font-size: 22px !important; }
  .section-fullwidth-new .row .thrv_wrapper h4 {
    font-size: 20px !important; }

.section-fullwidth-new .row .thrv_wrapper.thrv_contentbox_shortcode.thrv-content-box {
  margin: 0 auto;
  padding: 0 !important; }
  .section-fullwidth-new .row .thrv_wrapper.thrv_contentbox_shortcode.thrv-content-box .thrv_wrapper.thrv_lead_generation {
    padding: 0 !important; }

.section-fullwidth-new .row .thrv_wrapper.thrv_text_element {
  margin: 0;
  padding: 20px 0 !important; }
  .section-fullwidth-new .row .thrv_wrapper.thrv_text_element p {
    font-size: 16px !important; }

.section-fullwidth-new .row .thrv_wrapper.thrv-button.tqb-btn-start {
  padding: 10px 40px;
  margin-top: 0;
  margin-bottom: 0; }

.section-fullwidth-new .row .tve_social_items a {
  padding-bottom: 20px; }

.section-fullwidth-new .row .tqb-question-text {
  color: #993DBB;
  font-size: 28px !important; }

.section-fullwidth-new .row .tqb-question-image-container {
  width: 50% !important;
  margin: 20px auto !important; }

.section-fullwidth-new .row .tqb-answer-action {
  padding: 15px; }
  .section-fullwidth-new .row .tqb-answer-action .tqb-answer-text-type .tqb-answer-text .tbq-span-text {
    font-size: 16px; }
  .section-fullwidth-new .row .tqb-answer-action .tqb-answer-text-type .tqb-answer-text .tqb-fancy-icon {
    top: 0; }

.row {
  --row-max-width: var(--site-width-large);
  --row-breakpoint-width: var(--site-width-large);
  width: 100%;
  max-width: var(--row-max-width);
  margin-left: auto;
  margin-right: auto; }
  .row.narrow {
    max-width: 46em; }
  .row-after-spacing {
    margin-bottom: 3em; }
  .row-before-spacing {
    margin-top: 3em; }
  @media (max-width: 82.125rem) {
    .row {
      --row-breakpoint-width: Min(calc(100% - 2rem), var(--row-max-width));
      max-width: Min(calc(100% - 2rem), var(--row-max-width)); } }
  @media (max-width: 62rem) {
    .row {
      --row-breakpoint-width: Min(var(--site-width-small), var(--row-max-width));
      max-width: Min(var(--site-width-small), var(--row-max-width)); } }
  @media (max-width: 50rem) {
    .row {
      --row-breakpoint-width: Min(var(--site-width-mobile), var(--row-max-width));
      max-width: Min(var(--site-width-mobile), var(--row-max-width)); } }
  @media (max-width: 42rem) {
    .row {
      --row-breakpoint-width: calc(100% - 2rem);
      max-width: calc(100% - 2rem); } }
  @media (max-width: 334px) {
    .row {
      max-width: calc(100% - 1.25rem); } }

.row-fullwidth {
  max-width: calc(100% - 2rem);
  margin-left: auto;
  margin-right: auto; }
  @media (max-width: 334px) {
    .row-fullwidth {
      max-width: calc(100% - 1.25rem); } }

.archive.category-smart-meetings-podcast .jw-icon:not(.jw-icon-volume),
.archive.category-smart-meetings-podcast .jw-slider-time,
.archive.category-smart-meetings-podcast .jw-text-duration,
.archive.category-smart-meetings-podcast .jw-text-elapsed, .page-template-events-archive .jw-icon:not(.jw-icon-volume),
.page-template-events-archive .jw-slider-time,
.page-template-events-archive .jw-text-duration,
.page-template-events-archive .jw-text-elapsed {
  display: none !important; }

.primary-fullwidth-banner-wrapper, .site-header-wrapper {
  background-color: var(--color-base);
  position: relative;
  z-index: 1001; }

.primary-fullwidth-banner-wrapper {
  padding: calc(var(--spacing-extra-small) - 0.0625rem) 0; }
  .primary-fullwidth-banner-wrapper .fullwidth-banner-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center; }
  .primary-fullwidth-banner-wrapper .ad-wrapper {
    margin-bottom: 0; }
  @media (max-width: 50rem) {
    .primary-fullwidth-banner-wrapper {
      display: none; } }
  @media screen and (max-width: 640px) and (orientation: portrait) {
    .primary-fullwidth-banner-wrapper {
      display: none; } }
  @media screen and (max-width: 992px) and (orientation: landscape) {
    .primary-fullwidth-banner-wrapper {
      display: none; } }

@media (max-width: 62rem) {
  .site-header-inner-wrapper {
    --row-max-width: var(--site-width-large);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: Min(var(--site-width-small), var(--row-max-width));
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid var(--color-base-light-muted); } }

@media (max-width: 50rem) {
  .site-header-inner-wrapper {
    max-width: Min(var(--site-width-mobile), var(--row-max-width)); } }

@media (max-width: 42rem) {
  .site-header-inner-wrapper {
    max-width: calc(100% - 2rem); } }

.site-preheader-wrapper {
  --preheader-spacing: 0;
  border-top: 1px solid var(--color-base-light-muted);
  border-bottom: 1px solid var(--color-base-light-muted);
  padding: var(--preheader-spacing); }
  .site-preheader-wrapper .preheader-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  @media (max-width: 62rem) {
    .site-preheader-wrapper {
      --preheader-spacing: 0.75em 0;
      border-top: 0;
      border-bottom: 0; }
      .site-preheader-wrapper .header-social-wrapper {
        display: none; } }
  @media (max-width: 42rem) {
    .site-preheader-wrapper .row {
      max-width: 100%; } }

.subscribe-button-wrapper {
  display: flex;
  position: relative; }
  .subscribe-button-wrapper .subscribe-button-inner-wraper {
    display: flex;
    width: 100%; }
  .subscribe-button-wrapper:hover .subscribe-btn-thumbnail {
    transform: translate3d(0, -1.5rem, 0); }
    @media (max-width: 42rem) {
      .subscribe-button-wrapper:hover .subscribe-btn-thumbnail {
        transform: translate3d(0, -0.625rem, 0); } }
  .subscribe-button-wrapper .subscribe-btn-thumbnail {
    position: absolute;
    right: 1rem;
    bottom: 0;
    z-index: 5;
    transition: 0.2s ease-in-out;
    height: 7.25em;
    width: 6.125em;
    background-color: var(--color-base);
    -o-object-fit: contain;
       object-fit: contain; }
    @media (max-width: 42rem) {
      .subscribe-button-wrapper .subscribe-btn-thumbnail {
        height: 4.5em;
        width: 3.875em; } }

.header-button-subscribe {
  --btn-padding: 0.625rem 1.875rem;
  --btn-font-size: 1em;
  position: relative;
  border: 0;
  overflow: hidden;
  z-index: 10; }

.site-branding.site-branding-stuck {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(calc(-100% - 0.5rem), -50%, 0);
  pointer-events: none;
  opacity: 0;
  transition: 0.5s ease-in-out;
  margin-right: var(--brading-right-spacing); }
  .site-branding.site-branding-stuck a {
    height: 2.75em;
    width: var(--branding-width); }

.site-branding a, .site-branding p {
  color: var(--color-base); }

.site-branding .site-title {
  font-size: 1em;
  margin: 0; }

.site-branding a {
  font-size: 1em;
  display: block;
  height: 4.5em;
  width: 14em;
  background: url("../../dist/images/SMLogo-purple-new.svg") no-repeat center center;
  background-size: contain;
  text-indent: -9999em; }
  @media (max-width: 62rem) {
    .site-branding a {
      height: 2.5em;
      width: 7.875em; } }

.header-social-wrapper {
  display: flex;
  align-items: center; }
  .header-social-wrapper .social-title {
    color: var(--color-base-invert);
    font-size: var(--font-size-h6);
    font-weight: 400;
    line-height: normal;
    margin-right: calc(var(--spacing-extra-small) / 2); }
  .header-social-wrapper .list-social-icons {
    display: flex; }
    .header-social-wrapper .list-social-icons .list-item-link {
      display: flex;
      padding: calc(var(--spacing-extra-small) / 2);
      color: var(--color-base-invert); }

.primary-menu-wrapper .menu:first-of-type > .menu-item:first-of-type > a {
  padding-left: 0; }

.primary-menu-wrapper .menu {
  display: flex; }
  .primary-menu-wrapper .menu > .menu-item {
    position: relative; }
    .primary-menu-wrapper .menu > .menu-item > a {
      transition: 0.25s ease-in-out;
      -webkit-transition: 0.25s ease-in-out;
      -webkit-animation-timing-function: ease-in-out;
      -webkit-animation-delay: 0.25s; }
    @media (min-width: 993px) {
      .primary-menu-wrapper .menu > .menu-item:hover .sub-menu {
        opacity: 1;
        pointer-events: all;
        transform: scale(1);
        z-index: 1000; }
      .primary-menu-wrapper .menu > .menu-item .sub-menu {
        position: absolute;
        top: 100%;
        background-color: var(--color-base);
        width: 15rem;
        opacity: 0;
        transition: 0.25s ease-in-out;
        -webkit-transition: 0.25s ease-in-out;
        -webkit-animation-timing-function: ease-in-out;
        -webkit-animation-delay: 0.25s;
        pointer-events: none;
        transform: scale(0.95);
        z-index: -1;
        box-shadow: var(--shadow-primary);
        border: 1px solid var(--color-base-light-muted); }
        .primary-menu-wrapper .menu > .menu-item .sub-menu .menu-item a {
          font-weight: 500; }
          .primary-menu-wrapper .menu > .menu-item .sub-menu .menu-item a:hover {
            background-color: var(--color-primary-light); } }
    @media (max-width: 62rem) {
      .primary-menu-wrapper .menu > .menu-item .sub-menu .menu-item a {
        font-weight: 500; } }
  .primary-menu-wrapper .menu .menu-item {
    --links-space-vertical: 0.625em;
    --links-space-right: 15px;
    --links-font-size: var(--font-size-h6); }
    .primary-menu-wrapper .menu .menu-item.menu-item-has-children {
      --child-link-icon-width: 12px;
      --child-link-icon-space-left: 7px;
      --child-links-space-right: calc(var(--child-link-icon-width) + var(--links-space-right) + var(--child-link-icon-space-left));
      --child-links-icon-position: calc(var(--child-links-space-right) - var(--child-link-icon-width) - var(--child-link-icon-space-left));
      --child-links-icon-width: 0.75rem; }
      .primary-menu-wrapper .menu .menu-item.menu-item-has-children > a {
        position: relative;
        padding-right: var(--child-links-space-right); }
      .primary-menu-wrapper .menu .menu-item.menu-item-has-children .dropdown-arrow {
        position: absolute;
        top: 50%;
        right: var(--child-links-icon-position);
        transform: translateY(-50%);
        display: flex;
        margin-left: var(--child-link-icon-space-left);
        cursor: pointer;
        width: var(--child-links-icon-width); }
        .primary-menu-wrapper .menu .menu-item.menu-item-has-children .dropdown-arrow svg {
          pointer-events: none; }
      @media (max-width: 76.25rem) and (min-width: 993px) {
        .primary-menu-wrapper .menu .menu-item.menu-item-has-children {
          --child-link-icon-width: 9px; } }
    .primary-menu-wrapper .menu .menu-item a {
      display: flex;
      align-items: center;
      color: var(--color-base-light);
      font-family: var(--font-primary-new);
      font-size: var(--links-font-size);
      font-weight: 700;
      line-height: 1.25;
      padding: var(--links-space-vertical) var(--links-space-right); }

@media (max-width: 82.125rem) and (min-width: 993px) {
  .primary-menu-wrapper .menu .menu-item {
    --links-space-right: 0.75rem; } }

@media (max-width: 76.25rem) and (min-width: 993px) {
  .primary-menu-wrapper .menu .menu-item {
    --links-space-right: 0.625rem; } }

@media (max-width: 74.25rem) and (min-width: 993px) {
  .primary-menu-wrapper .menu .menu-item {
    --links-font-size: 15px;
    --links-space-vertical: 0.5em;
    --links-space-right: 0.5rem; }
    .primary-menu-wrapper .menu .menu-item.menu-item-has-children {
      --child-link-icon-space-left: 3px;
      --child-links-icon-width: 9px; } }

@media (max-width: 71rem) and (min-width: 993px) {
  .primary-menu-wrapper .menu .menu-item {
    --links-space-right: 0.5rem; } }

@media (max-width: 64.375rem) {
  .primary-menu-wrapper .menu .menu-item {
    --links-space-right: 0.375rem; } }

@media (max-width: 62rem) {
  .primary-menu-wrapper {
    width: 100%;
    padding-top: 1.25em;
    margin-bottom: 1.25em; }
    .primary-menu-wrapper .menu {
      flex-direction: column; }
      .primary-menu-wrapper .menu > .menu-item > a {
        padding-bottom: 0.375em; }
      .primary-menu-wrapper .menu > .menu-item:not(:last-child) {
        margin-bottom: 0.875em; }
      .primary-menu-wrapper .menu .menu-item {
        --links-space-right: 0; }
        .primary-menu-wrapper .menu .menu-item.menu-item-has-children {
          --child-links-icon-width: 1.75rem;
          --child-links-space-right: 0;
          --child-links-icon-position: calc(0% - var(--child-link-icon-width) - var(--child-link-icon-space-left));
          display: flex;
          flex-wrap: wrap; }
          .primary-menu-wrapper .menu .menu-item.menu-item-has-children .dropdown-arrow {
            --child-links-icon-position: 0;
            position: relative;
            top: 0;
            transform: none;
            padding: 0.625em 1em var(--child-link-icon-space-left) 0;
            align-items: center;
            -webkit-tap-highlight-color: transparent; }
            .primary-menu-wrapper .menu .menu-item.menu-item-has-children .dropdown-arrow svg {
              transition: 0.25s ease-in-out;
              -webkit-transition: 0.25s ease-in-out;
              -webkit-animation-timing-function: ease-in-out;
              -webkit-animation-delay: 0.25s; }
          .primary-menu-wrapper .menu .menu-item.menu-item-has-children .sub-menu {
            height: 0;
            opacity: 0;
            width: 100%;
            pointer-events: none; }
          .primary-menu-wrapper .menu .menu-item.menu-item-has-children.is-opened .dropdown-arrow svg {
            transform: rotate(180deg); }
          .primary-menu-wrapper .menu .menu-item.menu-item-has-children.is-opened .sub-menu {
            height: 100%;
            opacity: 1;
            pointer-events: all; } }

.header-main-inner-wrapper {
  --header-main-inner-spacing: 0.875em 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--header-main-inner-spacing); }
  @media (max-width: 62rem) {
    .header-main-inner-wrapper {
      --header-main-inner-spacing: 0.5em 0; } }

.header-main-secondary-container .container-inner-wrapper {
  display: flex;
  align-items: center; }

.header-main-secondary-container .search-button-wrapper, .header-main-secondary-container .secondary-menu-button-wrapper, .header-main-secondary-container .primary-menu-button-wrapper {
  --icons-box-padding: 0.625em;
  position: relative;
  left: var(--icons-box-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--icons-box-padding);
  height: 1.5rem;
  box-sizing: content-box;
  color: var(--color-base-light);
  cursor: pointer;
  transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.25s;
  -webkit-tap-highlight-color: transparent; }
  .header-main-secondary-container .search-button-wrapper svg, .header-main-secondary-container .secondary-menu-button-wrapper svg, .header-main-secondary-container .primary-menu-button-wrapper svg {
    pointer-events: none; }
  @media (min-width: 993px) {
    .header-main-secondary-container .search-button-wrapper:hover, .header-main-secondary-container .secondary-menu-button-wrapper:hover, .header-main-secondary-container .primary-menu-button-wrapper:hover {
      color: var(--color-primary); } }

.header-main-secondary-container .secondary-menu-button-wrapper, .header-main-secondary-container .primary-menu-button-wrapper {
  width: 1.25rem;
  height: 1.5rem; }
  .header-main-secondary-container .secondary-menu-button-wrapper span, .header-main-secondary-container .primary-menu-button-wrapper span {
    display: flex;
    position: absolute;
    pointer-events: none;
    transition: 0.25s ease-in-out;
    -webkit-transition: 0.25s ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-delay: 0.25s;
    opacity: 0; }

.header-main-secondary-container .primary-menu-button-wrapper {
  display: none; }

@media (max-width: 62rem) {
  .header-main-secondary-container .primary-menu-button-wrapper {
    display: flex; }
  .header-main-secondary-container .secondary-menu-button-wrapper {
    display: none; }
  .header-main-secondary-container .search-button-wrapper, .header-main-secondary-container .secondary-menu-button-wrapper, .header-main-secondary-container .primary-menu-button-wrapper {
    --icons-box-padding: 0.75em; }
  .header-main-secondary-container .search-button-wrapper {
    margin-right: 0.125em; } }

.header-main-primary-container {
  opacity: 1;
  transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.25s;
  pointer-events: all;
  /* Avoid Chrome to see Safari hack */ }
  .header-main-primary-container .header-social-wrapper {
    margin-top: 2.125em; }
    .header-main-primary-container .header-social-wrapper + .subscribe-button-wrapper {
      margin-top: 2.125em; }
  .header-main-primary-container .subscribe-button-wrapper .header-button-subscribe {
    width: 100%;
    text-align: center; }
  @media (min-width: 993px) {
    .header-main-primary-container {
      position: relative;
      display: flex;
      align-items: center; }
      .header-main-primary-container .header-social-wrapper {
        display: none; } }
  @media (max-width: 62rem) {
    .header-main-primary-container {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 0;
      background-color: var(--color-base);
      pointer-events: none;
      opacity: 0;
      z-index: -1;
      padding-bottom: 1.875em; } }
  @supports (-webkit-touch-callout: none) {
    .header-main-primary-container {
      /* The hack for Safari */
      padding-bottom: 2.75em; } }

@media (min-width: 993px) {
  .header-main-primary-inner-container {
    position: relative;
    transition: 0.5s ease-in-out; } }

@media (max-width: 62rem) {
  .header-main-primary-inner-container {
    max-width: Min(var(--site-width-small), var(--row-max-width));
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    overflow-y: auto; } }

@media (max-width: 50rem) {
  .header-main-primary-inner-container {
    max-width: Min(var(--site-width-mobile), var(--row-max-width)); } }

@media (max-width: 42rem) {
  .header-main-primary-inner-container {
    max-width: calc(100% - 2rem); } }

.site-header-main {
  position: relative;
  background-color: var(--color-base);
  border-bottom: 1px solid var(--color-base-light-muted); }
  @media (min-width: 993px) {
    .site-header-main {
      --brading-right-spacing: 1.875rem;
      --branding-width: 6.25em; }
      .site-header-main.is-sticked .site-branding-stuck, .site-header-main.is_stuck .site-branding-stuck {
        transform: translate3d(0, -50%, 0);
        pointer-events: all;
        opacity: 1; }
        .site-header-main.is-sticked .site-branding-stuck + .header-main-primary-inner-container, .site-header-main.is_stuck .site-branding-stuck + .header-main-primary-inner-container {
          transform: translate3d(calc(var(--brading-right-spacing) + var(--branding-width)), 0, 0); } }
  @media (max-width: 82.125rem) and (min-width: 993px) {
    .site-header-main {
      --brading-right-spacing: 1rem;
      --branding-width: 5.5em; } }
  @media (max-width: 74.25rem) and (min-width: 993px) {
    .site-header-main {
      --brading-right-spacing: 0.625rem;
      --branding-width: 5em; } }
  .site-header-main:not(.is-active-secondary-menu) .secondary-menu-button-wrapper .menu-icon-default {
    opacity: 1; }
  .site-header-main:not(.is-active-secondary-menu) .secondary-menu-button-wrapper .menu-icon-close {
    opacity: 0; }
  .site-header-main:not(.is-active-primary-menu) .primary-menu-button-wrapper .menu-icon-default {
    opacity: 1; }
  .site-header-main:not(.is-active-primary-menu) .primary-menu-button-wrapper .menu-icon-close {
    opacity: 0; }
  .site-header-main.is-active-header-search .header-search-container-wrapper {
    opacity: 1;
    pointer-events: all; }
  .site-header-main.is-active-header-search .header-search-form .header-search-button, .site-header-main.is-active-header-search .header-search-form .header-search-field {
    transform: translateX(0);
    opacity: 1; }
  .site-header-main.is-active-header-search .header-search-form .header-search-button-close {
    transform: translateX(0);
    transition-delay: 0s;
    opacity: 1; }
  .site-header-main.is-active-secondary-menu .header-main-primary-inner-container {
    opacity: 0;
    pointer-events: none; }
  .site-header-main.is-active-secondary-menu .header-main-secondary-wrapper .main-secondary-inner-wrapper {
    pointer-events: all;
    transform: scaleY(1);
    opacity: 1; }
  .site-header-main.is-active-secondary-menu .header-main-secondary-wrapper .secondary-menu-wrapper {
    opacity: 1;
    transition: 0.35s ease-out;
    -webkit-transition: 0.35s ease-out;
    -webkit-animation-timing-function: ease-out;
    -webkit-animation-delay: 0.35s; }
  .site-header-main.is-active-secondary-menu .secondary-menu-button-wrapper .menu-icon-default {
    opacity: 0; }
  .site-header-main.is-active-secondary-menu .secondary-menu-button-wrapper .menu-icon-close {
    opacity: 1; }
  .site-header-main.is-active-primary-menu .primary-menu-button-wrapper .menu-icon-default {
    opacity: 0; }
  .site-header-main.is-active-primary-menu .primary-menu-button-wrapper .menu-icon-close {
    opacity: 1; }
  .site-header-main.is-active-primary-menu .header-main-primary-container {
    pointer-events: all;
    opacity: 1;
    z-index: 1000;
    /* Avoid Chrome to see Safari hack */ }
    @media (max-width: 62rem) and (orientation: portrait) {
      .site-header-main.is-active-primary-menu .header-main-primary-container {
        height: calc(100vh - 65px - 120px);
        max-height: calc(100vh - 65px - 120px);
        min-height: -webkit-fill-available; } }
    @media (max-width: 50rem), (max-width: 62rem) and (orientation: landscape) {
      .site-header-main.is-active-primary-menu .header-main-primary-container {
        height: calc(100vh - 65px);
        max-height: calc(100vh - 65px);
        min-height: -webkit-fill-available; } }
    @supports (-webkit-touch-callout: none) {
      .site-header-main.is-active-primary-menu .header-main-primary-container {
        /* The hack for Safari */
        height: -webkit-fill-available; } }
  @media (max-width: 62rem) {
    .site-header-main {
      position: static;
      border-bottom: 0; } }
  @media (max-width: 42rem) {
    .site-header-main .row {
      max-width: 100%; } }

.header-search-container-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-base);
  opacity: 0;
  transition: 0.25s ease;
  -webkit-transition: 0.25s ease;
  -webkit-animation-timing-function: ease;
  -webkit-animation-delay: 0.25s;
  pointer-events: none;
  z-index: 100; }
  @media (max-width: 62rem) {
    .header-search-container-wrapper {
      height: calc(100% - 1px); } }

.header-search-inner-container {
  --search-inner-container-spacing: 0.5rem 1rem;
  position: relative;
  height: 100%;
  width: 41rem;
  padding: var(--search-inner-container-spacing);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .header-search-inner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    height: 100%;
    width: 100%;
    max-width: 100vw;
    background-color: var(--color-base);
    z-index: -1;
    pointer-events: none; }
  @media (max-width: 62rem) {
    .header-search-inner-container {
      --search-inner-container-spacing: 0.25rem 1rem; } }
  @media (max-width: 42rem) {
    .header-search-inner-container {
      --search-inner-container-spacing: 0.25rem 0.5rem 0.25rem 0.625rem; } }

.header-search-form {
  display: flex;
  align-items: center; }
  .header-search-form .header-search-button, .header-search-form .header-search-field {
    position: relative;
    transform: translateX(0.5vw);
    transition: 0.25s ease-in-out;
    -webkit-transition: 0.25s ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-delay: 0.25s;
    opacity: 0; }
  .header-search-form .header-search-button-close {
    transform: translateX(0.25vw);
    transition: 0.25s ease-in-out;
    -webkit-transition: 0.25s ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-delay: 0.25s;
    transition-delay: 0.25s;
    opacity: 0;
    -webkit-tap-highlight-color: transparent; }
  .header-search-form .header-search-button {
    display: flex;
    padding: 1rem;
    background-color: transparent;
    color: var(--color-base-light);
    cursor: pointer;
    border: none;
    transition: 0.25s ease-in-out; }
    .header-search-form .header-search-button:hover {
      color: var(--color-primary); }
    .header-search-form .header-search-button svg {
      pointer-events: none; }
  .header-search-form .header-search-field {
    color: var(--color-base-light);
    font-size: var(--font-size-small);
    font-family: var(--font-seconary-new);
    font-weight: 400;
    line-height: 1.3345;
    outline: none;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    padding: 1rem 0;
    width: 100%;
    margin-right: 0.375rem; }
    .header-search-form .header-search-field::-moz-placeholder {
      color: var(--color-muted);
      opacity: 1;
      /* Firefox */ }
    .header-search-form .header-search-field::placeholder {
      color: var(--color-muted);
      opacity: 1;
      /* Firefox */ }
    .header-search-form .header-search-field:-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: var(--color-muted); }
    .header-search-form .header-search-field::-ms-input-placeholder {
      /* Microsoft Edge */
      color: var(--color-muted); }
  .header-search-form .header-search-button-close {
    cursor: pointer;
    display: flex;
    padding: 1rem;
    color: #CBCACA; }
    .header-search-form .header-search-button-close svg {
      pointer-events: none; }
    .header-search-form .header-search-button-close:hover {
      color: var(--color-primary); }

.header-main-secondary-wrapper {
  position: relative;
  height: 0;
  width: 100%;
  padding: 0 1rem;
  z-index: 1000; }
  .header-main-secondary-wrapper .row {
    position: relative; }
  .header-main-secondary-wrapper .main-secondary-inner-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    transform-origin: top left;
    transition: 0.25s ease-out;
    -webkit-transition: 0.25s ease-out;
    -webkit-animation-timing-function: ease-out;
    -webkit-animation-delay: 0.25s;
    transform: scaleY(0);
    opacity: 0;
    background-color: var(--color-base); }
  .header-main-secondary-wrapper .secondary-menu-wrapper {
    font-family: var(--font-primary-new);
    padding: 2rem 0;
    opacity: 0;
    transition: 0.1s ease-out;
    -webkit-transition: 0.1s ease-out;
    -webkit-animation-timing-function: ease-out;
    -webkit-animation-delay: 0.1s; }
    .header-main-secondary-wrapper .secondary-menu-wrapper a {
      display: inline-block;
      color: var(--color-base-light); }
    .header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type {
      display: flex; }
      .header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type > .menu-item {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%; }
        .header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type > .menu-item > a {
          font-weight: 700;
          padding: 0.5rem 0; }
          @media (max-width: 71rem) and (min-width: 993px) {
            .header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type > .menu-item > a {
              font-size: 15px; } }
        .header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type > .menu-item > .dropdown-arrow {
          display: none; }
        .header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type > .menu-item:not(:last-child) {
          margin-right: 1.5rem; }
      .header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type .menu-items-wrapper > a {
        display: none; }
      .header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type .menu-items-wrapper > .dropdown-arrow {
        display: none; }
      .header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type .menu-items-wrapper a {
        font-weight: 700;
        padding: 0.5rem 0; }
      .header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type .menu-items-wrapper > .sub-menu {
        margin-top: 0; }
    .header-main-secondary-wrapper .secondary-menu-wrapper .sub-menu {
      margin-top: 0.375rem; }
      .header-main-secondary-wrapper .secondary-menu-wrapper .sub-menu .menu-item:not(:last-child) {
        margin-bottom: 0.25rem; }
      .header-main-secondary-wrapper .secondary-menu-wrapper .sub-menu .menu-item a {
        font-weight: 500;
        padding: 0.25rem 0; }
        @media (max-width: 71rem) and (min-width: 993px) {
          .header-main-secondary-wrapper .secondary-menu-wrapper .sub-menu .menu-item a {
            font-size: 15px; } }

.site-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.25s;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent; }
  .site-overlay.is-active {
    pointer-events: all;
    opacity: 1; }

@media (min-width: 993px) {
  .is-mobile-visible {
    display: none; } }

@media (max-width: 62rem) {
  .is-desktop-visible {
    display: none; } }

.site-footer {
  --footer-padding-top: 4.375rem;
  --footer-padding-bottom: 1.25rem;
  padding-top: var(--footer-padding-top);
  padding-bottom: var(--footer-padding-bottom);
  color: var(--color-base);
  font-family: var(--font-primary-new); }
  .site-footer .widget-title {
    font-family: var(--font-primary-new);
    margin-bottom: 0.625rem; }
  .site-footer .footer-menu-title, .site-footer .widget-title {
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.3335; }
  .site-footer .footer-menu-title {
    margin-bottom: 5px;
    white-space: nowrap; }
  @media (max-width: 42rem) {
    .site-footer {
      --footer-padding-top: 2.5rem;
      --footer-padding-bottom: 83px; }
      .site-footer .footer-menu-title, .site-footer .widget-title {
        font-size: 1.25em; } }

.site-footer-widget-wrapper .widget_text {
  margin-bottom: 0; }
  .site-footer-widget-wrapper .widget_text .textwidget {
    line-height: 1.625; }
    @media (max-width: 62rem) {
      .site-footer-widget-wrapper .widget_text .textwidget {
        text-align: justify; } }

.site-footer-primary + .site-footer-secondary {
  margin-top: 4.125rem; }
  @media (max-width: 42rem) {
    .site-footer-primary + .site-footer-secondary {
      margin-top: 2.5rem; } }

.site-footer-menu .menu-item a {
  display: inline-block;
  color: var(--color-base);
  font-size: 1.125em;
  padding: 0.25rem 0;
  line-height: 1.445; }

.siter-footer-primary-inner-wrapper {
  display: grid;
  grid-template-columns: repeat(4, auto);
  -moz-column-gap: 5.25rem;
       column-gap: 5.25rem; }
  @media (max-width: 1200px) {
    .siter-footer-primary-inner-wrapper {
      grid-template-columns: repeat(3, auto);
      grid-template-rows: auto auto;
      row-gap: 1rem; }
      .siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(4) {
        grid-column: 2/4; } }
  @media (max-width: 62rem) {
    .siter-footer-primary-inner-wrapper {
      row-gap: 2rem; }
      .siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(1) {
        grid-column: 1/4;
        grid-row: 1/2; }
      .siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(2), .siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(4), .siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(4) {
        grid-row: 2/3; }
      .siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(2) {
        grid-column: 1/2; }
      .siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(3) {
        grid-column: 2/3; }
      .siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(4) {
        grid-column: 3/4; } }
  @media (max-width: 42rem) {
    .siter-footer-primary-inner-wrapper {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      row-gap: 2.5rem; }
      .siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(n) {
        grid-column: 1/2;
        grid-row: auto; } }
  .siter-footer-primary-inner-wrapper ul, .siter-footer-primary-inner-wrapper ol {
    font-size: unset; }

.site-footer-secondary {
  border-top: 1px solid var(--color-base);
  padding-top: 1.25rem; }
  .site-footer-secondary .site-info {
    padding: 0 4.5vw; }
    .site-footer-secondary .site-info p {
      font-size: var(--font-size-extra-small);
      font-weight: 400;
      line-height: 1.4295;
      text-align: center; }
  @media (max-width: 62rem) {
    .site-footer-secondary .site-info {
      padding: 0; }
      .site-footer-secondary .site-info p {
        text-align: justify; } }
  @media (max-width: 42rem) {
    .site-footer-secondary {
      padding-top: 1.875rem;
      padding-bottom: 1.875rem; } }

.footer-social-links-wrapper {
  display: flex;
  align-items: center; }
  .footer-social-links-wrapper .social-link {
    display: flex;
    color: var(--color-base);
    padding-top: 10px;
    padding-bottom: 4px; }
    .footer-social-links-wrapper .social-link:not(:first-child) {
      padding-left: 6px; }
    .footer-social-links-wrapper .social-link:not(:last-child) {
      padding-right: 6px; }
    .footer-social-links-wrapper .social-link:not(:last-child) {
      margin-right: 7px; }

.section-events-archive-upcoming + .section-events-archive-recaps, .section-events-archive-content + .section-events-archive-recaps {
  --section-padding-top: var(--section-spacing-larger); }

.section-events-archive-upcoming + .section-subscribe-form, .section-events-archive-content + .section-subscribe-form {
  margin-top: var(--section-spacing-extra-large); }

.section-events-archive-upcoming .resource-box-event .event-content-footer, .section-events-archive-content .resource-box-event .event-content-footer {
  background-color: var(--color-primary-light); }

.section-events-archive-header .events-welcome-big-text,
.section-events-archive-header .events-welcome-small-text {
  font-family: var(--font-custom-bold); }

.section-events-archive-grid {
  --meta-location-min-height: 0px;
  --meta-date-min-height: 0px;
  --meta-theme-min-height: 0px; }
  .section-events-archive-grid .data-box-datetime {
    min-height: var(--meta-date-min-height); }
  .section-events-archive-grid .data-box-location {
    min-height: var(--meta-location-min-height); }
  .section-events-archive-grid .data-box-theme {
    min-height: var(--meta-theme-min-height); }
  @media screen and (max-width: 42rem) {
    .section-events-archive-grid .data-box {
      min-height: unset; } }

@media (max-width: 75rem) and (min-width: 62.0625rem) {
  .section-events-archive-upcoming .grid-container.four-boxes, .section-events-archive-recaps .grid-container.four-boxes {
    --grid-columns-count: repeat(3, 1fr); } }

.section-events-archive-header {
  --section-padding-bottom: var(--spacing-small-medium);
  --location-list-spacing-bottom: 2rem; }
  .section-events-archive-header .btn-register {
    --btn-register-width: 12rem;
    min-width: var(--btn-register-width);
    text-align: center; }
  .section-events-archive-header .entry-header-location {
    z-index: 20; }
    .section-events-archive-header .entry-header-location .section-heading-new + .location-data-list {
      margin-top: var(--location-list-spacing-bottom); }
  @media (max-width: 62rem) {
    .section-events-archive-header {
      --section-padding-bottom: 3.125rem; } }
  @media (max-width: 42rem) {
    .section-events-archive-header {
      --section-padding-bottom: 2.25rem;
      --location-list-spacing-bottom: 1rem; }
      .section-events-archive-header .btn-register {
        --btn-register-width: 10rem;
        --btn-padding: 0.375rem 2rem;
        width: -moz-fit-content;
        width: fit-content; } }

.single-event-content-component ul, .single-event-content-component ol {
  padding: revert;
  list-style-type: revert;
  margin: revert;
  font-size: var(--font-size-h6); }

.single-event-content-component h1, .single-event-content-component h2, .single-event-content-component h3, .single-event-content-component h4, .single-event-content-component h5, .single-event-content-component h6, .single-event-content-component p, .single-event-content-component ul, .single-event-content-component ol {
  font-family: var(--font-secondary-new); }

.row.ceus-content {
  padding-top: 3em; }

/*# sourceMappingURL=events-archive.css.map */
