/*css varibales*/
:root {
  --primary-color: #1cabe2;
  --primary-hover:#0e95ca;
  --regular-gray1:#333;
  --regular-gray2:#404040;
  --regular-gray3:#595959;
  --regular-gray4:#757575;
  --regular-gray5:#c1c1c1;
  --regular-gray6:#f1f1f1;
  --regular-gray7:#f8f8f8;
  --regular-gray8:#d8d8d8;
  --regular-gray9:#ced4da;
  --regular-accent-action: #e34e09;
  --regular-accent-action-hover: #c94304;
  --white:#fff;
  --black:#000;
  --primary-light:#c5effc;
  --blue1:#2159a8;
  --blue2:#1a4b8f;
  --regular-bkgd:#d3dbdf;
  --hc-color:#0f5c85;
  --hc-hover: #0c4462;
  --hc-color-secondary:#2159a5;
  --hc-regular-accent-action: #9c350d;
  --hc-regular-accent-action-hover: #822500;
  --hc-accent-alert: #a12e26;
  --primary-font: 'Roboto',sans-serif;
  --primary-regular: 400;
  --primary-medium: 500;
  --primary-bold: 700;
  --primary-black: 900;
  --secondary-font: 'PT Serif',serif;
  --secondary-regular: 400;
  --secondary-bold: 800;
  --shadow-hover: 0 3px 3px -2px rgba(0, 0, 0, 0.1),0 3px 4px 0 rgba(0, 0, 0, 0.14),0 1px 8px 0 rgba(0, 0, 0, 0.12);
  --shadow-active: 0 5px 5px -3px rgba(0, 0, 0, 0.12),0 8px 10px 1px rgba(0, 0, 0, 0.14),0 3px 14px 2px rgba(0, 0, 0, 0.12);
  --outline-btn-shadow-hover: 0px 1px 8px 0px rgba(0, 0, 0, 0.12),0px 3px 4px 0px rgba(0, 0, 0, 0.14),0px 3px 3px -2px rgba(0, 0, 0, 0.10);
  --outline-btn-shadow-active: 0px 3px 14px 2px rgba(0, 0, 0, 0.25),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 5px 5px -3px rgba(0, 0, 0, 0.12);
  --card-hover-shadow: 0px 3px 14px 2px rgba(0, 0, 0, 0.12), 0px 3px 4px 1px rgba(0, 0, 0, 0.14), 0px 5px 5px -3px rgba(0, 0, 0, 0.12);
  --drop-shadow: drop-shadow(0px 1px 8px rgba(0, 0, 0, 0.12)) drop-shadow(0px 3px 4px rgba(0, 0, 0, 0.14)) drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.10));
  --inset-shadow: inset 0 1px 3px 0 rgba(0,0,0,0.25);
  --box-shadow2: 0 1px 3px 0 rgba(0,0,0,0.25);
  --box-shadow3: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
  --box-shadow4: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  --box-shadow5: 2px -3px 3px 0px rgba(0, 0, 0, 0.15);
  --box-shadow6: 0px 1px 2px -1px rgba(0, 0, 0, 0.25);
  --box-shadow7: 2px 2px 4px -1px rgba(0, 0, 0, 0.75);
  --drop-shadow1:drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
  --drop-shadow2:drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
  --card-height: 525px;
  --bg-tint1: rgba(33, 89, 168, 90%);
  --bg-tint2: rgba(0, 0, 0, 0.6);
  /*survey colors*/
  --sc1: #a3e7f5;
  --sc2: #ffee00;
  --sc3: #ffc20e;
  --sc4: #80bd41;
  --sc5: #c9c9c9;
  /*dataset colors*/
  --ds1:#d9e3f2;
  --ds-h1:var(--blue1);
  --ds2:#d9f2e5;
  --ds-h2:#42b577;
  --ds3:#fcd5d3;
  --ds-h3:#bd605b;
  --ds4:#fcd5d3;
  --ds-h4:#ee9058;
  --ds5:#fff3cf;
  --ds-h5:var(--sc3);
  --ds6:#e1d2e3;
  --ds-h6:#884b90;
  --ds7:#d2eef9;
  --ds-h7:#1cabe2;
  --light-blue:#0e95Ca33; }

.high-contrast-mode {
  --primary-color:var(--hc-color);
  --primary-hover:var(--hc-hover);
  --blue1: var(--hc-color-secondary);
  --regular-accent-action:var(--hc-regular-accent-action);
  --regular-accent-action-hover:var(--hc-regular-accent-action-hover); }

.featured-style-2 {
  margin-bottom: 60px;
  --column-count: 4; }
  .featured-style-2 .view-content {
    display: grid;
    grid-template-columns: repeat(var(--column-count), 1fr);
    grid-gap: 30px; }
    .featured-style-2 .view-content .views-row {
      border-radius: 5px;
      overflow: hidden;
      background-color: var(--blue1);
      box-shadow: var(--outline-btn-shadow-hover);
      position: relative;
      padding-bottom: 48px;
      transition: all 0.25s ease-in-out; }
      .featured-style-2 .view-content .views-row .img-wrap {
        overflow: hidden; }
      .featured-style-2 .view-content .views-row img {
        transition: transform 1s ease; }
      .featured-style-2 .view-content .views-row:hover {
        box-shadow: var(--card-hover-shadow); }
        .featured-style-2 .view-content .views-row:hover img {
          transform: scale(1.06); }
      .featured-style-2 .view-content .views-row:nth-child(even) {
        background-color: var(--primary-color); }
  .featured-style-2 .featured-img {
    overflow: hidden;
    height: 200px; }
    .featured-style-2 .featured-img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .featured-style-2 .item-video {
    height: 200px; }
    .featured-style-2 .item-video iframe {
      width: 100%;
      height: 100%;
      background-color: var(--black); }
  .featured-style-2 .featured-title {
    font-size: 1.375rem;
    line-height: 1.27;
    display: -webkit-box;
    -webkit-line-clamp: unset;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--white); }
    @media (max-width: 767px) {
      .featured-style-2 .featured-title {
        font-size: 1.25rem;
        line-height: 1.35; } }
    @media (max-width: 1199px) {
      .featured-style-2 .featured-title {
        -webkit-line-clamp: 2; } }
    @media (max-width: 767px) {
      .featured-style-2 .featured-title {
        -webkit-line-clamp: unset; } }
    .featured-style-2 .featured-title + .featured-desc {
      margin-top: 8px; }
  .featured-style-2 .featured-desc {
    display: -webkit-box;
    -webkit-line-clamp: unset;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.375; }
    @media (max-width: 1199px) {
      .featured-style-2 .featured-desc {
        -webkit-line-clamp: 3; } }
    @media (max-width: 767px) {
      .featured-style-2 .featured-desc {
        -webkit-line-clamp: unset; } }
  .featured-style-2 .featured-desc-white {
    color: var(--white); }
  .featured-style-2 .featured-content {
    padding: 20px 12px; }
  .featured-style-2 .featured-button {
    position: absolute;
    bottom: 10px;
    left: 0;
    padding: 0 12px; }
  .featured-style-2 .view-footer {
    display: flex;
    justify-content: center;
    margin-top: 50px; }

.cards-load-more .view-content {
  display: grid;
  grid-template-columns: repeat(var(--column-count), 1fr);
  grid-gap: 30px; }

.block-common .featured-style-2 {
  margin-bottom: 0; }

.white-cards .view-content .views-row {
  background: var(--white) !important; }
.white-cards .featured-title,
.white-cards .featured-desc {
  color: var(--regular-gray1); }

.mics-cards-block {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--regular-bkgd); }
  @media (max-width: 767px) {
    .mics-cards-block {
      padding-top: 50px;
      padding-bottom: 50px; } }

.mics-cards-view {
  --column-count: 4; }
  .mics-cards-view .item-type {
    background: url("/sites/mics/themes/custom/mics/components/images/icons/page-introduction/monitor-white.svg") no-repeat left center;
    color: var(--white);
    background-size: 12px;
    min-height: 16px;
    margin-bottom: 16px;
    line-height: 1.33;
    background-position-y: 0px; }
  .mics-cards-view .view-header {
    font-size: 2.125rem;
    line-height: 1.23;
    font-weight: var(--primary-regular);
    color: var(--regular-gray1);
    margin-bottom: 50px;
    text-align: center; }
    @media (max-width: 767px) {
      .mics-cards-view .view-header {
        font-size: 1.625rem;
        line-height: 1.26;
        margin-bottom: 40px; } }
  .mics-cards-view .view-content {
    display: grid;
    grid-template-columns: repeat(var(--column-count), 1fr);
    grid-gap: 30px; }
  .mics-cards-view .views-row {
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--blue1);
    box-shadow: var(--outline-btn-shadow-hover);
    position: relative;
    padding-bottom: 48px;
    transition: all 0.25s ease-in-out; }
    .mics-cards-view .views-row .img-wrap {
      overflow: hidden; }
    .mics-cards-view .views-row img {
      transition: transform 1s ease; }
    .mics-cards-view .views-row:hover {
      box-shadow: var(--card-hover-shadow); }
      .mics-cards-view .views-row:hover img {
        transform: scale(1.06); }
    .mics-cards-view .views-row:nth-child(even) {
      background-color: var(--white); }
      .mics-cards-view .views-row:nth-child(even) .mics-title {
        color: var(--regular-gray1); }
      .mics-cards-view .views-row:nth-child(even) .mics-desc,
      .mics-cards-view .views-row:nth-child(even) .item-type {
        color: var(--regular-gray1); }
      .mics-cards-view .views-row:nth-child(even) .item-type {
        background: url("/sites/mics/themes/custom/mics/components/images/icons/page-introduction/monitor.svg") no-repeat left 0;
        background-size: 12px; }
  .mics-cards-view .mics-img {
    overflow: hidden; }
    .mics-cards-view .mics-img img {
      width: 100%;
      object-fit: cover; }
    @media (max-width: 767px) {
      .mics-cards-view .mics-img img {
        height: 200px; } }
    .mics-cards-view .mics-img + .mics-content .mics-title a {
      font-size: 1.5rem;
      line-height: 1.33; }
  .mics-cards-view .mics-title {
    margin-bottom: 8px;
    font-size: 1.375rem;
    line-height: 1.27;
    color: var(--white); }
    @media (max-width: 767px) {
      .mics-cards-view .mics-title {
        font-size: 1.25rem;
        line-height: 1.35; } }
  .mics-cards-view .mics-title a {
    font-size: 1.375rem;
    line-height: 1.27;
    color: var(--white); }
    @media (max-width: 767px) {
      .mics-cards-view .mics-title a {
        font-size: 1.25rem;
        line-height: 1.35; } }
  .mics-cards-view .mics-desc {
    line-height: 1.375;
    color: var(--white); }
  .mics-cards-view .mics-content {
    padding: 20px 12px; }
  .mics-cards-view .mics-btn {
    position: absolute;
    bottom: 10px;
    left: 0;
    padding: 0 12px; }

.experts-card .view-content .views-row {
  padding-bottom: 0 !important; }

.flex-cards .view-content {
  display: flex;
  flex-wrap: wrap; }
  .flex-cards .view-content .views-row {
    width: 25%;
    max-width: 270px; }

.center-card .view-content {
  justify-content: center; }

.work-shop-cards {
  --workshop-card-count:3; }
  .work-shop-cards.workshop-cards-four {
    --workshop-card-count:4; }
  .work-shop-cards .view-content {
    display: grid;
    grid-template-columns: repeat(var(--workshop-card-count), 1fr);
    grid-gap: 30px; }
  .work-shop-cards .views-row {
    border-bottom: 1px solid var(--regular-gray5);
    padding-bottom: 20px;
    min-height: var(--card-height); }

.work-shop-graphic {
  border: 1px solid var(--regular-gray5);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  height: 200px; }

.work-shop-content {
  color: var(--regular-gray1); }

.work-shop-card-title {
  margin-bottom: 15px;
  font-size: 1.375rem;
  line-height: 1.27; }
  @media (max-width: 767px) {
    .work-shop-card-title {
      font-size: 1.25rem;
      line-height: 1.35; } }
  .work-shop-card-title a {
    color: var(--regular-gray1); }
    .work-shop-card-title a:hover {
      text-decoration: underline; }

.work-shop-card-desc {
  line-height: 1.375; }

.work-shop-button {
  display: flex;
  justify-content: center;
  padding-top: 70px; }

.work-shop-graphic img {
  transition: all 0.25s ease-in-out; }

.workshop-link-wrap:hover .work-shop-graphic img {
  transform: scale(1.02); }

.landing-page .work-shop-cards .views-row {
  min-height: auto; }

.featured-style-2 .listing-label-value {
  margin-top: 10px; }
  .featured-style-2 .listing-label-value.listing-label-white .listing-label-value-field {
    color: var(--white); }
  .featured-style-2 .listing-label-value .listing-label-value-field {
    color: var(--regular-gray1);
    font-size: 1rem;
    line-height: 1.375;
    display: flex;
    flex-wrap: wrap; }
    .featured-style-2 .listing-label-value .listing-label-value-field:not(:last-child) {
      margin-bottom: 10px; }
    .featured-style-2 .listing-label-value .listing-label-value-field.icon-label-style {
      flex-wrap: nowrap; }
      .featured-style-2 .listing-label-value .listing-label-value-field.icon-label-style .listing-label-field {
        flex-shrink: 0;
        margin: 2px 6px 0 0;
        padding-right: 0px; }
    .featured-style-2 .listing-label-value .listing-label-value-field .listing-label-field {
      font-weight: var(--primary-bold);
      padding-right: 5px; }
    .featured-style-2 .listing-label-value .listing-label-value-field .listing-value-field {
      font-weight: var(--primary-regular); }

/*# sourceMappingURL=cards.css.map */
