@font-face {
  font-family: 'Minion Pro';
  src: url('../woff2/minionpro-regular.woff2') format('woff2'),
    url('../woff/minionpro-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Book 400 */
@font-face {
  font-family: 'Centra No1';
  src: url('../woff2/centrano1-book.woff2') format('woff2'),
    url('../woff/centrano1-book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Centra No1';
  src: url('../woff2/centrano1-bookitalic.woff2') format('woff2'),
    url('../woff/centrano1-bookitalic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Medium 500 */
@font-face {
  font-family: 'Centra No1';
  src: url('../woff2/centrano1-medium.woff2') format('woff2'),
    url('../woff/centrano1-medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Centra No1';
  src: url('../woff2/centrano1-mediumitalic.woff2') format('woff2'),
    url('../woff/centrano1-mediumitalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* Bold 600*/
@font-face {
  font-family: 'Centra No1';
  src: url('../woff2/centrano1-bold.woff2') format('woff2'),
    url('../woff/centrano1-bold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Centra No1';
  src: url('../woff2/centrano1-bolditalic.woff2') format('woff2'),
    url('../woff/centrano1-bolditalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* Extrabold 800*/
@font-face {
  font-family: 'Centra No1';
  src: url('../woff2/centrano1-extrabold.woff2') format('woff2'),
    url('../woff/centrano1-extrabold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Centra No1';
  src: url('../woff2/centrano1-extrabolditalic.woff2') format('woff2'),
    url('../woff/centrano1-extrabolditalic.woff') format('woff');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* Black */
@font-face {
  font-family: 'Centra No1';
  src: url('../woff2/centrano1-black.woff2') format('woff2'),
    url('../woff/centrano1-black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


:root {
/* Colors */
  --pillar-blue: #0081bc;
  --pillar-red: #9f2b3b;
  --pillar-yellow: #d2a930;
  --pillar-light-blue: #f2f9fb;
  --pillar-light-red: #fae8dc;
  --pillar-light-yellow: #fdf6e6;

  --pillar-gray: #595a59;
  --pillar-light-gray: #f1f9fa;
}

.pillar-red {
  color: var(--pillar-red);
}
.pillar-yellow {
  color: var(--pillar-yellow);
}
.pillar-blue {
  color: var(--pillar-blue);
}
.pillar-gray {
  color: var(--pillar-gray);
}

.page-id-34704 #content {
  /* margin-top: 40px; */
  padding: 60px 0px 60px;
  height: 100%;
  width: 100%;

  background:
    radial-gradient(
      circle at 40% 30%,                 /* gentle softening in the upper area */
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.8) 35%,
      transparent 70%
    ),
    linear-gradient(
      to bottom right,
      #ffffff 0%,                        /* pure white top edge */
      #ffffff 25%,                       /* keep top area white */
      #e8f0fa 45%,                       /* light pastel blue emerges mid-way */
      #fdfbf7 70%,                       /* creamy transition tone */
      #f8e3d2 100%                       /* soft peach at bottom right */
    );
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.mason-table.intro-section {
  font-size: 16px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 350px;
  align-items: center;
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

@media( max-width: 1024px) {
  .mason-table.intro-section {
    grid-template-columns: 1fr;
  }

  .cta-wrapper {
    max-width: 400px;
    margin: 40px auto;
  }
}

.mason-table.intro-section .intro-section-header {
  grid-column: 1 / -1;
}

.mason-table.intro-section .intro-section-header .intro-section-title {
  font-family: 'Centra No1', sans-serif;
  font-size: 1.2rem;
  color: var(--pillar-gray);
  margin: 24px;
  font-weight: 800;
  text-align: center;
}

.mason-table.intro-section .intro-section-content p {
  font-family: 'Centra No1', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--pillar-gray);
  margin-bottom: 1rem;
}

.mason-table.intro-section .intro-section-content .stronger {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.1rem;
}
.mason-table.intro-section .intro-section-content p:last-child {
  margin-bottom: 0;
}

.cta-wrapper {
  padding: 20px;
  margin-top: 24px;
  background: #fff;
  border: 4px solid #939598;
}

.intro-section-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
}

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

.mason-table.intro-section .cta-wrapper h5 {
  font-family: 'Centra No1', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  margin: 0;
  color: var(--pillar-gray);
  text-align: center;
  margin-bottom: 1rem;
}

.mason-table.intro-section .cta-wrapper .qr-code {
  width: 150px;
  height: 150px;
  margin-bottom: 1rem;
  background: #fff;
  border: 3px solid #939598;
}

.mason-table-pillers-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 1rem;
  margin-bottom: 40px;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 500px) {
  .mason-table-pillers-sections {
    grid-template-columns: 1fr;
  }
}

.mason-table {
  font-size: 16px;
  margin-bottom: 80px;
}

.mason-table.piller-sections {
  margin-bottom: 40px;
}

.mason-table table {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  table-layout: fixed;
}

.mason-table p {
  margin-bottom: 0;
  line-height: 1.5;
}

.mason-table-bg {
  position: relative;
  /* z-index: -1; */
}

.mason-table-content {
  border: 5px solid #939598;
  /* border-radius: 2px; */
}

.mason-table .mason-table-title {
  font-family: 'Centra No1', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  display: block;
  text-transform: uppercase;
  line-height: 1;
  margin: 20px 0;
  padding: 0 20px;
}

.mason-table .mason-table-title-subtitle {
  font-family: 'Centra No1', sans-serif;
  font-size: 1rem;
  font-weight: 100;
  text-align: center;
  display: block;
  color: var(--pillar-gray);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 10px;
}

.pillar-1 .mason-table-title {
  color: var(--pillar-blue);
}
.pillar-2 .mason-table-title {
  color: var(--pillar-red);
}
.pillar-3 .mason-table-title {
  color: var(--pillar-yellow);
}

.row-title {
  width: 33.33%;
}

.rollout {
  width: 33.33%;
}

.outcomes {
  width: 33.33%;
}

.rollout ul,
.outcomes ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.rollout ul li,
.outcomes ul li {
  list-style: none;
  color: var(--pillar-gray);
  padding: 0;
  margin: 0 0 14px;
}

.rollout ul li::before,
.outcomes ul li::before {
  display: none;
}

.mason-table thead th {
  color: var(--pillar-blue);
  font-weight: 800;
  background-color: var(--pillar-light-blue);
  border-bottom: 6px solid #fff;
  border-right: 0;
  border-left: 0;
  /* vertical-align: top; */
  line-height: 1.2;
  font-family: 'Centra No1', sans-serif;
  font-size: .8rem;
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0px;
  line-height: 1.2;
  text-align: center;
}

@media( max-width: 404px) {
  .mason-table thead th {
    font-size: .7rem;
  }
}

.mason-table thead tr.heading th {
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--pillar-gray);
  text-align: center;
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
}

.mason-table tbody tr:nth-child(odd) {
  background-color: var(--pillar-light-blue);
}
.mason-table tbody tr:nth-child(even) {
  background-color: var(--pillar-light-yellow);
}

.mason-table tbody td {
  border-bottom: 6px solid #fff;
  border-right: 0;
  border-left: 0;
  padding: 12px;
  color: var(--pillar-gray);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  font-family: 'Centra No1', sans-serif;
}

.mason-table tbody tr:last-child td {
  border-bottom: 0;
}

@media(max-width: 768px) {

  .mason-table tbody td {
    padding: 10px;
    font-size: 13px;
  }
}

.row-title {
  font-weight: 700;
}

.rollout-date {
  font-weight: 700;
}

.pillar-2 table thead th {
  color: var(--pillar-red);
  background-color: var(--pillar-light-red);
}

.pillar-2 table tbody tr:nth-child(odd) {
  background-color: var(--pillar-light-red);
}
.pillar-2 table tbody tr:nth-child(even) {
  background-color: var(--pillar-light-yellow);
}

.pillar-3 table thead th {
  color: var(--pillar-yellow);
  background-color: var(--pillar-light-yellow);
}

.pillar-3 table tbody tr:nth-child(odd) {
  background-color: var(--pillar-light-yellow);
}
.pillar-3 table tbody tr:nth-child(even) {
  background-color: var(--pillar-light-blue);
}

.pillar-0 .mason-table-content {
  border: 0;
}
.pillar-0 .pillar-subtitle {
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0px;
  line-height: 1.2;
  text-align: center;
  display: block;
  margin-top: 10px;
  color: var(--pillar-gray);
  font-weight: 600;
}
.pillar-0 thead th {
  font-family: 'Centra No1', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0px;
  line-height: 1.2;
  text-align: center;
}
.pillar-0 thead th.p1 {
  color: var(--pillar-blue);
}
.pillar-0 thead th.p2 {
  color: var(--pillar-red);
}
.pillar-0 thead th.p3 {
  color: var(--pillar-yellow);
}

.pillar-0 .p1 {
  background: var(--pillar-light-blue);
}
.pillar-0 .p1 .cell-title {
  color: var(--pillar-blue);
}
.pillar-0 .p2 {
  background: var(--pillar-light-red);
}
.pillar-0 .p2 .cell-title {
  color: var(--pillar-red);
}
.pillar-0 .p3 {
  background: var(--pillar-light-yellow);
}
.pillar-0 .p3 .cell-title {
  color: var(--pillar-yellow);
}

.pillar-0 table tbody td,
.pillar-0 table thead th {
  vertical-align: top;
  border-left: 6px solid #fff;
}

.mason-table table tbody td,
.mason-table table thead th {
 vertical-align: top!important;
}

.pillar-0 td:first-child {
  border-left: 0;
}

.pillar-0 td p {
  margin-bottom: 1rem;
}

.pillar-0 td p:last-child {
  margin-bottom: 0;
}

.piller-sections .pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.piller-sections .pillar-grid-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.piller-sections .pillar-grid-item.pillar-1-item .piller-header {
  /* background: #f1f9fa; */
  background: linear-gradient(to bottom, var(--pillar-light-blue) 0%, var(--pillar-light-gray) 40%, #fff 100%);
}
.piller-sections .pillar-grid-item.pillar-2-item .piller-header {
  /* background: #fae8dc; */
  background: linear-gradient(to bottom, var(--pillar-light-red) 0%, #fae8dc 35%, #fff 90%);
}
.piller-sections .pillar-grid-item.pillar-3-item .piller-header {
  /* background: #fdf6e5; */
  background: linear-gradient(to bottom, var(--pillar-light-red) 0%, #fdf6e5 45%, #fff 100%);
}

.piller-sections .pillar-image {
  width: 100%;
  margin-top: -20px;
  position: relative;
  z-index: 1;
}

.piller-sections .pillar-image img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.piller-sections .pillar-title {
  padding: 1.5rem 1.5rem 1rem;
  font-size: 2.5rem;
  font-family: 'Centra No1', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.pillar-1-item .pillar-title {
  color: var(--pillar-blue);
}

.pillar-2-item .pillar-title {
  color: var(--pillar-red);
}
.pillar-3-item .pillar-title {
  color: var(--pillar-yellow);
}

.piller-sections .pillar-title-subtitle {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
  padding: 1rem 1.5rem 1rem;
  text-align: center;
}
.piller-sections .pillar-description {
  padding: 0 1.5rem 1rem;
}

.piller-sections .pillar-why-matters {
  padding: 1rem 1.5rem 1.5rem;
  background: var(--pillar-light-gray);
  margin-top: 1rem;
}

.piller-sections .pillar-why-matters .cell-title {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.pillar-1-item .pillar-why-matters {
  /* background: #f1f9fa; */
  background: linear-gradient(to bottom, #e3f4f7 0%, #f1f9fa 40%, #fff 100%);
}
.pillar-2-item .pillar-why-matters {
  /* background: #fae8dc; */
  background: linear-gradient(to bottom, #f9d5c0 0%, #fae8dc 35%, #fff 90%);
}
.pillar-3-item .pillar-why-matters {
  /* background: #fdf6e5; */
  background: linear-gradient(to bottom, #fbedc7 0%, #fdf6e5 45%, #fff 100%);
}

.pillar-1-item .pillar-why-matters .cell-title {
  color: var(--pillar-blue);
}
.pillar-2-item .pillar-why-matters .cell-title {
  color: var(--pillar-red);
}
.pillar-3-item .pillar-why-matters .cell-title {
  color: var(--pillar-yellow);
}

.piller-sections .pillar-why-matters p.strong {
  font-weight: 600;
}

.piller-sections .pillar-why-matters p {
  margin-bottom: 1rem;
}

.mason-table.pillar-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 20px 10px;
  max-width: 1300px;
  margin: 0 auto 0px;
}

.mason-table.pillar-cards .pillar-card {
  display: flex;
  flex-direction: column;
  border: 5px solid #939598;
  padding: 24px;
  background: #fff;
  font-family: 'Centra No1', sans-serif;
}

.pillar-card-header {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) 1fr;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

@media(max-width: 960px) {
  .mason-table.pillar-cards {
    gap: 1rem;
  }
}

@media(min-width: 800px) and (max-width: 960px) {
  .pillar-card-header {
    grid-template-columns: 1fr;
  }
  .pillar-card-image {
    justify-content: center;
    margin: 0 auto 1rem;
    max-width: 120px;
  }
  h3.pillar-card-title {
    text-align: center;
  }
}

.pillar-card-image {
  width: auto;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
}

h3.pillar-card-title {
  font-family: 'Centra No1', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.pillar-card-1 .pillar-card-title {
  color: var(--pillar-blue);
}
.pillar-card-2 .pillar-card-title {
  color: var(--pillar-red);
}
.pillar-card-3 .pillar-card-title {
  color: var(--pillar-yellow);
}

.pillar-card-content {
  margin-bottom: .75rem;
  font-family: 'Centra No1', sans-serif;
  font-weight: 600;
  color: var(--pillar-gray);
  font-size: 16px;
}

.pillar-card-why {

}
.pillar-card-why .why-title {
  font-family: 'Centra No1', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0;
  color: var(--pillar-gray);
  margin-bottom: .75rem;
}

.pillar-card-why p {
  font-size: 17px;
  font-weight: 800;
  color: var(--pillar-gray);
  margin-bottom: .75rem;
}

.pillar-card-1 .pillar-card-why p {
  color: var(--pillar-blue);
}
.pillar-card-2 .pillar-card-why p {
  color: var(--pillar-red);
}
.pillar-card-3 .pillar-card-why p {
  color: var(--pillar-yellow);
}

.pillar-card-why p span.gray {
  color: var(--pillar-gray);
}
.pillar-card-why p span.sub {
  font-size: 16px;
  font-weight: 600;
  display: block;
}

.footer-section-cta {
  margin-top: 40px;
  max-width: 400px;
  margin: 20px auto;
  padding: 0 20px;
}

.footer-section-cta .cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-section-cta .cta-wrapper .qr-code {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: #fff;
  /* border: 3px solid #939598; */
}

.footer-section-cta .cta-wrapper .cta-text p {
  margin-bottom: 0;
}

.footer-section-cta .cta-wrapper h5 {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Centra No1', sans-serif;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0;
  color: var(--pillar-gray);
  text-align: center;
}

.pillar-page-cta-link {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0;
  color: var(--pillar-gray);
  text-align: center;
  padding: 1rem 2rem;
  text-decoration: none!important;
  border-radius: 2px;
  border: 3px solid #939598;
  background:
  radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.5) 40%,
    transparent 80%
  ),
  linear-gradient(
    120deg,
    #dbe9f6 0%,
    #fdfbf7 40%,
    #f8e3d2 100%
  );
  transition: all 0.5s ease;
}

.pillar-page-cta-link:hover {
    background:
  radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.5) 40%,
    transparent 80%
  ),
  linear-gradient(
    -120deg,
    #dbe9f6 0%,
    #fdfbf7 40%,
    #f8e3d2 100%
  );
  color: rgb(99, 99, 99);
  border-color: rgb(99, 99, 99);
  transition: all 0.5s ease;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.mobile-table {
  display: none;
}

@media(max-width: 899px) {

  .mason-table.pillar-cards {
    grid-template-columns: 1fr;
    padding: 0 20px 10px;
  }
  .cta-wrapper {
    margin-bottom: 20px;
  }

  .pillar-card {
    display: none!important;
  }
  .mobile-table .pillar-card {
    display: block!important;
  }

  .mobile-table.mason-table {
    margin-bottom: 0!important;
  }

  .mason-table.pillar-cards .pillar-card {
    border-bottom: 0;
    background: transparent;
  }

  .pillar-card-header {
    grid-template-columns: 1fr;
  }
  .pillar-card-title {
    text-align: center;
    font-size: 2rem!important;
  }

  .mobile-table {
    display: block;
  }

  .mobile-table .mason-table-title {
    display: none;
  }

  .mason-table-pillers-sections {
    display: none;
  }
}