/*
 * Site Setup
 *
 * This can and should hold site variables as well as any site-specific mixins that
 * will be used in other Less files. When establishing mixins, be sure to use 
 * parens so that css isn't pushed out unnecessarily. For example, use .h1() not .h1
*/
:root {
  --font-sans: 'sourcesanspro',sans-serif;
  --font-heading: 'worksans',sans-serif;
  --base-font-size: 18;
  font-size: calc((var(--base-font-size) / 16) * 1rem);
  --spacing: 30px;
  --spacingd2: calc(0.5 * var(--spacing));
  --spacingx2: calc(2 * var(--spacing));
  --spacingx3: calc(3 * var(--spacing));
  --spacingx4: calc(4 * var(--spacing));
  --color-teal-rgb: 29, 106, 120;
  --color-teal: rgb(var(--color-teal-rgb));
  --color-teal-dark: #154f59;
  --color-navy-rgb: 0, 19, 45;
  --color-navy: rgb(var(--color-navy-rgb));
  --color-navy-dark: #000916;
  --color-blue-rgb: 3, 84, 130;
  --color-blue: rgb(var(--color-blue-rgb));
  --color-purple-rgb: 128, 34, 95;
  --color-purple: rgb(var(--color-purple-rgb));
  --color-purple-dark: #631f4a;
  --color-lime-rgb: 117, 164, 74;
  --color-lime: rgb(var(--color-lime-rgb));
  --color-lime-dark: #507231;
  --color-yellow-rgb: 237, 198, 89;
  --color-yellow: rgb(var(--color-yellow-rgb));
  --color-yellow-dark: #af8921;
  --color-orange-rgb: 170, 103, 1;
  --color-orange: rgb(var(--color-orange-rgb));
  --color-text: #555555;
  --color-heading: #002337;
}
@media (max-width: 1000px) {
  :root {
    --base-font-size: 16;
  }
}
@media (max-width: 1023px) {
  :root {
    --spacing: 20px;
  }
}
@media (max-width: 767px) {
  :root {
    --spacing: 15px;
  }
}
@media (max-width: 349) {
  :root {
    --spacing: 10px;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * NMC Idioms
 *
 * These are common patterns we use in all of our
 * projects. They are consolidated here to keep code DRY.
 *
 */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*  Hides text when using image replacement */
/*  Removes bullets, margin, and padding from list */
/*  Removes webkit styling from form element */
/* Removes various browser styling for select boxes */
/* Fixed Aspect Ratio Sized Box */
/*  Set width and height of element to that of its parent */
/*  Position element absolutely to 0,0 */
/*  Position element absolutely and set its width and height to that of its parent (useful for slideshows) */
/*  Default for pseudoelements */
/*  The micro clearfix http://nicolasgallagher.com/micro-clearfix-hack/ */
/* Add placeholder rules for multiple browsers. Useage:
    .placeholder({
        color: #fff;
        font-weight: bold;
    });
*/
.modal .modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .modal__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
  padding: 30px;
  overflow-y: auto;
  box-sizing: border-box;
}
.admin-bar .modal .modal__overlay {
  top: 32px;
}
.admin-bar .modal .modal__container {
  height: calc(100vh - 32px);
}
.modal .modal__close {
  position: fixed;
  right: 20px;
  top: 15px;
  text-align: right;
  font-size: 30px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.modal .modal__close:before {
  content: "\2715";
}
.modal .modal__content {
  max-width: calc(100vw - var(--spacingx2) - 120px);
}
.modal .modal__image {
  height: calc(100vh - var(--spacingx2));
}
.modal .modal__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/**************************\
Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}
.nmc-slider {
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-wrap: nowrap;
}
.nmc-slide {
  position: relative;
  flex: 0 0 auto;
}
.nmc-slider.scrollable {
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}
.nmc-slider.scrollable::-webkit-scrollbar {
  display: none;
}
.nmc-slider.scrollable .nmc-slide {
  scroll-snap-align: start;
}
@media (max-width: 767px) {
  .nmc-slider.mobile-scrollable {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }
  .nmc-slider.mobile-scrollable::-webkit-scrollbar {
    display: none;
  }
  .nmc-slider.mobile-scrollable .nmc-slide {
    scroll-snap-align: start;
  }
}
html,
body {
  width: 100%;
  overflow-x: hidden;
}
.bound--none {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.bound--maximum {
  position: relative;
  margin: 0 auto;
  width: calc(100% - (var(--spacingx2)));
}
.bound--ultrawide {
  position: relative;
  margin: 0 auto;
  width: calc(100% - (var(--spacingx4)));
}
@media (max-width: 1023px) {
  .bound--ultrawide {
    width: calc(100% - (var(--spacingx2)));
  }
}
.bound--layout {
  position: relative;
  margin: 0 auto;
  width: calc(100% - (var(--spacingx2)));
  max-width: 1080px;
}
.bound--wide {
  position: relative;
  margin: 0 auto;
  width: calc(100% - (var(--spacingx2)));
  max-width: 890px;
}
.bound--narrow {
  position: relative;
  margin: 0 auto;
  width: calc(100% - (var(--spacingx2)));
  max-width: 770px;
}
:root {
  --line-height: 1.8;
  --h1: calc((42 / var(--base-font-size)) * 1rem);
  --h2: calc((36 / var(--base-font-size)) * 1rem);
  --h3: calc((30 / var(--base-font-size)) * 1rem);
  --h4: calc((24 / var(--base-font-size)) * 1rem);
  --h5: calc((18 / var(--base-font-size)) * 1rem);
  --h6: calc((18 / var(--base-font-size)) * 1rem);
  --smaller: calc((15 / var(--base-font-size)) * 1rem);
}
@media (max-width: 1200px) {
  :root {
    --h1: calc((42 / var(--base-font-size)) * 1rem);
    --h2: calc((32 / var(--base-font-size)) * 1rem);
  }
}
@media (max-width: 1023px) {
  :root {
    --h1: calc((32 / var(--base-font-size)) * 1rem);
    --h2: calc((30 / var(--base-font-size)) * 1rem);
    --h3: calc((24 / var(--base-font-size)) * 1rem);
    --h4: calc((20 / var(--base-font-size)) * 1rem);
    --h5: calc((16 / var(--base-font-size)) * 1rem);
    --h6: calc((16 / var(--base-font-size)) * 1rem);
  }
}
@media (max-width: 767px) {
  :root {
    --h1: calc((25 / var(--base-font-size)) * 1rem);
    --h2: calc((22 / var(--base-font-size)) * 1rem);
    --h3: calc((20 / var(--base-font-size)) * 1rem);
  }
}
html {
  font-family: var(--font-sans);
  font-size: var(--base-font-size);
  color: var(--color-text);
  line-height: var(--line-height);
}
ul,
ol,
dl,
p,
blockquote,
table,
form,
pre,
h1,
h2,
h3,
h4,
h5,
h6,
address,
.fluid-width-video-wrapper {
  margin: 0 0 1rem;
}
ul:last-child,
ol:last-child,
dl:last-child,
p:last-child,
blockquote:last-child,
table:last-child,
form:last-child,
pre:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
address:last-child,
.fluid-width-video-wrapper:last-child {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.2;
}
h1,
h2 {
  font-weight: 900;
}
h1 {
  font-size: var(--h1);
  line-height: 1.1;
}
h2 {
  font-size: var(--h2);
}
h3 {
  font-size: var(--h3);
}
h4 {
  font-size: var(--h4);
}
h5 {
  font-size: var(--h5);
  line-height: 1.4;
}
h6 {
  font-size: var(--h6);
  margin-bottom: 0;
  line-height: 1.4;
}
.skip-link {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9999;
  padding: 10px 20px;
  background: white;
  color: black;
  font-size: 18px;
  border: 2px solid black;
}
.skip-link:not(:focus) {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
:root {
  --header-height: 100px;
  --header-offset: 0px;
  --header-bottom: calc(var(--header-height) + var(--header-offset));
  --logo-width: 230px;
  --logo-aspect: 3.333333;
}
html {
  padding-top: calc(var(--header-height) + var(--header-offset));
}
.header {
  position: fixed;
  left: 0;
  top: var(--header-offset);
  z-index: 8;
  width: 100%;
  height: var(--header-height);
  background: white;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}
.header_logo {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 0 var(--spacing);
  height: var(--header-height);
}
.header_logo img {
  display: block;
  width: var(--logo-width);
  margin-bottom: 0;
  height: auto;
}
.header_logo a {
  display: block;
}
@media (max-width: 1250px) {
  :root {
    --logo-width: 175px;
    --header-height: 80px;
  }
  .header_logo {
    padding-right: 0;
  }
}
@media (max-width: 1023px) {
  :root {
    --logo-width: 207px;
    --header-height: 100px;
  }
}
@media (max-width: 880px) {
  :root {
    --logo-width: 180px;
  }
}
@media (max-width: 800px) {
  :root {
    --logo-width: 147px;
  }
}
@media (max-width: 767px) {
  :root {
    --header-height: 80px;
  }
}
:root {
  --nav-height: var(--header-height);
  --nmcnav_text-size: 16px;
  --nmcnav_text-padding: 20px;
  --nmcnav_text-padding-v: 20px;
  --nav-offset: var(--header-bottom);
}
@media (min-width: 768px) {
  .nmcnav_mobile-search {
    display: none;
  }
  .nmcnav_mobile-toggle {
    display: none;
  }
  .nmcnav_primary {
    --nav-offset: calc(var(--header-height) + var(--header-offset));
  }
  .nmcnav_wrap {
    display: flex;
    padding: 0 var(--spacing) 0 calc((2 * var(--spacing)) + var(--logo-width));
    justify-content: space-between;
  }
  .nmcnav_mobile-close {
    display: none;
  }
  .nmcnav_ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
  }
  .nmcnav_li {
    position: relative;
  }
  .nmcnav_button {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    border-radius: 0;
    background: none;
  }
  .nmcnav_clickable {
    display: flex;
    align-items: center;
    height: var(--nav-height);
    cursor: pointer;
    text-decoration: none;
  }
  .nmcnav_text {
    position: relative;
    display: block;
    line-height: 1;
    font-family: var(--font-heading);
    font-size: var(--nmcnav_text-size);
    padding: var(--nmcnav_text-padding-v) var(--nmcnav_text-padding);
    color: var(--color-heading);
  }
  .nmcnav_button .nmcnav_text:after {
    content: '▾';
  }
  .nmcnav_button[aria-expanded="true"] .nmcnav_text:after {
    content: '▴';
  }
  .nmcnav_dropdown {
    display: none;
  }
  .nmcnav_button[aria-expanded="true"] + .nmcnav_dropdown {
    display: flex;
  }
  .nmcnav_button[aria-expanded="true"] .nmcnav_text:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 15px;
    width: calc(100% - (2 * var(--nmcnav_text-padding)));
    left: var(--nmcnav_text-padding);
    background: var(--color-yellow);
    height: 4px;
  }
  .nmcnav_button[aria-expanded="true"]:not(:focus) {
    outline: 0;
  }
  .nmcnav_dropdown.-mega {
    position: fixed;
    top: var(--nav-offset);
    left: 0;
    background: var(--color-navy);
    width: 100vw;
    padding: var(--spacingx2) var(--spacing);
  }
  .nmcnav_dropdown.-mega a {
    color: white;
  }
  .nmcnav_dropdown.-mega .feature {
    display: flex;
    width: 450px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: var(--spacing);
    margin-right: var(--spacing);
  }
  .nmcnav_dropdown.-mega .feature .imagewrap {
    width: 50%;
  }
  .nmcnav_dropdown.-mega .feature .text {
    width: 50%;
    padding-left: var(--spacingd2);
    color: white;
  }
  .nmcnav_dropdown.-mega .feature .text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
  }
  .nmcnav_dropdown.-mega .feature .text span {
    display: block;
    line-height: 1.4;
    font-size: 14px;
    opacity: 0.85;
  }
  .nmcnav_dropdown.-mega ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nmcnav_dropdown.-mega ul.long {
    column-count: 2;
    column-gap: 20px;
  }
  .nmcnav_dropdown.-mega ul a {
    display: block;
    line-height: 1.3;
    margin-bottom: 10px;
    text-decoration: none;
    opacity: 0.85;
  }
  .nmcnav_dropdown.-mega ul a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  .nmcnav_dropdown.-standard {
    position: absolute;
    top: var(--nav-height);
    background: var(--color-navy-dark);
    left: 0;
    width: 320px;
  }
  .nmcnav_dropdown.-standard a {
    color: white;
  }
  .nmcnav_close-dropdown {
    display: none;
  }
  .nmcnav_secondary {
    flex: 0 1 0;
    display: flex;
    flex-wrap: nowrap;
    padding-top: 25px;
  }
  .sn-item {
    display: block;
    width: 40px;
    height: 50px;
    border-radius: 50px;
    padding: 6px 2px;
    fill: #999;
  }
  .sn-item-tiktok {
    width: 30px;
  }
  .sn-item:focus,
  .sn-item:hover {
    fill: #444;
  }
  .sn-item.-search {
    width: 50px;
    padding: 15px;
    fill: white;
    margin-left: 5px;
    background: var(--color-teal);
  }
  .sn-item.-search svg {
    position: relative;
    top: -2px;
  }
  .sn-item.-search:focus,
  .sn-item.-search:hover {
    background: var(--color-teal-dark);
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  :root {
    --nmcnav_text-size: 14px;
    --nmcnav_text-padding-v: 20px;
    --nmcnav_text-padding: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1250px) {
  :root {
    --nmcnav_text-size: 14px;
  }
  .nmcnav_wrap {
    display: flex;
    padding: 0 var(--spacing) 0 calc((1.5 * var(--spacing)) + var(--logo-width));
  }
}
@media (min-width: 768px) and (max-width: 1150px) {
  :root {
    --nmcnav_text-size: 14px;
    --nmcnav_text-padding-v: 20px;
    --nmcnav_text-padding: 8px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --nav-height: calc(var(--header-height) - 36px);
    --nmcnav_text-size: 14px;
    --nmcnav_text-padding-v: 20px;
    --nmcnav_text-padding: 10px;
  }
  .nmcnav_primary {
    margin-top: 36px;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  :root {
    --nmcnav_text-size: 13px;
    --nmcnav_text-padding-v: 20px;
    --nmcnav_text-padding: 7px;
  }
}
@media (min-width: 768px) and (max-width: 1250px) {
  .nmcnav_dropdown.-mega {
    width: 100%;
    left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1250px) {
  .nmcnav_secondary {
    padding-top: 20px;
  }
  .sn-item {
    width: 30px;
    height: 36px;
    border-radius: 36px;
    padding: 5px 2px;
  }
  .sn-item.-search {
    width: 36px;
    padding: 8px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --logo-width: 207px;
    --header-height: 100px;
  }
  .header_wrap {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .header_logo {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .scrolled .header_logo {
    transform: translate3d(0, -103px, 0);
  }
  .nmcnav_secondary {
    position: absolute;
    top: 0;
    right: var(--spacing);
    padding-top: 0;
  }
  .sn-item.-search {
    background: none;
    fill: #333;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .nmcnav_mobile-toggle {
    display: block;
    border: none;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    border-radius: 0;
    background: none;
    position: absolute;
    --s: 50px;
    width: var(--s);
    height: var(--s);
    top: calc((var(--header-height) - var(--s)) / 2);
    right: var(--spacing);
    padding: 10px;
  }
  .nmcnav_mobile-toggle svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: var(--color-navy);
  }
  .nmcnav_mobile-toggle svg .close {
    display: none;
  }
  .navopen .nmcnav_mobile-toggle svg .open {
    display: none;
  }
  .navopen .nmcnav_mobile-toggle svg .close {
    display: block;
  }
  .nmcnav_mobile-search {
    display: block;
    border: none;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    border-radius: 0;
    background: none;
    position: absolute;
    --s: 50px;
    width: var(--s);
    height: var(--s);
    top: calc((var(--header-height) - var(--s)) / 2);
    right: calc(var(--spacing) + 50px);
    padding: 10px;
  }
  .nmcnav_mobile-search svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: var(--color-navy);
  }
  /* Visibility Toggle */
  .nmcnav_wrap {
    display: none;
  }
  .navopen .nmcnav_wrap {
    display: flex;
  }
  .nmcnav_wrap {
    position: fixed;
    top: var(--header-bottom);
    right: 0;
    width: 100%;
    height: calc(100vh - var(--header-bottom));
    padding: var(--spacingd2) var(--spacing);
    background: var(--color-navy-dark);
    flex-direction: column;
    justify-content: space-between;
  }
  .nmcnav_mobile-close {
    position: absolute;
    top: calc(-1 * var(--header-height));
    right: var(--spacing);
  }
  .nmcnav_primary {
    position: relative;
    z-index: 2;
    order: 0;
  }
  .nmcnav_ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .nmcnav_li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .nmcnav_button {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    border-radius: 0;
    background: none;
  }
  .nmcnav_clickable {
    display: flex;
    align-items: center;
    height: var(--nav-height);
    cursor: pointer;
    text-decoration: none;
    height: 50px;
  }
  .nmcnav_text {
    position: relative;
    display: block;
    line-height: 1;
    font-family: var(--font-heading);
    font-size: var(--nmcnav_text-size);
    padding: 0 5px;
    color: white;
  }
  .nmcnav_button .nmcnav_text:after {
    content: '▸';
  }
  .nmcnav_dropdown {
    display: none;
  }
  .nmcnav_button[aria-expanded="true"] + .nmcnav_dropdown {
    display: flex;
  }
  .nmcnav_dropdown {
    position: fixed;
    z-index: 3;
    top: var(--header-bottom);
    right: 0;
    width: 100%;
    height: calc(100% - var(--header-bottom));
    background: var(--color-navy-dark);
  }
  .nmcnav_dropdown.-mega {
    padding: var(--spacingd2) var(--spacing);
  }
  .nmcnav_dropdown.-mega .feature {
    display: none;
  }
  .nmcnav_dropdown.-mega ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .nmcnav_dropdown.-mega li {
    display: flex;
    align-items: center;
    height: var(--nav-height);
    height: 50px;
    width: 100%;
  }
  .nmcnav_dropdown.-mega li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .nmcnav_dropdown.-mega .nmcnav_close-dropdown button {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    border-radius: 0;
    background: none;
    color: white;
    opacity: 0.6;
  }
  .nmcnav_dropdown.-mega .nmcnav_close-dropdown button:before {
    content: ' ◂';
  }
  .nmcnav_dropdown.-mega a {
    position: relative;
    display: block;
    line-height: 1;
    font-family: var(--font-heading);
    font-size: var(--nmcnav_text-size);
    padding: 0 5px;
    color: white;
    width: 100%;
    text-decoration: none;
  }
  .nmcnav_secondary {
    position: relative;
    top: 0;
    right: 0;
    justify-content: center;
    display: flex;
  }
  .sn-item {
    width: 40px;
    height: 48px;
    fill: white;
  }
  .sn-item.-search {
    fill: white;
    width: 48px;
    padding: 10px;
  }
}
.footer {
  background: #eee;
  display: flex;
  flex-direction: column;
  font-size: 0.88rem;
}
/**
    * Logo Signup
    */
.footer__logosignup {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing) var(--spacing) 0 var(--spacing);
}
.footer__logosignup-logo {
  width: 175px;
}
.footer__logosignup-logo img {
  width: 100% !important;
  height: auto;
}
.footer__logosignup-signup {
  --r: 30px;
}
.footer__logosignup-signup form {
  display: flex;
}
.footer__logosignup-signup strong {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.2;
  font-size: var(--h4);
  line-height: calc(2 * var(--r));
}
.footer__logosignup-signup label {
  display: none;
}
.footer__logosignup-signup input,
.footer__logosignup-signup button {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  border-radius: 0;
  background: none;
  display: block;
  height: calc(2 * var(--r));
  line-height: 20px;
  padding: 20px;
  background: white;
}
.footer__logosignup-signup input {
  border-radius: var(--r) 0 0 var(--r);
  margin-left: 10px;
  width: 300px;
}
.footer__logosignup-signup button {
  border-radius: 0 var(--r) var(--r) 0;
  fill: var(--color-teal);
  cursor: pointer;
}
.footer__logosignup-signup button svg {
  display: block;
  width: 20px;
  height: 20px;
}
/**
    * Nav Row
    */
.footer__navrow {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing);
}
.footer__navrow-address {
  line-height: 1.2;
  color: var(--color-heading);
  white-space: nowrap;
}
.footer__navrow-address strong {
  font-weight: 600;
  font-family: var(--font-heading);
}
.footer__navrow-address a {
  color: var(--color-heading);
  text-decoration: none;
}
.footer__navrow-nav {
  flex-grow: 1;
  max-width: 800px;
  padding: 0 var(--spacing);
}
.footer__navrow-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__navrow-nav > ul {
  display: flex;
  justify-content: space-between;
}
.footer__navrow-nav a {
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.88rem;
}
.footer__navrow-nav a:hover {
  text-decoration: underline;
}
.footer__navrow-nav .primary {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.4;
  font-size: var(--h6);
  margin-bottom: 0;
}
.footer__navrow-nav .secondary {
  color: var(--color-text);
}
.footer__navrow-buttons {
  --s: 50px;
  width: calc(5 * var(--s));
}
.footer__navrow-buttons .social {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 10px;
  display: flex;
}
.footer__navrow-buttons .social li {
  width: var(--s);
}
.footer__navrow-buttons .social a {
  display: block;
  fill: var(--color-teal);
  width: var(--s);
  height: var(--s);
}
.footer__navrow-buttons .social a:hover {
  fill: var(--color-teal-dark);
}
.footer__navrow-buttons .social a.sn-item-tiktok {
  width: 40px;
}
/**
    * Credit
    */
.footer__credit {
  background: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  line-height: 1.4;
  padding: var(--spacing);
}
.footer__credit-associations {
  display: flex;
}
.footer__credit-associations > div {
  display: block;
  width: 150px;
  margin: 0 20px;
}
.footer__credit-associations > div img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__credit-nmc a {
  color: white;
  font-weight: bold;
}
@media (max-width: 1100px) {
  .footer__logosignup-signup form {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .footer__logosignup-signup form strong {
    width: 100%;
    text-align: right;
  }
  .footer__navrow {
    flex-wrap: wrap;
  }
  .footer__navrow-address {
    flex-grow: 1;
    order: 1;
  }
  .footer__navrow-buttons {
    min-width: calc(4 * var(--s));
    order: 2;
  }
  .footer__navrow-address {
    margin-bottom: var(--spacing);
  }
  .footer__navrow-nav {
    margin-top: var(--spacing);
    width: 100%;
    order: 3;
    padding: 0;
  }
  .footer__credit-associations a {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .footer__credit {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .footer__logosignup-signup {
    --r: 20px;
  }
  .footer__logosignup-signup form {
    justify-content: start;
  }
  .footer__logosignup-signup form strong {
    text-align: left;
  }
  .footer__logosignup-signup form input {
    margin-left: 0;
    width: 240px;
  }
  .footer__logosignup-signup form button {
    padding: 10px 20px;
  }
  .footer__logosignup-logo {
    display: none;
  }
  .footer__navrow-nav > ul {
    flex-wrap: wrap;
  }
  .footer__navrow-nav > ul > li {
    width: 50%;
    margin-bottom: var(--spacing);
  }
  .footer__navrow-buttons {
    --s: 40px;
  }
  .footer__credit {
    flex-direction: column;
    text-align: center;
  }
  .footer__credit > * {
    margin-bottom: 10px;
  }
  .footer__credit-associations a {
    width: 80px;
    margin: 0 10px;
  }
}
.toolbar-fixed,
.toolbar-vertical.toolbar-tray-open {
  --header-offset: 39px;
}
.toolbar-tray-open {
  --header-offset: 79px;
}
.buttonwrap {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  border-radius: 0;
  background: none;
  cursor: pointer;
}
.videobutton {
  position: relative;
}
.videobutton:after {
  content: '';
  cursor: pointer;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px 40px;
  background-image: url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEiIHdpZHRoPSIxNzA2LjY2NyIgaGVpZ2h0PSIxNzA2LjY2NyIgdmlld0JveD0iMCAwIDEyODAgMTI4MCI+PHBhdGggZD0iTTE1Ny42MzUgMi45ODRMMTI2MC45NzkgNjQwIDE1Ny42MzUgMTI3Ny4wMTZ6IiBmaWxsPSIjZmZmIi8+PC9zdmc+);
}
.btn {
  background-color: #333;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  max-width: 100%;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  text-align: center;
  line-height: normal;
  line-height: 20px;
  padding: 15px 40px;
  letter-spacing: 2px;
  border: 0;
  border-radius: 25px;
}
.btn:hover {
  background-color: #000;
  color: white;
}
.btn.--block {
  display: block;
}
.btn.--small {
  font-size: 14px;
  padding: 10px 30px;
  letter-spacing: 1px;
  border-radius: 30px;
}
.btn.--purple {
  background-color: var(--color-purple);
  color: white;
}
.btn.--purple:hover {
  background-color: var(--color-purple-dark);
  color: white;
}
.btn.--teal {
  background-color: var(--color-teal);
  color: white;
}
.btn.--teal:hover {
  background-color: var(--color-teal-dark);
  color: white;
}
.btn.--yellow {
  background-color: var(--color-yellow);
  color: var(--color-navy-dark);
}
.btn.--yellow:hover {
  background-color: var(--color-yellow-dark);
  color: var(--color-navy-dark);
}
.btn.--lime {
  background-color: var(--color-lime);
  color: var(--color-navy-dark);
}
.btn.--lime:hover {
  background-color: var(--color-lime-dark);
  color: var(--color-navy-dark);
}
.btn.--light {
  background-color: #d8d8d8;
  color: #333;
}
.btn.--light:hover {
  background-color: #bfbfbf;
  color: #333;
}
.btn.--outline-light {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}
.btn.--outline-light:hover {
  background-color: white;
  color: #333;
}
@media (max-width: 767px) {
  .btn {
    padding: 10px 30px;
    border-radius: 20px;
  }
}
.img {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.img img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.media-caption {
  padding: 10px;
  font-size: 0.9em;
}
.media-caption a {
  color: var(--color-navy);
}
.video {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.video iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.pager {
  margin-bottom: var(--spacingx2);
  text-align: center;
}
.pager__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pager__item {
  display: inline-block;
  padding: 0 calc(var(--spacing)/2);
  font-family: var(--font-heading);
  color: var(--color-heading);
}
.pager__item a {
  color: var(--color-heading);
}
.pager__item.is-active a {
  color: var(--color-purple);
}
.views-exposed-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: var(--spacing);
}
.views-exposed-form .bound--layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.views-exposed-form .button {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  border-radius: 0;
  background: none;
}
.views-exposed-form .form-item,
.views-exposed-form .button {
  margin: 0 var(--spacing) var(--spacing) 0;
}
.views-exposed-form label {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.4;
  font-size: var(--h6);
  margin-bottom: 0;
  text-transform: uppercase;
  margin-bottom: var(--spacingd2);
}
.views-exposed-form select {
  border-width: 0 0 1px 0;
  color: #ccc;
  height: 40px;
  line-height: 40px;
  padding: 0 40px 0 0;
  min-width: 250px;
}
.views-exposed-form select:focus,
.views-exposed-form select:valid {
  color: var(--color-heading);
}
.views-exposed-form .button {
  height: 40px;
  background: var(--color-navy);
  padding: 0 15px;
  color: white;
  font-family: var(--font-heading);
  text-transform: uppercase;
  cursor: pointer;
}
.webform-submission-form {
  margin: 0 auto;
}
.webform-submission-form .webform-required {
  font-style: italic;
  text-align: right;
}
.webform-submission-form .form-required:before {
  content: '*';
}
.webform-submission-form .form-item {
  display: block;
  margin-bottom: var(--spacingd2);
}
.webform-submission-form label {
  display: block;
  font-weight: bold;
  line-height: 1.2;
}
.webform-submission-form label.option {
  display: inline-block;
}
.webform-submission-form .description {
  font-style: italic;
  font-size: 13px;
}
.webform-submission-form .button {
  background-color: #333;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  max-width: 100%;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  text-align: center;
  line-height: normal;
  line-height: 20px;
  padding: 15px 40px;
  letter-spacing: 2px;
  border: 0;
  border-radius: 25px;
  cursor: pointer;
}
.webform-submission-form .button:hover {
  background-color: #000;
  color: white;
}
.nmc-block--local-tasks {
  position: relative;
  z-index: 500;
  margin-bottom: var(--spacing);
}
.nmc-block--local-tasks ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nmc-block--local-tasks li {
  display: inline-block;
  margin: 0 10px 0 0;
}
.nmc-block--local-tasks a {
  color: black;
}
.nmc-block--masthead {
  position: relative;
  margin-bottom: var(--spacingx2);
}
.nmc-block--masthead .masthead__body {
  width: 100vw;
  position: relative;
  padding-left: 0;
}
.nmc-block--masthead .masthead__image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 28.57142857%;
  overflow: hidden;
}
.nmc-block--masthead .masthead__image img {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  object-fit: cover;
}
.nmc-block--masthead .masthead__image:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 70%);
}
.nmc-block--masthead .masthead__content {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 600px;
  padding: var(--spacing) calc(2 * var(--spacing));
  color: white;
  line-height: 1.5;
}
.nmc-block--masthead .masthead__content h6 {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.5);
}
.nmc-block--masthead .masthead__content h1 {
  margin-bottom: 10px;
  color: white;
}
.nmc-block--masthead .masthead__content h1:last-child {
  margin-bottom: 0;
}
.nmc-block--masthead .masthead__content .masthead__button {
  padding-top: var(--spacing);
}
@media (max-width: 1250px) {
  .nmc-block--masthead .masthead__image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .nmc-block--masthead .masthead__image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    margin-bottom: var(--spacingx4);
  }
  .nmc-block--masthead .masthead__image img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transform: none;
  }
}
.nmc-block--masthead-simple {
  border-bottom: 1px solid #ddd;
  margin-bottom: var(--spacingx2);
}
.nmc-block--masthead-simple .background {
  padding: var(--spacingx2) 0 var(--spacing);
}
.nmc-block--masthead-simple .bound--narrow {
  text-align: center;
  height: 100%;
}
.nmc-block--masthead-simple .bound--layout {
  padding-top: var(--spacing);
}
.nmc-block--masthead-simple .event-external-url {
  padding-top: var(--spacing);
}
/*
.nmc-block--masthead.-stacked {

    .masthead__body {
        display: flex;
        flex-direction: column;
    }

    .masthead__content {
        position: relative;
        left: 0;
        bottom: 0;
        max-width: 100%;
    }

    @media(max-width: 900px) {
        .masthead__content {
            width: 100vw;
            max-width: 100vw;
        }
    }
    @media(max-width: 767px) {
        .masthead__image {
            margin-bottom: 0;
        }
    }
}
*/
#searchform {
  margin: 0 auto;
  display: block;
  padding: 0 10px;
  margin-bottom: var(--spacingx2);
}
#searchform div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
#searchform label {
  display: block;
  width: 100%;
}
#searchform input {
  border: none;
  padding: 0;
  -webkit-appearance: none;
  border-radius: 0;
  background: none;
  box-sizing: border-box;
  height: 60px;
  display: inline-block;
  margin: 0;
}
#searchform input[type=text] {
  border: 1px solid #ddd;
  padding: 5px 10px;
  border-right: 0;
  min-width: 240px;
  width: 75%;
}
#searchform input[type=submit] {
  background: var(--color-navy);
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.4;
  font-size: var(--h5);
  color: white;
  width: 80px;
  cursor: pointer;
}
.search-results--header {
  margin-bottom: var(--spacing);
}
.nmc-block--search-results {
  margin-bottom: var(--spacingx2);
}
.nmc-block--search-results a {
  color: var(--color-purple);
}
.nmc-block--search-results .search-results--result {
  margin-bottom: var(--spacing);
}
.nmc-block--search-results .search-results--result-title {
  margin-bottom: 0;
}
.nmc-block--staff-listing {
  margin-bottom: var(--spacingx2);
}
.nmc-block--staff-listing .group-title {
  font-weight: 700;
}
.nmc-block--status-messages {
  position: relative;
  z-index: 5px;
  margin-bottom: var(--spacing);
}
.nmc-block--status-messages a {
  color: white;
  text-decoration: underline;
}
.nmc-block--status-messages .status-message-group {
  padding: var(--spacing) var(--spacingx2);
  color: white;
  font-weight: 700;
}
.nmc-block--status-messages .status-message-group.-yellow {
  background: var(--color-yellow-dark);
}
.nmc-block--status-messages .status-message-group-status {
  background: #51233D;
}
.nmc-block--status-messages .status-message-group-alert {
  background: red;
}
.nmc-block--user {
  margin-left: 60px;
  margin-bottom: var(--spacingx2);
}
.nmc-block--user .form-item {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--spacingd2);
}
.nmc-block--user label {
  font-weight: bold;
  display: block;
}
.nmc-block--user .error {
  font-weight: normal;
  color: red;
}
.nmc-block--user .description {
  font-size: 90%;
  font-style: italic;
}
.nmc-block--webform {
  margin-bottom: var(--spacingx2);
}
.nmc-block--webform:last-child {
  margin-bottom: var(--spacingx2);
}
.nmc-block--webform img {
  max-width: 100%;
}
.nmc-block--webform a {
  color: var(--color-purple);
}
.nmc-block--image {
  position: relative;
  margin-bottom: var(--spacingx2);
}
.ncmoh-events-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  align-content: flex-start;
  margin: 0 0 1em 0;
}
.ncmoh-events-tabs li {
  flex-basis: 23%;
}
.ncmoh-events-tabs a {
  border: 1px solid #CCC;
  display: block;
  height: 40px;
  width: 100%;
  text-align: center;
}
.ncmoh-events-tabs li.active > a {
  font-weight: bold;
}
.ncmoh-events-pagination {
  padding: 0 0 2em 0;
}
.ncmoh-events-pagination a {
  display: inline-block;
  margin-right: 0.5em;
}
.ncmoh-events-pagination a svg {
  fill: white;
  display: inline-block;
  height: auto;
  width: 16px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}
.ncmoh-events-pagination a.--older svg {
  transform: rotate(180deg);
}
.nmc-block--google-cse {
  margin-bottom: var(--spacingx2);
}
.nmc-block--google-cse .google-cse.search-form {
  margin: 0 auto;
  display: block;
  padding: 0 10px;
  margin-bottom: var(--spacingx2);
  width: 100%;
}
.nmc-block--google-cse .google-cse.search-form .search-help-link {
  color: var(--color-purple) !important;
}
.nmc-block--google-cse .google-cse.search-form label {
  display: block;
  width: 100%;
}
.nmc-block--google-cse .google-cse.search-form input {
  border: none;
  padding: 0;
  -webkit-appearance: none;
  border-radius: 0;
  background: none;
  box-sizing: border-box;
  height: 60px;
  display: inline-block;
  margin: 0;
}
.nmc-block--google-cse .google-cse.search-form input.form-search {
  border: 1px solid #ddd;
  margin-bottom: var(--spacingd2);
  padding: 5px 10px;
  min-width: 240px;
  width: 75%;
}
.nmc-block--google-cse .google-cse.search-form input[type=submit] {
  background: var(--color-navy);
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.4;
  font-size: var(--h5);
  margin-right: 10px;
  color: white;
  width: 120px;
  cursor: pointer;
}
.nmc-block--google-cse .gsc-control-cse {
  padding: 0 !important;
}
.nmc-block--google-cse .gs-result {
  border-bottom: 1px solid #E9E9E9;
  padding-bottom: var(--spacing);
}
.nmc-block--google-cse .gs-result .gs-title,
.nmc-block--google-cse .gs-result .gs-title strong,
.nmc-block--google-cse .gs-result .gs-title b {
  font-size: var(--h3) !important;
  color: var(--color-purple) !important;
}
.nmc-block--google-cse .gs-result .gs-title b {
  color: var(--color-purple-dark) !important;
}
.nmc-block--google-cse .gs-result .gs-visibleUrl {
  margin-bottom: 10px !important;
  color: #154f59 !important;
  font-family: var(--font-sans) !important;
  font-size: 18px !important;
}
.nmc-block--google-cse .gs-result .gs-snippet {
  font-family: var(--font-sans) !important;
  font-size: 18px !important;
}
.nmc-block--google-cse .gs-result .gsc-thumbnail {
  display: none !important;
}
.nmc-block--google-cse .gsc-cursor-box {
  text-align: center !important;
}
.nmc-block--google-cse .gsc-cursor-page {
  display: inline-block !important;
  padding: 0 calc(var(--spacing)/2) !important;
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  color: var(--color-heading) !important;
}
.nmc-block--google-cse .gsc-cursor-page.gsc-cursor-current-page {
  color: var(--color-purple) !important;
}
.tile-wrap {
  display: flex;
  flex-wrap: wrap;
  --tilespacing: var(--spacingx2);
  --cols: 3;
  width: calc(100% + var(--tilespacing));
}
.tile-wrap .tile {
  width: calc((100% / var(--cols)) - var(--tilespacing));
  margin: 0 var(--tilespacing) var(--tilespacing) 0;
}
@media (max-width: 767px) {
  .tile-wrap {
    --cols: 2;
  }
}
@media (max-width: 600px) {
  .tile-wrap {
    --tilespacing: var(--spacing);
  }
}
@media (max-width: 450px) {
  .tile-wrap {
    --cols: 1;
  }
}
.tile {
  border: 1px solid #ddd;
  padding: var(--spacing);
}
.tile.--event {
  padding: 0;
}
.tile.--event a {
  text-decoration: none;
}
.tile.--event a:hover {
  text-decoration: underline;
}
.tile.--event .text {
  padding: var(--spacingd2);
}
.tile.--event h5 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.2;
  font-size: var(--h4);
  margin-bottom: var(--spacingd2);
}
.tile.--event time {
  color: var(--color-text);
  font-size: 15px;
}
.tile.--exhibit {
  position: relative;
  padding: 0;
}
.tile.--exhibit a {
  display: block;
  text-decoration: none;
}
.tile.--exhibit a img {
  transition: 250ms;
}
.tile.--exhibit a:hover img,
.tile.--exhibit a:focus img {
  transform: scale(1.1);
}
.tile.--exhibit a:hover .text h4,
.tile.--exhibit a:focus .text h4 {
  text-decoration: underline;
}
.tile.--exhibit .text {
  padding: var(--spacing);
}
.tile.--exhibit .text h4 {
  margin-bottom: 0;
}
.tile.--press-release {
  padding: var(--spacingd2);
}
.tile.--press-release a {
  text-decoration: none;
}
.tile.--press-release:hover a .title {
  text-decoration: underline;
}
.tile.--press-release .img {
  width: calc(100% + var(--spacing));
  margin: calc(-1 * var(--spacingd2)) 0 var(--spacingd2) calc(-1 * var(--spacingd2));
  background: whitesmoke;
}
.tile.--press-release .category {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacingd2);
}
.tile.--press-release .icon {
  width: 20px;
  height: 20px;
  fill: var(--color-purple);
  margin-right: 6px;
}
.tile.--press-release .catname {
  position: relative;
  top: 3px;
  line-height: 20px;
  height: 20px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tile.--press-release .title {
  color: var(--color-heading);
}
.tile.--press-release .subtitle {
  font-family: var(--font-sans);
  font-size: var(--smaller);
}
.tile.--press-release time {
  color: var(--color-text);
  font-size: var(--smaller);
}
@media (max-width: 600px) {
  .tile.--press-release .catname {
    top: 2px;
    letter-spacing: 0;
    font-size: 11px;
    font-weight: 400;
  }
}
@media (max-width: 450px) {
  .tile.--press-release .catname {
    letter-spacing: 1px;
    font-size: 12px;
  }
}
.tile.--site-page {
  position: relative;
  padding: 0;
  /*
    Original Design
    .bgimage {
        z-index: 1;
        position: relative;
        width: 100%;
        height: 0;
        overflow: hidden;
        padding-bottom: 133.33%;
        img { 
            .absoluteFullSize;
        }
    }
    .text {
        z-index: 2;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: var(--spacing);
        padding-top: var(--spacingx3);
        background-image: linear-gradient(180deg,rgba(0,0,0,0) 0, rgba(0,0,0,1) 100%);

        h4 {
            color: white;
        }
    }
    */
}
.tile.--site-page a {
  display: block;
  text-decoration: none;
}
.tile.--site-page .text {
  padding: var(--spacing);
}
.tile.--site-page .text h4 {
  margin-bottom: 0;
}
.person {
  border: 0;
  padding: 0;
  overflow: hidden;
}
.person-name {
  text-transform: uppercase;
  margin-bottom: 0;
}
.person-title {
  color: var(--color-text);
  font-style: italic;
  line-height: 1.3;
  margin-bottom: var(--spacingd2);
}
.person-phone {
  color: var(--color-text);
  text-decoration: none;
  display: block;
}
.person-email {
  color: var(--color-heading);
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tile-wrap .tile.--staff {
  width: 23%;
  margin-bottom: var(--spacing);
}
.tile-wrap .tile.--staff:nth-child(n) {
  margin-right: 2.66666667%;
}
.tile-wrap .tile.--staff:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 1023px) {
  .tile-wrap .tile.--staff {
    width: 31%;
  }
  .tile-wrap .tile.--staff:nth-child(n) {
    margin-right: 3%;
  }
  .tile-wrap .tile.--staff:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 760px) {
  .tile-wrap .tile.--staff {
    width: 49%;
  }
  .tile-wrap .tile.--staff:nth-child(n) {
    margin-right: 2%;
  }
  .tile-wrap .tile.--staff:nth-child(2n) {
    margin-right: 0;
  }
}
.tile.--video {
  padding: 0;
}
.tile.--video a {
  text-decoration: none;
  color: var(--color-text);
}
.tile.--video .image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.tile.--video .image img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.tile.--video .text {
  padding: var(--spacingd2);
}
.tile.--video h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.4;
  font-size: var(--h6);
  margin-bottom: 0;
  margin-bottom: 5px;
}
.tile.--video.active .image {
  opacity: 0.4;
}
.tile.--video.active a {
  cursor: none;
}
.video--full {
  margin-bottom: var(--spacing);
}
.background {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.--bg-white {
  --bg: white;
}
.--bg-gray {
  --bg: #f4f4f4;
}
.--bg-yellow {
  --bg: var(--color-yellow);
}
.--bg-lime {
  --bg: var(--color-lime);
}
.--bg-teal {
  --bg: var(--color-teal);
}
.--bg-navy,
.--bg-blue {
  --bg: var(--color-navy);
}
.--bg-purple {
  --bg: var(--color-purple);
}
.--bg-orange {
  --bg: var(--color-orange);
}
.--bg-blue {
  --bg: var(--color-blue);
}
.--bg-teal,
.--bg-navy,
.--bg-blue,
.--bg-purple,
.--bgnavy,
.--bg-orange,
.--bg-lime,
.--bg-orange {
  color: white;
  fill: white;
}
.--bg-teal .bg-text,
.--bg-navy .bg-text,
.--bg-blue .bg-text,
.--bg-purple .bg-text,
.--bgnavy .bg-text,
.--bg-orange .bg-text,
.--bg-lime .bg-text,
.--bg-orange .bg-text {
  color: white !important;
}
.--bg-teal p,
.--bg-navy p,
.--bg-blue p,
.--bg-purple p,
.--bgnavy p,
.--bg-orange p,
.--bg-lime p,
.--bg-orange p,
.--bg-teal a,
.--bg-navy a,
.--bg-blue a,
.--bg-purple a,
.--bgnavy a,
.--bg-orange a,
.--bg-lime a,
.--bg-orange a {
  color: white;
}
.--bg-yellow p,
.--bg-gray p,
.--bg-white p {
  color: var(--color-text) !important;
}
.--bg-yellow a,
.--bg-gray a,
.--bg-white a {
  color: var(--color-heading);
}
.--bg-logo-left,
.--bg-logo-right {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.05;
}
.--bg-logo-left svg,
.--bg-logo-right svg {
  object-fit: cover;
  height: 120%;
  width: 100%;
}
.--bg-logo-left {
  transform: scaleX(-1);
}
.bg-image {
  z-index: 0;
  opacity: 0.35;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.bg-image img {
  position: relative;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale() contrast(1.2);
}
.nmc-block--tile-slider {
  --text-width: 400px;
}
.nmc-block--tile-slider .background {
  padding: var(--spacingx4) 0;
}
.nmc-block--tile-slider.-motif .background {
  background: url(/themes/custom/ncmoh/images/events-plane.svg) right bottom no-repeat;
  background-size: auto 100%;
}
.nmc-block--tile-slider .block-content {
  display: flex;
  width: calc(100% - var(--spacingx2));
  margin-left: var(--spacingx2);
  padding: var(--spacing) 0;
}
.nmc-block--tile-slider .intro {
  width: var(--text-width);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nmc-block--tile-slider .nav {
  display: flex;
  width: 100%;
}
.nmc-block--tile-slider .nav a {
  margin-right: 50px;
}
.nmc-block--tile-slider .nav button {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  border-radius: 0;
  background: none;
  display: inline-block;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  padding: 20px;
  margin: 0 3px;
  fill: var(--color-teal-dark);
  background: whitesmoke;
}
.nmc-block--tile-slider .nav button svg {
  display: block;
}
.nmc-block--tile-slider .nav button:first-of-type svg {
  transform: scaleX(-1);
}
.nmc-block--tile-slider .tile-slides {
  width: calc(100% - var(--text-width));
}
.nmc-block--tile-slider .nmc-slide {
  width: 320px;
  background: white;
  border: 1px solid #ddd;
  margin: 0 var(--spacingd2);
}
@media (max-width: 767px) {
  .nmc-block--tile-slider .background {
    padding: var(--spacing) 0 var(--spacingx2) 0;
  }
  .nmc-block--tile-slider .block-content {
    flex-direction: column;
    margin-left: var(--spacing);
    width: calc(100% - var(--spacing));
  }
  .nmc-block--tile-slider .intro {
    margin-bottom: 15px;
    width: 100%;
  }
  .nmc-block--tile-slider .intro h2 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    font-weight: 900;
    line-height: 1.1;
    font-size: var(--h1);
    margin-bottom: 5px;
  }
  .nmc-block--tile-slider .intro p {
    margin-bottom: 10px;
  }
  .nmc-block--tile-slider .tile-slides {
    width: 100%;
  }
  .nmc-block--tile-slider .nav button {
    display: none;
  }
  .nmc-block--tile-slider .nmc-slide {
    width: 290px;
    margin: 0 var(--spacing) 0 0;
  }
}
.nmc-block--accordion {
  margin-bottom: var(--spacing);
}
.nmc-block--accordion .accordion__item {
  padding: var(--spacing) var(--spacingx2);
}
.nmc-block--accordion .accordion__item:nth-child(odd) {
  background-color: #f7f7f7;
}
.nmc-block--accordion .accordion__item-title {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.4;
  font-size: var(--h5);
  margin: 0;
}
.nmc-block--accordion .accordion__item-title button {
  all: inherit;
  border: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: var(--spacing);
}
.nmc-block--accordion .accordion__item-title button svg {
  height: 1em;
  width: 1em;
  margin-left: var(--spacing);
  fill: currentColor;
}
.nmc-block--accordion .accordion__item-title button:focus svg {
  outline: 2px solid;
}
.nmc-block--accordion .accordion__item-title [aria-expanded="true"] .vert {
  display: none;
}
.nmc-block--accordion .accordion__item-content {
  padding: var(--spacing);
  padding-top: 0;
  overflow: hidden;
}
.nmc-block--accordion .accordion__item-content p:last-child {
  margin-bottom: 0;
}
.nmc-block--accordion .accordion__item-content a {
  color: var(--color-heading);
}
.nmc-block--callout {
  margin-bottom: var(--spacingx2);
}
.nmc-block--callout .background {
  display: flex;
  align-items: top;
  padding: var(--spacingx2);
}
.nmc-block--callout .background h4 {
  margin-bottom: var(--spacingd2);
}
.nmc-block--callout .icon {
  position: relative;
  top: -3px;
  width: 32px;
  height: 32px;
  margin-right: var(--spacingd2);
}
.nmc-block--callout .icon svg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.nmc-block--callout p {
  margin-bottom: 0;
}
.nmc-block--carousel {
  position: relative;
}
.nmc-block--carousel .nmc-slider {
  scroll-snap-type: x mandatory;
}
.nmc-block--carousel .nmc-slide {
  scroll-snap-align: start;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 42.85714286%;
  overflow: hidden;
}
.nmc-block--carousel .slide-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: var(--spacingd2);
}
.nmc-block--carousel .slide-nav button {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  border-radius: 0;
  background: none;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid white;
  border-radius: 100%;
  margin: 3px 0;
  overflow: hidden;
  text-indent: -9999px;
  cursor: pointer;
}
.nmc-block--carousel .slide-nav button.active {
  background: white;
}
.carousel-slide,
.carousel-slide__image,
.carousel-slide__image img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.carousel-slide__image:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 70%);
}
.carousel-slide__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  padding: var(--spacing) 0 var(--spacingx2) var(--spacingx2);
  --color-heading: white;
}
h2.carousel-slide__title {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 900;
  line-height: 1.1;
  font-size: var(--h1);
}
.carousel-slide__content-subtitle {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.4;
  font-size: var(--h6);
  margin-bottom: 0;
  text-transform: uppercase;
}
#disable-animation {
  position: absolute;
  top: var(--spacing);
  right: var(--spacingx2);
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
#disable-animation:focus,
#disable-animation:hover {
  background: black;
}
.visitor-info {
  position: absolute;
  bottom: 0;
  right: 0;
  background: black;
}
.visitor-info .info {
  color: white;
}
.visitor-info .info .h6,
.visitor-info .info span {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.4;
  font-size: var(--h6);
  margin-bottom: 0;
  color: white;
  display: block;
  font-size: 16px;
}
.visitor-info .info strong.h6 {
  text-align: center;
  text-transform: uppercase;
  padding: var(--spacingd2) var(--spacing);
}
.visitor-info .info span {
  text-transform: none;
  margin-bottom: 0;
  padding: 0 var(--spacing);
  line-height: 20px;
  margin-bottom: 10px;
}
.visitor-info .info strong {
  font-weight: 600;
}
.visitor-info .info a {
  color: white;
  display: inline;
  text-decoration: none;
  font-weight: 600;
}
.visitor-info .info i,
.visitor-info .info strong {
  line-height: 20px;
  display: inline-block;
}
.visitor-info .info i {
  position: relative;
  top: 4px;
}
.visitor-info .info svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: white;
}
.visitor-info .button {
  display: block;
  margin-top: 15px;
  background: var(--color-yellow);
  color: black;
  text-align: center;
  padding: var(--spacingd2) 0;
  text-transform: uppercase;
  font-family: var(--font-heading);
  text-decoration: none;
}
.visitor-info .button svg {
  width: 15px;
  height: 15px;
}
@media (max-width: 1250px) {
  .nmc-block--carousel .nmc-slide {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
  }
}
@media (max-width: 900px) {
  .nmc-block--carousel .nmc-slide {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .nmc-block--carousel .slide-nav {
    padding-bottom: 25%;
  }
  .visitor-info {
    position: relative;
    margin: calc(var(--spacing) * -1) var(--spacing) 0 var(--spacing);
  }
}
@media (max-width: 479px) {
  .nmc-block--carousel {
    margin-bottom: var(--spacing);
  }
  .nmc-block--carousel .nmc-slider {
    overflow-x: scroll;
  }
  .nmc-block--carousel .nmc-slide {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
  }
  .nmc-block--carousel .slide-nav {
    padding: 0;
    top: 0;
    flex-direction: row;
    height: auto;
    width: 100%;
    margin-top: calc(100% - 20px - 10px);
  }
  .nmc-block--carousel .slide-nav button {
    margin: 2px 3px;
  }
  .carousel-slide__content {
    width: 100%;
  }
  .carousel-slide__image:after {
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  }
  .visitor-info {
    position: relative;
    margin: var(--spacing);
  }
  #disable-animation {
    display: none;
  }
}
.nmc-block--two-column-list {
  padding: var(--spacingx2);
  --column-width: 50%;
}
.nmc-block--two-column-list h2 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 900;
  line-height: 1.1;
  font-size: var(--h1);
}
.nmc-block--two-column-list .columns {
  display: flex;
}
.nmc-block--two-column-list .-one .column {
  --column-width: 100%;
}
.nmc-block--two-column-list .-two .column {
  --column-width: 50%;
}
.nmc-block--two-column-list .-three .column {
  --column-width: 33.333%;
}
.nmc-block--two-column-list .-four .column {
  --column-width: 25%;
}
.nmc-block--two-column-list .column {
  margin: 0 var(--spacing);
  width: var(--column-width);
}
.nmc-block--two-column-list .column:last-child {
  margin-right: 0;
}
.nmc-block--two-column-list .column:first-child {
  margin-left: 0;
}
.nmc-block--two-column-list ul {
  list-style-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 8"><rect transform="rotate(45,4,4)" x="1" y="1" width="6" height="6" fill="%23edcf3d" /></svg>');
}
.nmc-block--two-column-list ul li {
  padding-left: 5px;
  margin-bottom: var(--spacingd2);
  font-size: 110%;
}
.nmc-block--two-column-list a {
  color: var(--color-heading);
}
@media (max-width: 767px) {
  .nmc-block--two-column-list .columns {
    flex-direction: column;
  }
  .nmc-block--two-column-list .column {
    width: 100%;
    margin: 0;
  }
}
.nmc-block--donate {
  margin-bottom: var(--spacingx2);
  text-align: center;
}
.nmc-block--donate .background {
  padding: var(--spacingx2) 0;
}
.nmc-block--donate div.bg-text {
  margin-bottom: var(--spacing);
}
.nmc-block--donate .donate-link {
  display: inline-block;
  padding: var(--spacingd2);
  border-radius: 10px;
  background: white;
}
.nmc-block--donate .donate-link img {
  display: block;
}
.nmc-block--donate form button {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  padding: var(--spacingd2);
  border-radius: 10px;
  background: white;
}
.nmc-block--donate form button img {
  display: block;
}
.nmc-block--gallery-carousel {
  margin-top: calc(-2 * var(--spacing));
}
.nmc-block--gallery-carousel .background {
  padding: var(--spacingx2) 0;
}
.nmc-block--gallery-carousel.-motif .background {
  background: url(/themes/custom/ncmoh/images/events-plane.svg) right bottom no-repeat;
  background-size: auto 100%;
}
.nmc-block--gallery-carousel .block-content {
  display: flex;
  flex-direction: column;
  width: calc(100% - var(--spacingx4));
  margin-left: var(--spacingx4);
  padding: var(--spacing) 0;
}
.nmc-block--gallery-carousel .intro {
  padding-right: var(--spacingx4);
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing);
  align-items: flex-end;
}
.nmc-block--gallery-carousel .nav {
  display: flex;
}
.nmc-block--gallery-carousel .nav button {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  border-radius: 0;
  background: none;
  margin-left: var(--spacingd2);
  display: inline-block;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--color-purple);
  padding: 10px;
}
.nmc-block--gallery-carousel .nav button svg {
  display: block;
  fill: white;
}
.nmc-block--gallery-carousel .nav button:first-child svg {
  transform: scaleX(-1);
}
.nmc-block--gallery-carousel .tile-slides {
  width: 100%;
}
.nmc-block--gallery-carousel .nmc-slide {
  margin-right: var(--spacingx2);
}
.nmc-block--gallery-carousel .nmc-slide img {
  display: block;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .nmc-block--gallery-carousel {
    margin-top: 0;
  }
  .nmc-block--gallery-carousel .background {
    padding: var(--spacing) 0;
  }
  .nmc-block--gallery-carousel .block-content {
    margin-left: var(--spacing);
    width: calc(100% - var(--spacing));
  }
  .nmc-block--gallery-carousel .intro {
    margin-bottom: 15px;
    width: 100%;
    padding-right: var(--spacing);
  }
  .nmc-block--gallery-carousel .intro h2 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    font-weight: 900;
    line-height: 1.1;
    font-size: var(--h1);
    margin-bottom: 5px;
  }
  .nmc-block--gallery-carousel .intro p {
    margin-bottom: 10px;
  }
  .nmc-block--gallery-carousel .tile-slides {
    width: 100%;
  }
  .nmc-block--gallery-carousel .nav button {
    display: none;
  }
  .nmc-block--gallery-carousel .nmc-slide {
    margin-right: var(--spacing);
  }
  .nmc-block--gallery-carousel .nmc-slide img {
    width: 320px;
    height: 180px;
  }
}
.nmc-block--links-grid {
  margin: 0 0 var(--spacingx2) 0;
  --tileWidth: 25%;
}
.nmc-block--links-grid .background {
  padding: var(--spacingx4) 0;
}
.nmc-block--links-grid.home {
  padding: calc(8 * var(--spacing)) 0;
  margin: calc(-6 * var(--spacing)) 0 calc(-3 * var(--spacing));
}
.nmc-block--links-grid h2 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 900;
  line-height: 1.1;
  font-size: var(--h1);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}
.nmc-block--links-grid .tiles {
  display: flex;
  flex-wrap: wrap;
}
.nmc-block--links-grid .-tiles2 .tile {
  --tileWidth: 50%;
}
.nmc-block--links-grid .-tiles3 .tile {
  --tileWidth: 33.333%;
}
.nmc-block--links-grid .-tiles4 .tile {
  --tileWidth: 25%;
}
.nmc-block--links-grid .tile {
  position: relative;
  overflow: hidden;
  width: calc(var(--tileWidth) - var(--spacing));
  margin: var(--spacingd2);
}
.nmc-block--links-grid .tile.--image,
.nmc-block--links-grid .tile.--link {
  padding: 0;
}
.nmc-block--links-grid .tile.--style1 a.links-grid-link {
  display: block;
  position: relative;
}
.nmc-block--links-grid .tile.--style1 a.links-grid-link:after {
  box-sizing: border-box;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 8px solid var(--color-lime);
  transform: scale3d(1.2, 1.2, 1);
  transform-origin: 50% 50%;
  transition: transform 300ms, background 300ms;
}
.nmc-block--links-grid .tile.--style1 a.links-grid-link:hover:after,
.nmc-block--links-grid .tile.--style1 a.links-grid-link:focus:after {
  transform: scale3d(1, 1, 1);
  background: rgba(0, 0, 0, 0.7);
}
.nmc-block--links-grid .tile.--style1 .text {
  z-index: 2;
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translate(0, -50%);
  padding: 0 5px;
}
.nmc-block--links-grid .tile.--style1 .text .icon {
  margin: 0 auto 10px;
  width: 60px;
  height: 60px;
}
.nmc-block--links-grid .tile.--style1 .text .icon img {
  display: block;
}
.nmc-block--links-grid .tile.--style1 .text h3 {
  color: white;
  font-size: var(--h4);
}
.nmc-block--links-grid .tile.--style2 {
  border: none;
  overflow: visible;
}
.nmc-block--links-grid .tile.--style2 a.links-grid-link {
  text-decoration: none;
}
.nmc-block--links-grid .tile.--style2 .img {
  margin-bottom: var(--spacingd2);
}
.nmc-block--links-grid .tile.--style2 .img img {
  transition: 0.2s ease all;
}
.nmc-block--links-grid .tile.--style2:hover .img img {
  transform: scale(1.1);
}
.nmc-block--links-grid .tile.--style2 .text {
  z-index: 2;
  position: relative;
  top: 0;
  width: 0;
  text-align: left;
  transform: none;
  padding: 10px;
  width: 100%;
}
.nmc-block--links-grid .tile.--style2 .text .icon {
  display: none;
}
.nmc-block--links-grid .tile.--style2 .text h3 {
  font-size: var(--h5);
  margin-bottom: var(--spacingd2);
}
.nmc-block--links-grid .tile.--style2 .text p {
  color: #333;
  line-height: 1.2em;
}
@media (max-width: 767px) {
  .nmc-block--links-grid.home {
    padding: var(--spacingx4) 0;
    margin: calc(-3 * var(--spacing)) 0 calc(-3 * var(--spacing));
  }
  .nmc-block--links-grid .tile,
  .nmc-block--links-grid .-tiles2 .tile,
  .nmc-block--links-grid .-tiles3 .tile,
  .nmc-block--links-grid .-tiles4 .tile {
    --tileWidth: 50%;
  }
  .nmc-block--links-grid .text .icon {
    width: 40px;
    height: 40px;
  }
  .nmc-block--links-grid .text h3 {
    font-size: calc((15 / var(--base-font-size)) * 1rem);
  }
}
.nmc-block--looking-for {
  margin-bottom: var(--spacing);
}
.nmc-block--looking-for .picker {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 900;
  line-height: 1.1;
  font-size: var(--h1);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--spacing);
}
.nmc-block--looking-for .picker .subhead {
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.4;
  font-size: var(--h6);
  margin-bottom: 0;
  margin-bottom: var(--spacingd2);
}
.nmc-block--looking-for .picker .line {
  display: block;
  margin-bottom: 10px;
}
.nmc-block--looking-for .picker select {
  border-width: 0 0 1px 0;
  color: #888;
}
.nmc-block--looking-for .picker select:focus {
  color: var(--color-heading);
}
.nmc-block--looking-for .picker select:valid {
  color: var(--color-teal);
}
.nmc-block--looking-for .picker select option {
  font-size: 18px;
}
.nmc-block--looking-for .grid {
  display: flex;
}
.nmc-block--looking-for .col {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  margin-right: var(--spacingd2);
}
.nmc-block--looking-for .col:nth-child(2) {
  margin-right: 0;
  margin-left: var(--spacingd2);
}
.nmc-block--looking-for .col:nth-child(2) .--big {
  order: 4;
}
.nmc-block--looking-for .no-results {
  width: 100%;
  text-align: center;
}
.nmc-block--looking-for .tile {
  position: relative;
  background-color: var(--color-purple);
  width: calc(50% - var(--spacingd2));
  margin-bottom: var(--spacing);
}
.nmc-block--looking-for .tile:nth-child(2) {
  margin-right: var(--spacingd2);
}
.nmc-block--looking-for .tile:nth-child(3) {
  margin-left: var(--spacingd2);
}
.nmc-block--looking-for .tile a {
  display: block;
  width: 100%;
}
.nmc-block--looking-for .tile .img:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 300ms;
}
.nmc-block--looking-for .tile .text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  padding: 0 var(--spacing);
  display: flex;
  flex-direction: column;
}
.nmc-block--looking-for .tile .text .cat,
.nmc-block--looking-for .tile .text h4 {
  color: white;
}
.nmc-block--looking-for .tile .text .cat {
  order: 1;
}
.nmc-block--looking-for .tile .text h4 {
  order: 2;
}
.nmc-block--looking-for .tile .text .cat {
  text-transform: uppercase;
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: normal;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.nmc-block--looking-for .tile i {
  display: block;
  position: absolute;
  bottom: var(--spacingd2);
  right: var(--spacingd2);
  width: 44px;
  height: 44px;
  fill: white;
  padding: 13px;
  background: rgba(200, 200, 200, 0.3);
  border-radius: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 300ms;
}
.nmc-block--looking-for .tile i svg {
  display: block;
}
.nmc-block--looking-for .tile a:hover .img:after {
  background: rgba(0, 0, 0, 0.5);
}
.nmc-block--looking-for .tile a:hover i {
  transform: translate3d(5px, 0, 0);
}
.nmc-block--looking-for .tile.--image {
  padding: 0;
}
.nmc-block--looking-for .tile.--big {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.nmc-block--looking-for .tile.--big .text {
  padding: 0 var(--spacingx2);
}
.nmc-block--looking-for .tile.--big .text h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.2;
  font-size: var(--h3);
  color: white;
}
.nmc-block--looking-for .tile.--big i {
  width: 56px;
  height: 56px;
  padding: 18px;
}
@media (max-width: 767px) {
  .nmc-block--looking-for .grid {
    flex-direction: column;
  }
  .nmc-block--looking-for .grid .col {
    width: 100%;
    margin: 0;
  }
  .nmc-block--looking-for .grid .col:nth-child(2) .--big {
    order: 0;
  }
  .nmc-block--looking-for .tile .text h6 {
    font-size: calc((12 / var(--base-font-size)) * 1rem);
  }
  .nmc-block--looking-for .tile .text h4 {
    font-size: calc((15 / var(--base-font-size)) * 1rem);
  }
  .nmc-block--looking-for .tile i {
    display: none;
  }
}
.nmc-block--menu-children-grid {
  margin-bottom: var(--spacing);
}
.nmc-block--menu-children-grid .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
.nmc-block--menu-children-grid .tile {
  margin: var(--spacingd2);
  padding: 0;
  position: relative;
  width: calc(33% - var(--spacing));
}
.nmc-block--menu-children-grid .tile a {
  display: block;
  width: 100%;
}
.nmc-block--menu-children-grid .tile .img:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 300ms;
}
.nmc-block--menu-children-grid .tile .text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  padding: 0 var(--spacing);
}
.nmc-block--menu-children-grid .tile .text h6,
.nmc-block--menu-children-grid .tile .text h4 {
  color: white;
}
.nmc-block--menu-children-grid .tile .text h6 {
  text-transform: uppercase;
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: normal;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.nmc-block--menu-children-grid .tile i {
  display: block;
  position: absolute;
  bottom: var(--spacingd2);
  right: var(--spacingd2);
  width: 44px;
  height: 44px;
  fill: white;
  padding: 13px;
  background: rgba(200, 200, 200, 0.3);
  border-radius: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 300ms;
}
.nmc-block--menu-children-grid .tile i svg {
  display: block;
}
.nmc-block--menu-children-grid .tile a:hover .img:after {
  background: rgba(0, 0, 0, 0.5);
}
.nmc-block--menu-children-grid .tile a:hover i {
  transform: translate3d(5px, 0, 0);
}
.nmc-block--menu-children-grid .tile.--big .text {
  padding: 0 var(--spacingx2);
}
.nmc-block--menu-children-grid .tile.--big .text h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.2;
  font-size: var(--h3);
  color: white;
}
.nmc-block--menu-children-grid .tile.--big i {
  width: 56px;
  height: 56px;
  padding: 18px;
}
@media (max-width: 767px) {
  .nmc-block--menu-children-grid .grid {
    flex-direction: column;
  }
  .nmc-block--menu-children-grid .grid .col {
    width: 100%;
    margin: 0;
  }
  .nmc-block--menu-children-grid .grid .col:nth-child(2) .--big {
    order: 0;
  }
  .nmc-block--menu-children-grid .tile .text h6 {
    font-size: calc((12 / var(--base-font-size)) * 1rem);
  }
  .nmc-block--menu-children-grid .tile .text h4 {
    font-size: calc((15 / var(--base-font-size)) * 1rem);
  }
  .nmc-block--menu-children-grid .tile i {
    display: none;
  }
}
.nmc-block--quote .background {
  padding: var(--spacingx3);
}
.nmc-block--quote blockquote {
  position: relative;
  --w: 54px;
  --h: calc(var(--w) * 50/54);
  padding-top: calc(var(--spacing) + var(--h));
  color: white;
  text-align: center;
}
.nmc-block--quote blockquote:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  margin-left: calc(var(--w) / -2);
  width: var(--w);
  height: var(--h);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 50"><path fill="%23EDCF3D" fill-rule="evenodd" d="M21 0v12c-5 0-9 4-9 9v2h12v27H0V21C0 9 9 0 21 0zm30 0v12c-5 0-9 4-9 9v2h12v27H30V21C30 9 40 0 51 0z"/></svg>');
  background-size: cover;
}
.nmc-block--quote blockquote p {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 900;
  line-height: 1.1;
  font-size: var(--h1);
  color: white;
}
.nmc-block--quote blockquote cite {
  display: block;
  font-style: normal;
}
@media (max-width: 767px) {
  .nmc-block--quote {
    padding: var(--spacingx3) var(--spacing);
  }
  .nmc-block--quote blockquote {
    --w: 32px;
  }
}
.nmc-block--resource-links .resources {
  margin-bottom: var(--spacingx2);
}
.nmc-block--resource-links .resources:before {
  content: '';
  display: block;
  width: 1px;
  height: 1px;
}
.nmc-block--resource-links .resources.col-1 {
  column-count: 1;
}
.nmc-block--resource-links .resources.col-2 {
  column-count: 2;
}
.nmc-block--resource-links .resources.col-3 {
  column-count: 3;
}
.nmc-block--resource-links .resources.col-4 {
  column-count: 4;
}
@media (max-width: 767px) {
  .nmc-block--resource-links .resources {
    column-count: 1 !important;
  }
}
.nmc-block--resource-links .resources a {
  -webkit-column-break-inside: avoid;
  box-shadow: inset 0 0 1px white;
  position: relative;
  display: block;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  margin-top: -1px;
  line-height: 1.3;
  padding: 10px 10px 10px 30px;
  color: var(--color-purple);
  font-weight: bold;
}
.nmc-block--resource-links .resources svg {
  position: absolute;
  top: 12px;
  left: 10px;
  height: 16px;
  width: 12px;
  fill: gray;
}
.nmc-block--resource-links .resources a:hover svg {
  fill: black;
}
.nmc-block--side-by-side {
  z-index: 2;
  position: relative;
  margin: var(--spacingx2) 0;
}
.nmc-block--side-by-side .background {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nmc-block--side-by-side.-motif {
  background: url(/themes/custom/ncmoh/images/side-by-side-plane.svg) left var(--spacingx4) no-repeat;
  background-size: auto 80%;
}
.nmc-block--side-by-side:last-child {
  margin-bottom: 0;
}
.nmc-block--side-by-side .content {
  padding: var(--spacingx2);
  width: 65%;
}
.nmc-block--side-by-side .content h2 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 900;
  line-height: 1.1;
  font-size: var(--h1);
}
.nmc-block--side-by-side .image {
  width: 35%;
  border-radius: 100%;
  overflow: hidden;
}
.nmc-block--side-by-side .image img {
  background: #fafafa;
}
.nmc-block--side-by-side.right .image {
  order: 2;
}
@media (max-width: 767px) {
  .nmc-block--side-by-side .background {
    display: block;
  }
  .nmc-block--side-by-side .image {
    float: left;
    width: 180px;
    margin: 10px 10px 10px -20px;
  }
  .nmc-block--side-by-side.right .image {
    float: right;
    margin: 10px -20px 10px 10px;
  }
  .nmc-block--side-by-side .content {
    all: unset;
    display: block;
    margin-left: 0;
    padding: var(--spacing);
  }
}
.nmc-block--wysiwyg,
.nmc-block--text,
.nmc-block--text-callout {
  margin-bottom: var(--spacingx2);
}
.nmc-block--wysiwyg .--bg,
.nmc-block--text .--bg,
.nmc-block--text-callout .--bg {
  padding: var(--spacingx4) 0;
}
.nmc-block--wysiwyg:last-child,
.nmc-block--text:last-child,
.nmc-block--text-callout:last-child {
  margin-bottom: var(--spacingx2);
}
.nmc-block--wysiwyg img,
.nmc-block--text img,
.nmc-block--text-callout img {
  max-width: 100%;
}
.nmc-block--wysiwyg a,
.nmc-block--text a,
.nmc-block--text-callout a {
  color: var(--color-navy);
}
.nmc-block--text-with-sidebar {
  margin: var(--spacingx2) 0;
}
.nmc-block--text-with-sidebar > div {
  display: flex;
  align-items: flex-start;
}
.nmc-block--text-with-sidebar .callout {
  order: 2;
  max-width: 320px;
  margin-left: var(--spacingx3);
  padding-left: var(--spacing);
  --selectedColor: var(--colorYellow);
  border-left: 6px solid var(--selectedColor);
  fill: var(--selectedColor);
  color: var(--color-heading);
}
.nmc-block--text-with-sidebar .callout.-teal {
  --selectedColor: var(--color-teal);
}
.nmc-block--text-with-sidebar .callout.-navy {
  --selectedColor: var(--color-navy);
}
.nmc-block--text-with-sidebar .callout.-purple {
  --selectedColor: var(--color-purple);
}
.nmc-block--text-with-sidebar .callout.-yellow {
  --selectedColor: var(--color-yellow);
}
.nmc-block--text-with-sidebar .callout.-lime {
  --selectedColor: var(--color-lime);
}
.nmc-block--text-with-sidebar i {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: var(--spacingd2);
}
@media (max-width: 767px) {
  .nmc-block--text-with-sidebar > div {
    flex-direction: column;
  }
  .nmc-block--text-with-sidebar .callout {
    order: 1;
    margin: var(--spacing) 0 var(--spacing) -6px;
    padding-left: var(--spacing);
    max-width: 100%;
  }
  .nmc-block--text-with-sidebar .text {
    order: 2;
  }
}
.nmc-block--video-feature {
  margin-bottom: var(--spacing);
}
.nmc-block--video-feature .background {
  padding: var(--spacingx2);
}
.nmc-block--video-feature .text-wrapper {
  display: flex;
  align-items: flex-start;
}
.nmc-block--video-feature .text {
  width: 40%;
  padding-right: var(--spacingd2);
}
.nmc-block--video-feature .video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.nmc-block--video-feature .text-wrapper .video {
  position: relative;
  width: 60%;
  height: 0;
  padding-bottom: 33.75%;
  overflow: hidden;
}
.nmc-block--video-feature .text-wrapper .video iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .nmc-block--video-feature .background {
    padding: var(--spacing);
  }
  .nmc-block--video-feature .text-wrapper {
    flex-direction: column;
    align-items: start;
  }
  .nmc-block--video-feature .text,
  .nmc-block--video-feature .video {
    width: 100%;
  }
  .nmc-block--video-feature .text {
    margin-bottom: var(--spacing);
  }
}
.nmc-block--video-list {
  margin-bottom: var(--spacingx2);
}
.nmc-block--video-list .active-video .video-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.nmc-block--video-list .active-video .video-wrap button,
.nmc-block--video-list .active-video .video-wrap img,
.nmc-block--video-list .active-video .video-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.nmc-block--video-list .active-video .text {
  padding: var(--spacing);
}
.nmc-block--video-list .active-video .text h4 {
  margin-bottom: var(--spacingd2);
}
.nmc-block--responsive-image {
  z-index: 2;
  position: relative;
  margin: var(--spacingx2) 0;
}
