/* Border Radius Mixin */
/* Placeholder Colors */
/* Header Adjustment */
/* Create Responsive Type */
.staff-headshot-card {
  --primary-color: salmon;
  --primary-text-color: black;
  --secondary-color: purple;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 240px;
      flex-basis: 240px; }
  .staff-headshot-card.alignment--horizontal a.link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
    .staff-headshot-card.alignment--horizontal a.link .flexible-image {
      width: 180px;
      min-width: 180px; }
    .staff-headshot-card.alignment--horizontal a.link > .content {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .staff-headshot-card.alignment--horizontal a.link .name {
      text-align: left; }
  .staff-headshot-card a.link {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    position: relative;
    margin: 5px;
    padding: 5px;
    color: var(--primary-text-color);
    -webkit-box-shadow: 0 0 0 0 #333333;
            box-shadow: 0 0 0 0 #333333;
    background-color: var(--primary-color);
    overflow: hidden;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
    .staff-headshot-card a.link:hover {
      -webkit-box-shadow: 0 2px 6px -2px #333333;
              box-shadow: 0 2px 6px -2px #333333; }
      .staff-headshot-card a.link:hover .cta-icon {
        opacity: 1; }
    .staff-headshot-card a.link > .content {
      padding: 15px; }
    .staff-headshot-card a.link .component--flexible-image {
      height: 275px; }
    .staff-headshot-card a.link .name {
      text-align: center;
      line-height: 1.1;
      font-weight: 700; }
      .staff-headshot-card a.link .name {
        font-size: 18px ; }
    .staff-headshot-card a.link .position {
      margin-top: 5px;
      text-align: center;
      line-height: 1.1;
      font-weight: 400; }
      .staff-headshot-card a.link .position {
        font-size: 15px ; }
    .staff-headshot-card a.link .additional {
      display: block;
      margin-top: 5px;
      text-align: center;
      font-weight: 300; }
      .staff-headshot-card a.link .additional {
        font-size: 13px ; }
    .staff-headshot-card a.link .separator {
      width: 50%;
      height: 2px;
      margin: 10px auto;
      background-color: var(--secondary-color); }
    .staff-headshot-card a.link a {
      color: var(--secondary-color);
      opacity: 1;
      -webkit-transition: 300ms all linear;
      transition: 300ms all linear; }
      .staff-headshot-card a.link a:hover {
        opacity: 0.6; }
      .staff-headshot-card a.link a.name {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
    .staff-headshot-card a.link .contact {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .staff-headshot-card a.link .contact .icon {
        margin-right: 5px; }
    .staff-headshot-card a.link .cta-icon {
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: 2;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-right: 5px;
      padding-bottom: 5px;
      padding-top: 15px;
      padding-left: 15px;
      opacity: 0;
      -webkit-transition: all 300ms ease-in-out;
      transition: all 300ms ease-in-out; }
      .staff-headshot-card a.link .cta-icon .circle {
        position: absolute;
        bottom: -10px;
        right: -9px;
        z-index: -1;
        width: 110%;
        height: 110%;
        border-radius: 100%;
        background-color: var(--secondary-color);
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out; }
      .staff-headshot-card a.link .cta-icon i {
        font-size: 20px;
        color: white; }
  .staff-headshot-card .flexible-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 200px;
    overflow: hidden;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
    .staff-headshot-card .flexible-image .image {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 1;
      -webkit-transition: all 300ms ease-in-out;
      transition: all 300ms ease-in-out; }

.staff-snapshot-card {
  --background-color: var(--primary-color);
  --text-color: var(--primary-text-color);
  --box-shadow-color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 250px;
      flex-basis: 250px;
  overflow-x: auto;
  /* NOTE - this is to fix unwrappable words which causes overflowing blocks, but might not be desired behavior */ }
  .staff-snapshot-card.color-scheme--default {
    --primary-color: lightgray;
    --primary-text-color: #333333; }
  .staff-snapshot-card > .content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 5px;
    padding: 25px 15px;
    color: var(--text-color);
    -webkit-box-shadow: 0 0 0 0 var(--box-shadow-color);
            box-shadow: 0 0 0 0 var(--box-shadow-color);
    background-color: var(--background-color);
    -webkit-transition: 300ms all linear;
    transition: 300ms all linear; }
    .staff-snapshot-card > .content:hover {
      -webkit-box-shadow: 0 3px 8px 0 var(--box-shadow-color);
              box-shadow: 0 3px 8px 0 var(--box-shadow-color); }
    .staff-snapshot-card > .content .name {
      text-align: center;
      font-size: 25px;
      line-height: 27px;
      font-weight: 700; }
    .staff-snapshot-card > .content .position {
      margin-top: 5px;
      text-align: center; }
    .staff-snapshot-card > .content .separator {
      width: 50%;
      height: 2px;
      margin: 10px auto;
      background-color: var(--text-color); }
    .staff-snapshot-card > .content a {
      color: var(--text-color);
      opacity: 1;
      -webkit-transition: 300ms all linear;
      transition: 300ms all linear; }
      .staff-snapshot-card > .content a:hover {
        opacity: 0.6; }
      .staff-snapshot-card > .content a.name {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
    .staff-snapshot-card > .content .icon {
      margin-right: 3px; }

.component--ism-staff-members-slider {
  --primary-color: #c878a4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  background-color: var(--primary-color); }
  .component--ism-staff-members-slider.color-scheme--invex-blue {
    --primary-color: #568DF8; }
  .component--ism-staff-members-slider.color-scheme--invex-red {
    --primary-color: #DC3232; }
  .component--ism-staff-members-slider.color-scheme--invex-green {
    --primary-color: #46B450; }
  .component--ism-staff-members-slider.color-scheme--invex-yellow {
    --primary-color: #FFBA00; }
  .component--ism-staff-members-slider .staff-lightbox {
    display: none; }
  .component--ism-staff-members-slider .wrapper {
    width: 1300px;
    max-width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
    margin-top: -60px;
    background-color: var(--primary-color); }
    .component--ism-staff-members-slider .wrapper > .heading {
      margin: 40px 10px;
      line-height: 1.1;
      font-weight: 700;
      letter-spacing: 2px;
      text-align: center;
      color: white; }
      .component--ism-staff-members-slider .wrapper > .heading {
        font-size: 40px ; }
  .component--ism-staff-members-slider .slider {
    margin-left: -10px;
    margin-right: -10px; }
  .component--ism-staff-members-slider .staff-member {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 519px;
    margin: 10px;
    padding: 20px;
    position: relative;
    opacity: 1;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
    .component--ism-staff-members-slider .staff-member > .background {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      z-index: 1;
      overflow: hidden;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .component--ism-staff-members-slider .staff-member > .background .filter {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 2;
        opacity: 0;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out; }
      .component--ism-staff-members-slider .staff-member > .background img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(5%, black), color-stop(80%, black), to(transparent));
        -webkit-mask: linear-gradient(to bottom, black 5%, black 80%, transparent 100%);
                mask: -webkit-gradient(linear, left top, left bottom, color-stop(5%, black), color-stop(80%, black), to(transparent));
                mask: linear-gradient(to bottom, black 5%, black 80%, transparent 100%);
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out; }
    .component--ism-staff-members-slider .staff-member:hover .filter {
      opacity: 1; }
    .component--ism-staff-members-slider .staff-member:hover .overlay {
      -webkit-transform: translateX(0px) translateY(-5px) scale(1);
              transform: translateX(0px) translateY(-5px) scale(1); }
    .component--ism-staff-members-slider .staff-member .overlay {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      z-index: 3;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      padding: 18px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
      font-size: 1.5rem;
      font-weight: 300;
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      color: white;
      -webkit-transition: all 300ms ease-in-out;
      transition: all 300ms ease-in-out; }
      .component--ism-staff-members-slider .staff-member .overlay .top, .component--ism-staff-members-slider .staff-member .overlay .bottom, .component--ism-staff-members-slider .staff-member .overlay .name, .component--ism-staff-members-slider .staff-member .overlay .position {
        display: block; }
      .component--ism-staff-members-slider .staff-member .overlay .name {
        position: relative;
        color: white;
        text-transform: uppercase;
        font-size: 1.25rem;
        line-height: 24px;
        font-weight: 700;
        margin: 0; }
      .component--ism-staff-members-slider .staff-member .overlay .position {
        font-size: 14px;
        line-height: 1.6;
        color: white; }
      .component--ism-staff-members-slider .staff-member .overlay .biography {
        font-size: 18px;
        letter-spacing: 0;
        line-height: 1.27;
        font-weight: 400;
        color: white; }
  .component--ism-staff-members-slider .slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40px;
    height: auto;
    -webkit-transform: none;
            transform: none; }
    .component--ism-staff-members-slider .slick-arrow:before {
      font-size: 30px;
      opacity: 0.5;
      color: white;
      -webkit-transition: all 300ms ease-in-out;
      transition: all 300ms ease-in-out; }
    .component--ism-staff-members-slider .slick-arrow.slick-prev {
      left: -30px; }
    .component--ism-staff-members-slider .slick-arrow.slick-next {
      right: -30px; }
    .component--ism-staff-members-slider .slick-arrow:hover:before {
      opacity: 1; }
  .component--ism-staff-members-slider .slick-dots {
    bottom: -24px;
    opacity: 1;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
    .component--ism-staff-members-slider .slick-dots li:only-child {
      display: none !important; }
    .component--ism-staff-members-slider .slick-dots li button:before {
      -webkit-transition: all 300ms ease-in-out;
      transition: all 300ms ease-in-out; }
  .component--ism-staff-members-slider .pagination {
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .component--ism-staff-members-slider .pagination ul.slick-dots {
      position: initial;
      left: initial;
      bottom: initial;
      right: initial;
      top: initial;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background-color: rgba(0, 0, 0, 0);
      -webkit-transition: all 300ms ease-in-out;
      transition: all 300ms ease-in-out; }
      .component--ism-staff-members-slider .pagination ul.slick-dots li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 10px;
        height: 10px;
        margin: 0;
        padding: 10px;
        background-color: rgba(0, 0, 0, 0);
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out; }
        .component--ism-staff-members-slider .pagination ul.slick-dots li:hover {
          background-color: rgba(51, 51, 51, 0.2); }
        .component--ism-staff-members-slider .pagination ul.slick-dots li span {
          display: inline-block;
          width: 10px;
          height: 10px;
          border-radius: 500px;
          background-color: white;
          opacity: 0.3;
          -webkit-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out; }
        .component--ism-staff-members-slider .pagination ul.slick-dots li.slick-active span {
          opacity: 1; }

.featherlight .featherlight-content > .featherlight-close {
  display: none;
  background: none; }

.featherlight .featherlight-content .staff-lightbox.featherlight-inner {
  --background-color: #E9E9E8;
  --text-color: var(--primary-color);
  --body-text-color: #333333;
  --image-border-color: var(--primary-color);
  --name-color: var(--primary-color);
  --position-color: var(--secondary-color);
  --separator-color: var(--primary-color);
  --link-text-color: var(--primary-color);
  --link-icon-color: var(--primary-color);
  position: relative;
  width: 1000px;
  max-width: 100%;
  padding: 40px;
  background-color: var(--background-color); }
  .featherlight .featherlight-content .staff-lightbox.featherlight-inner .close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    font-size: 30px;
    font-weight: 700;
    color: #333;
    opacity: 1;
    cursor: pointer;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
    .featherlight .featherlight-content .staff-lightbox.featherlight-inner .close-icon:hover {
      opacity: 0.8; }
  .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .image {
      width: 200px;
      min-width: 200px;
      margin-right: 25px;
      padding: 5px;
      border-radius: 5px;
      background-color: var(--image-border-color); }
      .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .image img {
        width: 100%;
        height: auto;
        border-radius: 2px; }
    .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
      .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .text .name {
        margin: 0;
        font-size: 20px;
        line-height: 22px;
        color: var(--name-color); }
      .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .text .position {
        margin: 0;
        line-height: 20px;
        font-style: italic;
        color: var(--position-color); }
      .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .text .separator {
        width: 200px;
        height: 5px;
        margin: 10px 0;
        background-color: var(--separator-color); }
      .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .text a.contact {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-decoration: none;
        opacity: 1;
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out; }
        .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .text a.contact:hover {
          opacity: 0.8; }
        .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .text a.contact:not(:last-child) {
          margin-bottom: 10px; }
        .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .text a.contact .icon {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          width: 40px;
          margin-right: 5px; }
          .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .text a.contact .icon i {
            font-size: 30px;
            color: var(--link-icon-color); }
        .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .text a.contact .text {
          font-size: 16px;
          color: var(--link-text-color); }
  .featherlight .featherlight-content .staff-lightbox.featherlight-inner .body {
    font-size: 16px;
    line-height: 20px;
    color: var(--body-text-color); }

.component--staff-headshot-cards {
  background-color: white; }
  .component--staff-headshot-cards.alignment--horizontal .staff-headshot-cards {
    display: grid;
    grid-gap: 0;
    grid-template-columns: repeat(auto-fill, 400px); }
  .component--staff-headshot-cards .flexible-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 200px;
    overflow: hidden;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
    .component--staff-headshot-cards .flexible-image .image {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 1;
      -webkit-transition: all 300ms ease-in-out;
      transition: all 300ms ease-in-out; }
  .component--staff-headshot-cards > .container {
    margin: 40px 20px; }
  .component--staff-headshot-cards .staff-headshot-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .component--staff-headshot-cards .staff-headshot-cards > .staff-lightbox {
      display: none; }

.featherlight .featherlight-content .staff-lightbox {
  padding: 20px;
  padding-top: 25px;
  background: white;
  position: relative; }
  .featherlight .featherlight-content .staff-lightbox .close-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    opacity: 1;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
    .featherlight .featherlight-content .staff-lightbox .close-icon:hover {
      opacity: 0.7; }
  .featherlight .featherlight-content .staff-lightbox .head .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .featherlight .featherlight-content .staff-lightbox .head .image img {
      max-width: 500px; }
  .featherlight .featherlight-content .staff-lightbox .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .featherlight .featherlight-content .staff-lightbox .contact .icon {
      margin-right: 5px; }

.component--staff-snapshot-cards {
  background-color: white; }
  .component--staff-snapshot-cards.cards-per-row--4 > .container .staff-snapshot-cards .staff-snapshot-card {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%; }
  .component--staff-snapshot-cards.cards-per-row--5 > .container .staff-snapshot-cards .staff-snapshot-card {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%; }
  .component--staff-snapshot-cards.cards-per-row--6 > .container .staff-snapshot-cards .staff-snapshot-card {
    -ms-flex-preferred-size: 16.6%;
        flex-basis: 16.6%; }
  .component--staff-snapshot-cards > .container {
    margin: 40px 20px; }
    .component--staff-snapshot-cards > .container .staff-snapshot-cards {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: stretch;
          -ms-flex-align: stretch;
              align-items: stretch;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }

html body .component--staff-table {
  --primary-color: #568DF8; }
  html body .component--staff-table.color-scheme--custom table th {
    color: var(--primary-text-color) !important;
    background-color: var(--primary-color) !important; }
  html body .component--staff-table table th {
    color: var(--primary-text-color);
    background-color: var(--primary-color); }
  html body .component--staff-table table th.heading {
    text-align: left; }
  html body .component--staff-table td .name {
    font-size: 25px;
    line-height: 27px;
    font-weight: 700; }
  html body .component--staff-table .name-position .position {
    margin-top: 5px; }
  html body .component--staff-table .icon {
    margin-right: 3px; }
  html body .component--staff-table .contact {
    white-space: nowrap; }
  html body .component--staff-table .phone-email {
    white-space: nowrap; }
    html body .component--staff-table .phone-email .contact {
      display: block; }

.component--staff-snapshot-directory.component--staff-snapshot-cards {
  max-width: 1200px;
  margin: 0 auto; }
  .component--staff-snapshot-directory.component--staff-snapshot-cards > .container {
    margin: 40px 0; }
  .component--staff-snapshot-directory.component--staff-snapshot-cards .departments-label span {
    display: block;
    font-weight: 700;
    margin-bottom: 5px; }
  .component--staff-snapshot-directory.component--staff-snapshot-cards .staff-snapshot-cards {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    .component--staff-snapshot-directory.component--staff-snapshot-cards .staff-snapshot-cards .department {
      width: 100%; }
    .component--staff-snapshot-directory.component--staff-snapshot-cards .staff-snapshot-cards .card-collection {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: stretch;
          -ms-flex-align: stretch;
              align-items: stretch;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
    .component--staff-snapshot-directory.component--staff-snapshot-cards .staff-snapshot-cards .staff-snapshot-card {
      min-width: 240px;
      width: 240px;
      max-width: 240px;
      min-height: 245px; }
  .component--staff-snapshot-directory.component--staff-snapshot-cards .select-css {
    display: block;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 700;
    color: #444;
    line-height: 1.3;
    padding: .6em 1.4em .5em .8em;
    width: 100%;
    max-width: 100%;
    /* useful when width is set to anything other than 100% */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    border: 1px solid #aaa;
    -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
            box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
    border-radius: .5em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    /* note: bg image below uses 2 urls. The first is an svg data uri for the arrow icon, and the second is the gradient.
			for the icon, if you want to change the color, be sure to use `%23` instead of `#`, since it's a url. You can also swap in a different svg icon or an external image reference

		*/
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e5e5e5));
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
    background-repeat: no-repeat, repeat;
    /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
    background-position: right .7em top 50%, 0 0;
    /* icon size, then gradient */
    background-size: .65em auto, 100%; }
  .component--staff-snapshot-directory.component--staff-snapshot-cards .select-css::-ms-expand {
    display: none; }
  .component--staff-snapshot-directory.component--staff-snapshot-cards .select-css:hover {
    border-color: #888; }
  .component--staff-snapshot-directory.component--staff-snapshot-cards .select-css:focus {
    border-color: #aaa;
    -webkit-box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
            box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222;
    outline: none; }
  .component--staff-snapshot-directory.component--staff-snapshot-cards .select-css option {
    font-weight: normal; }

.component--staff-headshot-directory.component--staff-headshot-cards {
  max-width: 1200px;
  margin: 0 auto; }
  .component--staff-headshot-directory.component--staff-headshot-cards > .container {
    margin: 40px 0; }
  .component--staff-headshot-directory.component--staff-headshot-cards .departments-label span {
    display: block;
    font-weight: 700;
    margin-bottom: 5px; }
  .component--staff-headshot-directory.component--staff-headshot-cards .department {
    width: 100%;
    margin-top: 32px;
    margin-bottom: 0; }
  .component--staff-headshot-directory.component--staff-headshot-cards .staff-headshot-cards {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .component--staff-headshot-directory.component--staff-headshot-cards .select-css {
    display: block;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 700;
    color: #444;
    line-height: 1.3;
    padding: .6em 1.4em .5em .8em;
    width: 100%;
    max-width: 100%;
    /* useful when width is set to anything other than 100% */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    border: 1px solid #aaa;
    -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
            box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
    border-radius: .5em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    /* note: bg image below uses 2 urls. The first is an svg data uri for the arrow icon, and the second is the gradient.
			for the icon, if you want to change the color, be sure to use `%23` instead of `#`, since it's a url. You can also swap in a different svg icon or an external image reference

		*/
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e5e5e5));
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
    background-repeat: no-repeat, repeat;
    /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
    background-position: right .7em top 50%, 0 0;
    /* icon size, then gradient */
    background-size: .65em auto, 100%; }
  .component--staff-headshot-directory.component--staff-headshot-cards .select-css::-ms-expand {
    display: none; }
  .component--staff-headshot-directory.component--staff-headshot-cards .select-css:hover {
    border-color: #888; }
  .component--staff-headshot-directory.component--staff-headshot-cards .select-css:focus {
    border-color: #aaa;
    -webkit-box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
            box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222;
    outline: none; }
  .component--staff-headshot-directory.component--staff-headshot-cards .select-css option {
    font-weight: normal; }

.component--staff-table-directory {
  max-width: 1200px;
  margin: 0 auto; }
  .component--staff-table-directory > .container {
    margin: 40px 0; }
  .component--staff-table-directory .departments-label span {
    display: block;
    font-weight: 700;
    margin-bottom: 5px; }
  .component--staff-table-directory .staff-snapshot-cards {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    .component--staff-table-directory .staff-snapshot-cards .department {
      width: 100%; }
    .component--staff-table-directory .staff-snapshot-cards .staff-snapshot-card {
      min-width: 240px;
      width: 240px;
      max-width: 240px;
      min-height: 245px; }
  .component--staff-table-directory .select-css {
    display: block;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 700;
    color: #444;
    line-height: 1.3;
    padding: .6em 1.4em .5em .8em;
    width: 100%;
    max-width: 100%;
    /* useful when width is set to anything other than 100% */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    border: 1px solid #aaa;
    -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
            box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
    border-radius: .5em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    /* note: bg image below uses 2 urls. The first is an svg data uri for the arrow icon, and the second is the gradient.
			for the icon, if you want to change the color, be sure to use `%23` instead of `#`, since it's a url. You can also swap in a different svg icon or an external image reference

		*/
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e5e5e5));
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
    background-repeat: no-repeat, repeat;
    /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
    background-position: right .7em top 50%, 0 0;
    /* icon size, then gradient */
    background-size: .65em auto, 100%; }
  .component--staff-table-directory .select-css::-ms-expand {
    display: none; }
  .component--staff-table-directory .select-css:hover {
    border-color: #888; }
  .component--staff-table-directory .select-css:focus {
    border-color: #aaa;
    -webkit-box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
            box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222;
    outline: none; }
  .component--staff-table-directory .select-css option {
    font-weight: normal; }
  @media screen and (min-width: 300px) {
          .staff-headshot-card a.link .name {
            font-size: calc(18px + 4 * ((100vw - 300px) / 1140)) ; }
          .staff-headshot-card a.link .position {
            font-size: calc(15px + 3 * ((100vw - 300px) / 1140)) ; }
          .staff-headshot-card a.link .additional {
            font-size: calc(13px + 3 * ((100vw - 300px) / 1140)) ; }
          .component--ism-staff-members-slider .wrapper > .heading {
            font-size: calc(40px + 20 * ((100vw - 300px) / 1140)) ; } }
  @media screen and (min-width: 1440px) {
          .staff-headshot-card a.link .name {
            font-size: 22px ; }
          .staff-headshot-card a.link .position {
            font-size: 18px ; }
          .staff-headshot-card a.link .additional {
            font-size: 16px ; }
          .component--ism-staff-members-slider .wrapper > .heading {
            font-size: 60px ; } }
  @media (min-width: 576px) {
    .staff-snapshot-card {
      min-width: 195px; } }
  @media (max-width: 575px) {
    .staff-snapshot-card {
      -ms-flex-preferred-size: 100% !important;
          flex-basis: 100% !important;
      max-width: 300px; } }
  @media (max-width: 599px) {
      .component--ism-staff-members-slider .wrapper {
        max-width: calc(100% - 40px); }
      .component--ism-staff-members-slider .slick-arrow {
        display: none !important; } }
  @media (max-width: 767px) {
          .component--ism-staff-members-slider .pagination ul.slick-dots li {
            width: 20px;
            padding: 10px 5px; }
  .featherlight .featherlight-content {
    max-width: 92vw !important; }
    .featherlight .featherlight-content .staff-lightbox.featherlight-inner {
      padding: 45px 15px 15px; }
      .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .image {
          width: 300px;
          margin-right: 0;
          margin-bottom: 20px; }
        .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .text {
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; }
      .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .contact .text {
        font-size: 12px !important; }
      .featherlight .featherlight-content .staff-lightbox.featherlight-inner .body {
        margin-top: 30px; }
        .featherlight .featherlight-content .staff-lightbox .head .image img {
          max-width: 100%; }
    html body .component--staff-table table .show-on-desktop {
      display: none; }
    html body .component--staff-table table .hide-on-mobile {
      display: none; } }
  @media (max-width: 499) {
        .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .image {
          width: 100% !important; }
      .featherlight .featherlight-content .staff-lightbox.featherlight-inner .head .contact .icon {
        margin-right: 0 !important; } }
  @media (min-width: 768px) {
    html body .component--staff-table table .hide-on-desktop {
      display: none; }
    html body .component--staff-table table .show-on-mobile {
      display: none; } }
  @media (max-width: 649px) {
        html body .component--staff-table .phone-email .contact {
          display: inline-block; }
          html body .component--staff-table .phone-email .contact .text {
            display: none; }
          html body .component--staff-table .phone-email .contact .icon {
            font-size: 30px; }
        html body .component--staff-table .phone-email .contact:not(:first-child) {
          margin-left: 5px; } }
  @media (min-width: 650px) {
        html body .component--staff-table .phone-email .contact:not(:first-child) {
          margin-top: 5px; } }
  @media (max-width: 991px) {
    .component--staff-snapshot-directory.component--staff-snapshot-cards {
      margin: 0 10px; }
    .component--staff-headshot-directory.component--staff-headshot-cards {
      margin: 0 10px; }
    .component--staff-table-directory {
      margin: 0 10px; } }
  @media (max-width: 1439px) {
      .component--staff-headshot-directory.component--staff-headshot-cards .staff-headshot-cards {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }

/*# sourceMappingURL=invex-staff-members.min.css.map */
