html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}

ol,
ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #434f6c;
  color: #31384A;
}

body {
  overflow-x: hidden;
}

body.menu-open .site-nav__mobile {
  left: 0;
}

.site-main {
  background: #ffffff;
}

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

a,
a:link,
a:visited,
a:hover {
  color: inherit;
  text-decoration: none;
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
}

.container {
  width: min(1432px, 100% - 20px);
  margin-right: auto;
  margin-left: auto;
  max-width: min(1432px, 100% - 20px);
}
@media only screen and (min-width: 768px) {
  .container {
    width: min(1432px, 100% - 48px);
    max-width: min(1432px, 100% - 48px);
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Intentionally left minimal. The theme uses the system Inter fallback stack. */
.btn, .btn:link, .btn:visited, .btn:hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid transparent;
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.875rem;
  line-height: 0.875rem;
  transition: all 0.3s ease;
  color: #FAFBFF;
}
.btn.btn--outline-dark, .btn:link.btn--outline-dark, .btn:visited.btn--outline-dark, .btn:hover.btn--outline-dark {
  border-color: #31384A;
  color: #31384A;
  background: transparent;
}
.btn.btn--outline-dark:hover, .btn:link.btn--outline-dark:hover, .btn:visited.btn--outline-dark:hover, .btn:hover.btn--outline-dark:hover {
  background: #31384A;
  color: #FAFBFF;
}
.btn--primary {
  background: #b30d33;
  color: #FAFBFF;
}
.btn--primary:hover {
  background: #be123c;
}
.btn--outline-light {
  border-color: rgba(250, 251, 255, 0.78);
  color: #FAFBFF;
  background: transparent;
}
.btn--outline-light:hover {
  background: rgba(250, 251, 255, 0.08);
}

.pidu-link, .pidu-link:link, .pidu-link:visited, .pidu-link:hover {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0.875rem;
}
.pidu-link::after {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: url("../images/figma/arrow-link-1.svg") center/contain no-repeat;
}
.pidu-link--light {
  color: #FAFBFF;
}
.pidu-link--light::after {
  filter: brightness(0) saturate(100%) invert(98%) sepia(6%) saturate(345%) hue-rotate(177deg) brightness(105%) contrast(94%);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  z-index: 40;
}
.site-header.fixed {
  position: fixed;
}
.site-header.fixed .site-logo {
  display: none;
}
.site-header.fixed .site-nav__lang {
  display: none;
}

.site-nav {
  position: relative;
  padding: 20px 0 0;
  z-index: 50;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo__image {
  width: 96px;
  height: auto;
}
@media only screen and (min-width: 992px) {
  .site-logo__image {
    width: 161px;
  }
}

.site-nav__desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .site-nav__desktop {
    display: flex;
  }
}

.site-nav__lang {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.site-nav__menu-pill {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px 20px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(14, 18, 30, 0.12);
}

.site-nav__home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

/*.site-nav__home:hover {
  background: $surface-light;
}*/
.site-nav__home img, .site-nav__home svg {
  width: 20px;
  height: 20px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.menu li.current-menu-item > a {
  color: #B20024;
}

.menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 16px;
  border-radius: 9px;
  font-size: 0.875rem;
  line-height: 0.875rem;
  color: #191C24;
}

/*.menu--primary a:hover,
.menu--primary .current-menu-item a {
  background: $surface-light;
}*/
.menu-lang a {
  min-height: 26px;
  padding: 12px 16px;
  border: 1px solid #FAFBFF;
  border-radius: 200px;
  font-size: 0.875rem;
  line-height: 0.875rem;
  font-weight: 600;
  color: #FAFBFF;
}

.has-contact-hero .menu-lang a {
  border-color: #31384A;
  color: #31384A;
}
.has-contact-hero .site-nav__toggle {
  border-color: #31384A;
}
.has-contact-hero .site-nav__toggle span:not(.screen-reader-text) {
  background: #31384A;
}

.site-nav__toggle,
.site-nav__close {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid #FAFBFF;
  border-radius: 999px;
}

.site-nav__toggle {
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  float: right;
}
@media only screen and (min-width: 992px) {
  .site-nav__toggle {
    display: none;
  }
}

.site-nav__toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 0 auto;
  background: #FAFBFF;
}

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

.site-nav__close {
  border: 1px solid #191C24;
}
.site-nav__close span:not(.screen-reader-text) {
  position: absolute;
  width: 24px;
  height: 1px;
  background: #191C24;
}
.site-nav__close span:not(.screen-reader-text):first-child {
  transform: rotate(45deg);
}
.site-nav__close span:not(.screen-reader-text):nth-child(2) {
  transform: rotate(-45deg);
}

.site-nav__mobile {
  position: fixed;
  background: #f0f3fc;
  z-index: 60;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  transition: all 0.3s ease;
}

.site-nav__mobile-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.home-btn-wrap {
  padding-top: 20px;
}

.mobile-menu {
  padding-top: 20px;
}

.mobile-menu li + li {
  border-top: 1px solid rgba(250, 251, 255, 0.12);
}

.mobile-menu li {
  padding: 7px 6px;
  margin-bottom: 12px;
  min-height: 40px;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  color: #191C24;
  font-size: 1.5rem;
  line-height: 2rem;
}

.mobile-menu--lang {
  margin-top: 24px;
}

.site-footer {
  padding: 100px 0 100px;
  background: #31384A;
  color: #FAFBFF;
}
@media only screen and (min-width: 992px) {
  .site-footer {
    padding: 100px 0 100px;
  }
}
.site-footer .btn {
  border-color: #FAFBFF;
}

.site-footer__top {
  row-gap: 32px;
}
@media only screen and (min-width: 992px) {
  .site-footer__top {
    row-gap: 40px;
  }
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  /*@include devices(large) {
    gap: 24px;
  }*/
}

.site-footer__logo {
  width: 161px;
}

.site-footer__tagline {
  font-size: 1.5rem;
  line-height: 1.15;
  /*@include devices(large) {
    @include font-size(24);
  }*/
}
@media only screen and (min-width: 1200px) {
  .site-footer__tagline {
    font-size: 1.875rem;
  }
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-menu a,
.site-footer__contact p,
.site-footer__socials a,
.site-footer__copyright {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #FAFBFF;
  margin-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .footer-menu a,
  .site-footer__contact p,
  .site-footer__socials a,
  .site-footer__copyright {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.site-footer__organization strong {
  display: inline-block;
  margin-bottom: 6px;
  color: #FAFBFF;
}

.site-footer__bottom {
  margin-top: 36px;
}
@media only screen and (min-width: 992px) {
  .site-footer__bottom {
    margin-top: 64px;
  }
}

.site-footer__meta {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .site-footer__meta {
    justify-content: flex-end;
    align-items: center;
  }
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pidu-section {
  position: relative;
  padding: 100px 0;
}
@media only screen and (min-width: 992px) {
  .pidu-section {
    padding: 108px 0;
  }
}
.pidu-section__eyebrow, .pidu-section__eyebrow--light {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin: 0 0 64px;
  color: #31384A;
  text-transform: none;
  font-size: 1rem;
  line-height: 1rem;
}
.pidu-section__eyebrow::before, .pidu-section__eyebrow--light::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #b30d33;
  border-radius: 100%;
}
.pidu-section__eyebrow--light, .pidu-section__title--light, .pidu-section__display--light {
  color: #FAFBFF;
}
.pidu-section__eyebrow--light::before {
  background: rgba(250, 251, 255, 0.82);
}
.pidu-section__title {
  margin: 0 0 26px;
  font-weight: 500;
  line-height: 1;
  font-size: 1.375rem;
}
@media only screen and (min-width: 992px) {
  .pidu-section__title {
    margin-bottom: 64px;
    font-size: 2rem;
  }
}
.pidu-section__display, .pidu-section__display--light {
  margin: 0 0 64px;
  font-weight: 400;
  line-height: 1.02;
  font-size: 1.875rem;
}
@media only screen and (min-width: 992px) {
  .pidu-section__display, .pidu-section__display--light {
    margin-bottom: 48px;
    font-size: 3.625rem;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-section__display, .pidu-section__display--light {
    font-size: 2.8125rem;
  }
}
@media only screen and (min-width: 1600px) {
  .pidu-section__display, .pidu-section__display--light {
    font-size: 3.625rem;
  }
}
.pidu-section__display--cta {
  margin: 0 0 32px;
  font-weight: 400;
  line-height: 1.02;
  font-size: 2rem;
}
@media only screen and (min-width: 992px) {
  .pidu-section__display--cta {
    font-size: 6.25rem;
  }
}
.pidu-section__summary {
  margin-top: 64px;
  padding-top: 25px;
  border-top: 1px solid #31384A;
}
.pidu-section__summary p {
  margin: 0;
}
.pidu-section__summary p + p {
  margin-top: 12px;
}
.pidu-section__action {
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
  /*@include devices(extraLarge) {
    justify-content: flex-end;
  }*/
}
.pidu-section__footer-link {
  margin-top: 64px;
}
@media only screen and (min-width: 992px) {
  .pidu-section__footer-link {
    margin-top: 48px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-section__footer-link {
    margin-top: 128px;
  }
}

.pidu-carousel {
  overflow: hidden;
}
.pidu-carousel__track:not(.slick-initialized) {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}
@media only screen and (min-width: 992px) {
  .pidu-carousel__track:not(.slick-initialized) {
    gap: 16px;
    padding-bottom: 24px;
  }
}
.pidu-carousel__track .slick-list {
  margin: 0 -6px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .pidu-carousel__track .slick-list {
    margin: 0 -8px;
  }
}
.pidu-carousel__track .slick-track {
  display: flex;
}
.pidu-carousel__track .slick-slide {
  height: auto;
  padding: 0 6px;
}
@media only screen and (min-width: 992px) {
  .pidu-carousel__track .slick-slide {
    padding: 0 8px;
  }
}
.pidu-carousel__track .slick-slide > div {
  height: 100%;
}
.pidu-carousel__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pidu-carousel__nav .slick-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid transparent;
  cursor: pointer;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 100%;
  transition: all 0.3s ease;
}
.pidu-carousel__nav .slick-arrow::before {
  display: none;
}
.pidu-carousel__nav .slick-arrow--prev {
  transform: rotate(180deg);
}
.pidu-carousel__nav .slick-arrow.slick-disabled {
  opacity: 0.35;
  cursor: default;
}
.pidu-carousel .slide-single-wrap {
  padding: 0 8px;
}

.pidu-section--header {
  padding: 0;
}
@media only screen and (min-width: 992px) {
  .pidu-section--header {
    padding: 0;
  }
}

.pidu-hero {
  min-height: 100vh;
  padding: 0 0 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FAFBFF;
}
@media only screen and (min-width: 992px) {
  .pidu-hero {
    min-height: 820px;
    padding: 0 0 64px;
    background-position: center top;
  }
}

.pidu-section .flex-wrap {
  display: flex;
  flex-wrap: wrap;
  padding-top: 124px;
  min-height: 690px;
}
@media only screen and (min-width: 992px) {
  .pidu-section .flex-wrap {
    min-height: 820px;
    padding-top: 120px;
  }
}

.pidu-hero__content {
  row-gap: 24px;
  margin-left: 0;
  margin-right: 0;
}
.pidu-hero__content .col {
  padding-left: 0;
  padding-right: 0;
}

.pidu-hero__title {
  font-size: 2.875rem;
  line-height: 2.875rem;
  font-weight: 400;
}
@media only screen and (min-width: 992px) {
  .pidu-hero__title {
    font-size: 4.25rem;
    line-height: 4.25rem;
  }
}
@media only screen and (min-width: 1600px) {
  .pidu-hero__title {
    font-size: 6.25rem;
    line-height: 6.25rem;
  }
}

.pidu-hero__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.pidu-hero__description {
  color: #FAFBFF;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 24px;
  padding-top: 12px;
}

.pidu-section--subpage-hero {
  padding: 0;
}
@media only screen and (min-width: 992px) {
  .pidu-section--subpage-hero {
    padding: 0;
  }
}

.pidu-subpage-hero {
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  padding: 140px 0 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FAFBFF;
}
@media only screen and (min-width: 992px) {
  .pidu-subpage-hero {
    min-height: 600px;
    padding: 150px 0 32px;
  }
}
.pidu-subpage-hero__content {
  max-width: 900px;
}
.pidu-subpage-hero__title {
  margin: 0 0 24px;
  font-weight: 400;
  line-height: 1;
  font-size: 3rem;
}
@media only screen and (min-width: 992px) {
  .pidu-subpage-hero__title {
    font-size: 4.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .pidu-subpage-hero__title {
    font-size: 5.625rem;
  }
}
.pidu-subpage-hero__description {
  max-width: 900px;
  margin: 0 0 24px;
  color: #FAFBFF;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media only screen and (min-width: 992px) {
  .pidu-subpage-hero__description {
    font-size: 1.75rem;
    line-height: 1.1;
  }
}

@media only screen and (min-width: 992px) {
  .pidu-section--core-services {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 992px) {
  .pidu-section--core-services .pidu-section__display {
    max-width: 1005px;
    margin-bottom: 64px;
    font-size: 3.375rem;
    line-height: 3.875rem;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-section--core-services .pidu-section__display {
    font-size: 2.8125rem;
    line-height: 3.4375rem;
  }
}
@media only screen and (min-width: 1600px) {
  .pidu-section--core-services .pidu-section__display {
    font-size: 3.5625rem;
    line-height: 4rem;
  }
}

.pidu-feature-grid {
  row-gap: 32px;
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 992px) {
  .pidu-feature-grid {
    row-gap: 42px;
  }
}
.pidu-feature-grid .col {
  padding-left: 20px;
  padding-right: 20px;
}

.pidu-feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) {
  .pidu-feature-card {
    min-height: 124px;
    gap: 32px;
  }
}

.pidu-feature-card__icon,
.pidu-value-card__icon,
.pidu-benefit-card__icon,
.pidu-academy-card__icon,
.pidu-domain-card__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b30d33;
  color: #FAFBFF;
  border-radius: 100%;
  font-size: 0.625rem;
  line-height: 0.625rem;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .pidu-feature-card__icon,
  .pidu-value-card__icon,
  .pidu-benefit-card__icon,
  .pidu-academy-card__icon,
  .pidu-domain-card__icon {
    width: 32px;
    height: 32px;
  }
}
.pidu-feature-card__icon.no-bg-ver,
.pidu-value-card__icon.no-bg-ver,
.pidu-benefit-card__icon.no-bg-ver,
.pidu-academy-card__icon.no-bg-ver,
.pidu-domain-card__icon.no-bg-ver {
  background: transparent;
  width: 32px;
  height: 32px;
}
@media only screen and (min-width: 768px) {
  .pidu-feature-card__icon.no-bg-ver,
  .pidu-value-card__icon.no-bg-ver,
  .pidu-benefit-card__icon.no-bg-ver,
  .pidu-academy-card__icon.no-bg-ver,
  .pidu-domain-card__icon.no-bg-ver {
    width: 32px;
    height: 32px;
  }
}

.pidu-feature-card .column-title,
.pidu-value-card .column-title,
.pidu-benefit-card .column-title,
.pidu-academy-card .column-title,
.pidu-domain-card .column-title,
.pidu-member-card .column-title {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 600;
}

.pidu-section--social-proof-dark {
  background: #31384A;
  color: #FAFBFF;
}
@media only screen and (min-width: 992px) {
  .pidu-section--social-proof-dark {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.pidu-section--social-proof-dark .pidu-section__title {
  margin-bottom: 64px;
  /*@include devices(large) {
    margin-bottom: 42px;
  }*/
}
@media only screen and (min-width: 1200px) {
  .pidu-section--social-proof-dark .pidu-section__title {
    margin-bottom: 64px;
  }
}

.pidu-event-card,
.pidu-member-card {
  min-height: 100%;
  padding: 24px;
  scroll-snap-align: start;
  border-radius: 4px;
}
@media only screen and (min-width: 992px) {
  .pidu-event-card,
  .pidu-member-card {
    flex-basis: 24%;
    padding: 20px 18px 18px;
  }
}

.pidu-event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 32px;
  border: 1px solid #FAFBFF;
}
@media only screen and (min-width: 992px) {
  .pidu-event-card {
    gap: 32px;
  }
}
.pidu-event-card__title {
  margin: 0;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
@media only screen and (min-width: 992px) {
  .pidu-event-card__title {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
.pidu-event-card__title a {
  color: inherit;
  text-decoration: none;
}
.pidu-event-card__description {
  margin: 0;
  color: #FAFBFF;
  font-size: 0.875rem;
  line-height: 1rem;
}
@media only screen and (min-width: 992px) {
  .pidu-event-card__description {
    font-size: 0.875rem;
    line-height: 1rem;
  }
}
.pidu-event-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: auto;
  margin-left: auto;
  background: url("../images/figma/arrow-link.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}

.pidu-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 18px;
  border: 1px solid #FAFBFF;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media only screen and (min-width: 992px) {
  .pidu-chip {
    min-height: 32px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.pidu-carousel__nav--light .slick-arrow {
  border: 1px solid rgba(250, 251, 255, 0.78);
  background-image: url("../images/figma/arrow-link.svg");
}
.pidu-carousel__nav--light .slick-arrow:hover {
  background-color: rgba(250, 251, 255, 0.08);
}

@media only screen and (min-width: 992px) {
  .pidu-section--featured-main {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) {
  .pidu-section--featured-main .pidu-section__display {
    max-width: 980px;
    margin-bottom: 64px;
    font-size: 3.5625rem;
    line-height: 1;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-section--featured-main .pidu-section__display {
    font-size: 2.8125rem;
  }
}
@media only screen and (min-width: 1600px) {
  .pidu-section--featured-main .pidu-section__display {
    font-size: 3.5625rem;
  }
}

.pidu-value-grid {
  row-gap: 32px;
}
@media only screen and (min-width: 992px) {
  .pidu-value-grid {
    row-gap: 42px;
  }
}

.pidu-value-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media only screen and (min-width: 992px) {
  .pidu-value-card {
    min-height: 150px;
  }
}
.pidu-value-card__title {
  margin: 0;
  font-weight: 600;
  color: #31384A;
  font-size: 1.5rem;
  line-height: 1.625rem;
  /*@include devices(large) {
    @include font-size(24);
    @include line-height(26);
    font-weight: 600;
  }*/
}

.pidu-section--membership {
  background: #f6f5ea;
}
@media only screen and (min-width: 992px) {
  .pidu-section--membership {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) {
  .pidu-section--membership .pidu-section__display {
    max-width: 840px;
    margin-bottom: 64px;
  }
}

.pidu-benefit-grid {
  margin-bottom: 64px;
  row-gap: 16px;
}
@media only screen and (min-width: 992px) {
  .pidu-benefit-grid {
    margin-bottom: 34px;
    row-gap: 32px;
  }
}

.pidu-benefit-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media only screen and (min-width: 992px) {
  .pidu-benefit-card {
    min-height: 92px;
    gap: 24px;
  }
}
.pidu-benefit-card__title {
  margin: 0;
  font-weight: 600;
  color: #31384A;
  font-size: 1.25rem;
  line-height: 1.625rem;
}
@media only screen and (min-width: 992px) {
  .pidu-benefit-card__title {
    max-width: 320px;
  }
}

@media only screen and (min-width: 992px) {
  .pidu-section--featured-grid {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) {
  .pidu-section--featured-grid .pidu-section__display {
    max-width: 980px;
    margin-bottom: 76px;
    font-size: 3.5625rem;
    line-height: 1;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-section--featured-grid .pidu-section__display {
    font-size: 2.8125rem;
  }
}
@media only screen and (min-width: 1600px) {
  .pidu-section--featured-grid .pidu-section__display {
    font-size: 3.5625rem;
  }
}

.pidu-domain-grid {
  row-gap: 16px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 992px) {
  .pidu-domain-grid {
    row-gap: 22px;
    margin-bottom: 42px;
  }
}

.pidu-domain-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  padding: 14px 14px 12px;
  border: 1px solid #31384A;
  border-radius: 8px;
}
@media only screen and (min-width: 992px) {
  .pidu-domain-card {
    padding: 20px 20px 18px;
  }
}
.pidu-domain-card__title {
  margin: 0;
  font-weight: 500;
  color: #191C24;
  font-size: 1.5rem;
  line-height: 1.75rem;
}
@media only screen and (min-width: 992px) {
  .pidu-domain-card__title {
    font-weight: 500;
  }
}
.pidu-domain-card__link {
  width: 24px;
  height: 24px;
  margin-top: auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: url("../images/figma/arrow-link-1.svg");
}

.pidu-sidebar-list {
  padding-top: 64px;
}
@media only screen and (min-width: 1200px) {
  .pidu-sidebar-list {
    padding-top: 0;
  }
}
.pidu-sidebar-list__title {
  margin: 0 0 32px;
  padding-top: 24px;
  border-top: 1px solid #31384A;
  font-weight: 600;
  line-height: 1;
  font-size: 2rem;
}
.pidu-sidebar-list__item + .pidu-sidebar-list__item {
  margin-top: 20px;
}
@media only screen and (min-width: 992px) {
  .pidu-sidebar-list__item + .pidu-sidebar-list__item {
    margin-top: 40px;
  }
}
.pidu-sidebar-list__item-title {
  margin: 0 0 24px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
}
.pidu-sidebar-list__item-description {
  margin: 0;
  color: #6F788D;
  font-size: 1rem;
  line-height: 1.5rem;
}

.pidu-section--academy {
  background: #ebf3fc;
}
@media only screen and (min-width: 992px) {
  .pidu-section--academy {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) {
  .pidu-section--academy .pidu-section__display {
    max-width: 980px;
    margin-bottom: 64px;
    font-size: 3.125rem;
    line-height: 1;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-section--academy .pidu-section__display {
    font-size: 2.8125rem;
  }
}
@media only screen and (min-width: 1600px) {
  .pidu-section--academy .pidu-section__display {
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 992px) {
  .pidu-section--academy .pidu-section__summary {
    margin-top: 64px;
    padding-top: 24px;
  }
}

.pidu-academy-grid {
  padding-top: 64px;
  row-gap: 24px;
}
@media only screen and (min-width: 1200px) {
  .pidu-academy-grid {
    padding-top: 0;
    row-gap: 58px;
  }
}

.pidu-academy-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media only screen and (min-width: 992px) {
  .pidu-academy-card {
    min-height: 118px;
    gap: 25px;
  }
}
.pidu-academy-card__title {
  margin: 0;
  font-weight: 600;
  color: #31384A;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media only screen and (min-width: 992px) {
  .pidu-academy-card__title {
    font-size: 1.25rem;
    line-height: 1.625rem;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-academy-card__title {
    font-size: 1.5rem;
    line-height: 1.625rem;
  }
}
.pidu-academy-card__title br {
  display: block;
}

.pidu-section--connect {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FAFBFF;
}
@media only screen and (min-width: 992px) {
  .pidu-section--connect {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) {
  .pidu-section--connect .pidu-section__display {
    margin-bottom: 24px;
  }
}

.pidu-connect__description {
  margin: 0;
  color: #FAFBFF;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 45px;
}
@media only screen and (min-width: 992px) {
  .pidu-connect__description {
    max-width: 220px;
    margin-top: 0;
  }
}

.pidu-section--social-proof-members {
  background-color: #f5f5f5;
}
@media only screen and (min-width: 992px) {
  .pidu-section--social-proof-members {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.pidu-member-card {
  background: #ffffff;
  color: #31384A;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pidu-member-card__logo {
  margin-bottom: 24px;
}
.pidu-member-card__logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(49, 56, 74, 0.16);
  border-radius: 100%;
  font-size: 1.25rem;
  line-height: 1.25rem;
}
.pidu-member-card__logo img {
  max-height: 37px;
}
.pidu-member-card__title {
  margin: 0;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375rem;
  margin-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .pidu-member-card__title {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.pidu-member-card__title a {
  color: inherit;
  text-decoration: none;
}
.pidu-member-card__description {
  margin: 0;
  color: #6F788D;
  font-size: 0.625rem;
  line-height: 0.9375rem;
  margin-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .pidu-member-card__description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.pidu-member-card__link {
  width: fit-content;
  margin-top: auto;
  color: inherit;
  text-decoration: none;
}

.pidu-carousel__footer {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
  flex-wrap: wrap;
  text-align: right;
}
.pidu-carousel__footer .pidu-carousel__footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: auto;
  margin-left: auto;
  background: url("../images/figma/arrow-link-1.svg");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 100%;
  border: 1px solid #31384A;
}
.pidu-carousel__footer .pidu-carousel__nav .slick-arrow {
  border: 1px solid #31384A;
  background-image: url("../images/figma/arrow-link-1.svg");
}
.pidu-carousel__footer .pidu-carousel__nav .slick-arrow:hover {
  background-color: rgba(49, 56, 74, 0.06);
}

.pidu-section--about-mission {
  background: #ffffff;
}
@media only screen and (min-width: 992px) {
  .pidu-section--about-mission {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.pidu-about-mission__statement {
  margin: 0;
  color: #191C24;
  font-weight: 400;
  line-height: 1.08;
  font-size: 2rem;
}
@media only screen and (min-width: 992px) {
  .pidu-about-mission__statement {
    font-size: 3.375rem;
  }
}
.pidu-about-mission__grid {
  row-gap: 32px;
  padding-top: 48px;
}
@media only screen and (min-width: 992px) {
  .pidu-about-mission__grid {
    row-gap: 40px;
    padding-top: 64px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-about-mission__grid {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-about-mission__grid .col {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.pidu-about-mission-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pidu-about-mission-card__icon {
  width: 48px;
  height: 48px;
}
@media only screen and (min-width: 992px) {
  .pidu-about-mission-card__icon {
    width: 64px;
    height: 64px;
  }
}
.pidu-about-mission-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pidu-about-mission-card__title {
  margin: 0;
  color: #191C24;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.625rem;
}
@media only screen and (min-width: 992px) {
  .pidu-about-mission-card__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.pidu-about-mission-card__description {
  margin: 0;
  color: #191C24;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media only screen and (min-width: 992px) {
  .pidu-about-mission-card__description {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}

.pidu-section--about-governance {
  background: #ffffff;
}
@media only screen and (min-width: 992px) {
  .pidu-section--about-governance {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.pidu-about-group-wrap {
  position: relative;
  padding-top: 32px;
}
.pidu-about-group-wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 33.33%;
  height: 1px;
  background-color: #31384A;
}

.pidu-about-group {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #31384A;
}
@media only screen and (min-width: 992px) {
  .pidu-about-group {
    margin-top: 48px;
    padding-top: 48px;
  }
}
.pidu-about-group.no-border {
  border-top: none;
}
@media only screen and (min-width: 992px) {
  .pidu-about-group.no-border {
    margin-top: 32px;
    padding-top: 32px;
  }
}
.pidu-about-group:first-child {
  margin-top: 0;
}
.pidu-about-group__title {
  margin: 0 0 24px;
  color: #191C24;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.625rem;
}
@media only screen and (min-width: 992px) {
  .pidu-about-group__title {
    margin-bottom: 0;
    font-size: 1.75rem;
    line-height: 2rem;
  }
}
.pidu-about-group__cards {
  row-gap: 32px;
}
@media only screen and (min-width: 992px) {
  .pidu-about-group__cards {
    row-gap: 40px;
  }
}

.pidu-team-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.pidu-team-card__media {
  aspect-ratio: 1/1;
  background: #bbcde1;
  overflow: hidden;
  border-radius: 8px;
}
.pidu-team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pidu-team-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pidu-team-card__name, .pidu-team-card__role, .pidu-team-card__description {
  margin: 0;
}
.pidu-team-card__name {
  color: #191C24;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media only screen and (min-width: 992px) {
  .pidu-team-card__name {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
.pidu-team-card__role {
  color: #31384A;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media only screen and (min-width: 992px) {
  .pidu-team-card__role {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
.pidu-team-card__description {
  color: #31384A;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.pidu-partner-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
@media only screen and (min-width: 992px) {
  .pidu-partner-list {
    gap: 40px;
  }
}

.pidu-partner-item {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}
.pidu-partner-item img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 48px;
}
.pidu-partner-item__name {
  color: #191C24;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
}

/*.pidu-document-list {
  border-top: 1px solid rgba($navy, 0.28);
}*/
.pidu-document-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #31384A;
  text-decoration: none;
}
.pidu-document-row:last-of-type {
  border-bottom: none;
}
.pidu-document-row__title {
  margin: 0;
  min-width: 0;
  flex: 1 1 auto;
  word-break: break-word;
  color: #191C24;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media only screen and (min-width: 992px) {
  .pidu-document-row__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.pidu-document-row__icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.pidu-section--membership-benefits {
  background: #ffffff;
}
@media only screen and (min-width: 992px) {
  .pidu-section--membership-benefits {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.pidu-membership-benefits__statement {
  margin: 0;
  color: #191C24;
  font-weight: 400;
  line-height: 1.02;
  font-size: 2.125rem;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-benefits__statement {
    font-size: 3.625rem;
  }
}
.pidu-membership-benefits__grid {
  row-gap: 36px;
  padding-top: 52px;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-benefits__grid {
    row-gap: 40px;
    padding-top: 64px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-membership-benefits__grid {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-membership-benefits__grid .col {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.pidu-membership-benefit-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-benefit-card {
    gap: 24px;
  }
}
.pidu-membership-benefit-card__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
}
.pidu-membership-benefit-card__icon img,
.pidu-membership-benefit-card__icon span {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}
.pidu-membership-benefit-card__icon.is-empty span {
  opacity: 0;
}
.pidu-membership-benefit-card__title {
  margin: 0;
  color: #191C24;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-benefit-card__title {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}
.pidu-membership-benefit-card__description {
  margin: 0;
  color: #31384A;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-benefit-card__description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.pidu-section--membership-ecosystem {
  background: #BCBCB4;
}
@media only screen and (min-width: 992px) {
  .pidu-section--membership-ecosystem {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.pidu-membership-ecosystem {
  row-gap: 36px;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-ecosystem {
    align-items: start;
    row-gap: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-membership-ecosystem {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-membership-ecosystem .col {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.pidu-membership-ecosystem__title {
  margin: 0 0 24px;
  color: #191C24;
  font-weight: 400;
  line-height: 1.04;
  font-size: 2rem;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-ecosystem__title {
    margin-bottom: 28px;
    font-size: 3.375rem;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-membership-ecosystem__title {
    margin-bottom: 64px;
  }
}
.pidu-membership-ecosystem__description p {
  margin: 0;
  color: #31384A;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-ecosystem__description p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.pidu-membership-ecosystem__description p + p {
  margin-top: 16px;
}
.pidu-membership-ecosystem__grid {
  row-gap: 24px;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-ecosystem__grid {
    row-gap: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-membership-ecosystem__grid {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-membership-ecosystem__grid .col {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.pidu-membership-audience-card {
  position: relative;
  height: 100%;
  padding-top: 24px;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-audience-card {
    padding-top: 25px;
  }
}
.pidu-membership-audience-card__line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #31384A;
}
.pidu-membership-audience-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pidu-membership-audience-card__icon img,
.pidu-membership-audience-card__icon span {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
}
.pidu-membership-audience-card__icon.is-empty span {
  opacity: 0;
}
.pidu-membership-audience-card__title {
  margin: 0;
  color: #191C24;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-audience-card__title {
    max-width: 350px;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.pidu-membership-audience-card__description {
  margin: 16px 0 0;
  color: #31384A;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.pidu-section--membership-process {
  background: #31384A;
}
@media only screen and (min-width: 992px) {
  .pidu-section--membership-process {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.pidu-membership-process__title {
  margin: 0 0 24px;
  color: #FAFBFF;
  font-weight: 400;
  line-height: 1.04;
  font-size: 2.125rem;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-process__title {
    font-size: 3.5rem;
  }
}
.pidu-membership-process__description {
  max-width: 960px;
  margin: 0;
  color: rgba(250, 251, 255, 0.84);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-process__description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.pidu-membership-process__steps {
  row-gap: 28px;
  padding-top: 40px;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-process__steps {
    row-gap: 0;
    padding-top: 64px;
    margin-bottom: 64px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-membership-process__steps {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-membership-process__steps .col {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.pidu-membership-process__steps .col:first-of-type .pidu-membership-step-card__label {
  border: 1px dashed #FAFBFF;
}
.pidu-membership-process__steps .col:last-of-type .pidu-membership-step-card__label {
  background-color: #FAFBFF;
  color: #31384A;
}
.pidu-membership-process__steps .col:last-of-type .pidu-membership-step-card svg {
  display: none;
}
.pidu-membership-process__features-wrap {
  padding-top: 48px;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-process__features-wrap {
    border-top: 1px solid #FAFBFF;
    padding-top: 64px;
  }
}
.pidu-membership-process__features {
  row-gap: 24px;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-process__features {
    row-gap: 0;
  }
}

.pidu-membership-step-card {
  position: relative;
  height: 100%;
}
.pidu-membership-step-card svg {
  padding-left: 16px;
}
.pidu-membership-step-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 16px;
  margin: 0 0 22px;
  border: 1px solid #FAFBFF;
  color: #FAFBFF;
  border-radius: 999px;
  font-size: 0.875rem;
  line-height: 0.875rem;
}
.pidu-membership-step-card__title {
  margin: 0 0 16px;
  color: #FAFBFF;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-step-card__title {
    font-size: 1.5rem;
    line-height: 1.875rem;
    margin: 0 0 24px;
  }
}
.pidu-membership-step-card__description {
  margin: 0;
  color: #FAFBFF;
  font-size: 1rem;
  line-height: 1.5rem;
}

.pidu-membership-process-feature {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 18px;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-process-feature {
    gap: 32px;
  }
}
.pidu-membership-process-feature__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pidu-membership-process-feature__icon img,
.pidu-membership-process-feature__icon span {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
}
.pidu-membership-process-feature__icon.is-empty span {
  opacity: 0;
}
.pidu-membership-process-feature__title {
  margin: 0;
  color: #FAFBFF;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375rem;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-process-feature__title {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}

.pidu-section--membership-faq {
  background: #ffffff;
  padding-top: 64px;
}
@media only screen and (min-width: 992px) {
  .pidu-section--membership-faq {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.pidu-membership-faq__title {
  margin: 0 0 32px;
  color: #31384A;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1rem;
}
@media only screen and (min-width: 992px) {
  .pidu-membership-faq__title {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-membership-faq__title {
    font-size: 2rem;
    line-height: 2rem;
  }
}

.pidu-faq-item {
  border-top: 1px solid #31384A;
}
.pidu-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: #191C24;
  text-align: left;
  cursor: pointer;
}
.pidu-faq-item__question {
  display: block;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.625rem;
}
@media only screen and (min-width: 992px) {
  .pidu-faq-item__question {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
.pidu-faq-item__icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  margin-top: 2px;
}
.pidu-faq-item__icon::before, .pidu-faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #31384A;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.pidu-faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.pidu-faq-item__panel {
  padding: 0 0 24px;
}
.pidu-faq-item__answer p {
  margin: 0;
  color: #31384A;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media only screen and (min-width: 992px) {
  .pidu-faq-item__answer p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.pidu-faq-item__answer p + p {
  margin-top: 14px;
}
.pidu-faq-item.is-open .pidu-faq-item__icon::after {
  opacity: 0;
}

.pidu-section--areas-overview {
  background: #ffffff;
}
@media only screen and (min-width: 992px) {
  .pidu-section--areas-overview {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.pidu-areas-overview__intro {
  row-gap: 24px;
  padding-bottom: 56px;
}
@media only screen and (min-width: 992px) {
  .pidu-areas-overview__intro {
    row-gap: 0;
    padding-bottom: 76px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-areas-overview__intro {
    margin-left: -20px;
    margin-right: -20px;
    padding-bottom: 200px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-areas-overview__intro .col {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.pidu-areas-overview__lead {
  margin: 0;
  color: #191C24;
  font-weight: 400;
  line-height: 1.02;
  font-size: 2.125rem;
  margin-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .pidu-areas-overview__lead {
    font-size: 3.4375rem;
    margin-bottom: 32px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-areas-overview__copy {
    padding-top: 10px;
    margin-left: auto;
  }
}
.pidu-areas-overview__copy p {
  margin: 0;
  color: #31384A;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media only screen and (min-width: 992px) {
  .pidu-areas-overview__copy p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.pidu-areas-overview__copy p + p {
  margin-top: 12px;
}

.pidu-areas-list__item {
  padding-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .pidu-areas-list__item {
    padding-bottom: 56px;
  }
}
.pidu-areas-list__item + .pidu-areas-list__item {
  padding-top: 40px;
}
@media only screen and (min-width: 992px) {
  .pidu-areas-list__item + .pidu-areas-list__item {
    padding-top: 48px;
  }
}
.pidu-areas-list__description p {
  margin: 0;
  color: #31384A;
  font-size: 0.9375rem;
  line-height: 1.375rem;
}
@media only screen and (min-width: 992px) {
  .pidu-areas-list__description p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.pidu-areas-list__description p + p {
  margin-top: 16px;
}

.pidu-area-heading {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .pidu-area-heading {
    gap: 24px;
    margin-bottom: 0;
    padding-right: 32px;
  }
}
.pidu-area-heading__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 992px) {
  .pidu-area-heading__icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
}
.pidu-area-heading__icon img,
.pidu-area-heading__icon span {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.pidu-area-heading__icon.is-empty span {
  opacity: 0;
}
.pidu-area-heading__title {
  margin: 0;
  color: #191C24;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.625rem;
}
@media only screen and (min-width: 992px) {
  .pidu-area-heading__title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.pidu-section--areas-secondary {
  background: #BCBCB4;
}
@media only screen and (min-width: 992px) {
  .pidu-section--areas-secondary {
    padding-top: 96px;
    padding-bottom: 100px;
  }
}

.pidu-areas-secondary {
  row-gap: 40px;
}
@media only screen and (min-width: 992px) {
  .pidu-areas-secondary {
    row-gap: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-areas-secondary {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-areas-secondary .col {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.pidu-areas-secondary-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
@media only screen and (min-width: 992px) {
  .pidu-areas-secondary-card {
    gap: 24px;
  }
}
.pidu-areas-secondary-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 992px) {
  .pidu-areas-secondary-card__icon {
    width: 64px;
    height: 64px;
  }
}
.pidu-areas-secondary-card__icon img,
.pidu-areas-secondary-card__icon span {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.pidu-areas-secondary-card__icon.is-empty span {
  opacity: 0;
}
.pidu-areas-secondary-card__title {
  margin: 0;
  color: #191C24;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.625rem;
}
@media only screen and (min-width: 992px) {
  .pidu-areas-secondary-card__title {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}
.pidu-areas-secondary-card__description p {
  margin: 0;
  color: #31384A;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media only screen and (min-width: 992px) {
  .pidu-areas-secondary-card__description p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.pidu-areas-secondary-card__description p + p {
  margin-top: 12px;
}

.pidu-section--advocacy-scope {
  background: #ffffff;
}
@media only screen and (min-width: 992px) {
  .pidu-section--advocacy-scope {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.pidu-advocacy-scope__intro {
  row-gap: 24px;
  padding-bottom: 56px;
}
@media only screen and (min-width: 992px) {
  .pidu-advocacy-scope__intro {
    row-gap: 0;
    padding-bottom: 64px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-advocacy-scope__intro {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-advocacy-scope__intro .col {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.pidu-advocacy-scope__lead {
  margin: 0;
  color: #191C24;
  font-weight: 400;
  line-height: 1.02;
  font-size: 2.125rem;
  margin-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .pidu-advocacy-scope__lead {
    font-size: 3.4375rem;
    margin-bottom: 32px;
  }
}
.pidu-advocacy-scope__copy p {
  margin: 0;
  color: #31384A;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media only screen and (min-width: 992px) {
  .pidu-advocacy-scope__copy p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.pidu-advocacy-scope__copy p + p {
  margin-top: 12px;
}
.pidu-advocacy-scope__grid {
  row-gap: 36px;
}
@media only screen and (min-width: 992px) {
  .pidu-advocacy-scope__grid {
    row-gap: 64px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-advocacy-scope__grid {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-advocacy-scope__grid .col {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.pidu-advocacy-scope-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
@media only screen and (min-width: 992px) {
  .pidu-advocacy-scope-card {
    gap: 24px;
  }
}
.pidu-advocacy-scope-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
}
@media only screen and (min-width: 992px) {
  .pidu-advocacy-scope-card__icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
}
.pidu-advocacy-scope-card__icon img,
.pidu-advocacy-scope-card__icon span {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.pidu-advocacy-scope-card__icon.is-empty span {
  opacity: 0;
}
.pidu-advocacy-scope-card__title {
  margin: 0;
  color: #191C24;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.625rem;
}
@media only screen and (min-width: 992px) {
  .pidu-advocacy-scope-card__title {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}

.pidu-section--advocacy-standards {
  background: #BCBCB4;
}
@media only screen and (min-width: 992px) {
  .pidu-section--advocacy-standards {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.pidu-advocacy-standards__statement {
  margin: 0;
  color: #191C24;
  font-weight: 400;
  line-height: 1.04;
  font-size: 2.125rem;
}
@media only screen and (min-width: 992px) {
  .pidu-advocacy-standards__statement {
    font-size: 3.4375rem;
  }
}
.pidu-advocacy-standards__grid {
  row-gap: 36px;
  padding-top: 52px;
}
@media only screen and (min-width: 992px) {
  .pidu-advocacy-standards__grid {
    row-gap: 64px;
    padding-top: 72px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-advocacy-standards__grid {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-advocacy-standards__grid .col {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.pidu-advocacy-standards-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
@media only screen and (min-width: 992px) {
  .pidu-advocacy-standards-card {
    gap: 24px;
  }
}
.pidu-advocacy-standards-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
}
@media only screen and (min-width: 992px) {
  .pidu-advocacy-standards-card__icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
}
.pidu-advocacy-standards-card__icon img,
.pidu-advocacy-standards-card__icon span {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.pidu-advocacy-standards-card__icon.is-empty span {
  opacity: 0;
}
.pidu-advocacy-standards-card__title {
  margin: 0;
  color: #191C24;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.625rem;
}
@media only screen and (min-width: 992px) {
  .pidu-advocacy-standards-card__title {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}

.has-contact-hero .site-main {
  background: #edede6;
}

.pidu-section--contact-hero {
  background: #edede6;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 992px) {
  .pidu-section--contact-hero {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.pidu-contact-hero__content {
  max-width: 720px;
}
.pidu-contact-hero__title {
  margin: 0;
  color: #191C24;
  font-weight: 600;
  line-height: 1;
  font-size: 3rem;
}
@media only screen and (min-width: 992px) {
  .pidu-contact-hero__title {
    font-size: 3.4375rem;
  }
}
.pidu-contact-hero__description {
  margin: 24px 0 0;
  color: #31384A;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media only screen and (min-width: 992px) {
  .pidu-contact-hero__description {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

body.pidu-popup-open {
  overflow: hidden;
}

.pidu-section--contact-section {
  background: #edede6;
  padding-top: 24px;
}
@media only screen and (min-width: 992px) {
  .pidu-section--contact-section {
    padding-top: 24px;
    padding-bottom: 96px;
  }
}

.pidu-contact-section {
  row-gap: 48px;
}
@media only screen and (min-width: 992px) {
  .pidu-contact-section {
    row-gap: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-contact-section {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-contact-section .col {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.pidu-contact-form__intro {
  margin-bottom: 28px;
}
@media only screen and (min-width: 992px) {
  .pidu-contact-form__intro {
    margin-bottom: 32px;
  }
}
.pidu-contact-form__intro p {
  margin: 0;
  color: #31384A;
  font-size: 1rem;
  line-height: 1.5rem;
}
.pidu-contact-form__intro p + p {
  margin-top: 0;
}
.pidu-contact-form__inline-link, .pidu-contact-form__inline-link:link, .pidu-contact-form__inline-link:visited, .pidu-contact-form__inline-link:hover, .pidu-contact-form__inline-link:active {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.pidu-contact-form__shortcode .wpcf7 {
  width: 100%;
}
.pidu-contact-form__shortcode p {
  margin: 0;
  color: #31384A;
  font-size: 1rem;
  line-height: 1.5rem;
}
.pidu-contact-form__shortcode label {
  display: block;
  color: #31384A;
  font-size: 1rem;
  line-height: 1.5rem;
}
.pidu-contact-form__shortcode label .optional {
  color: #6F788D;
}
.pidu-contact-form__shortcode input[type=text],
.pidu-contact-form__shortcode input[type=email],
.pidu-contact-form__shortcode input[type=tel],
.pidu-contact-form__shortcode input[type=url],
.pidu-contact-form__shortcode textarea,
.pidu-contact-form__shortcode select {
  width: 100%;
  margin-bottom: 32px;
  padding: 14px 16px;
  border: 1px solid rgba(49, 56, 74, 0.7);
  background: #ffffff;
  color: #191C24;
  border-radius: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  transition: all 0.3s ease;
}
.pidu-contact-form__shortcode input[type=text]::placeholder,
.pidu-contact-form__shortcode input[type=email]::placeholder,
.pidu-contact-form__shortcode input[type=tel]::placeholder,
.pidu-contact-form__shortcode input[type=url]::placeholder,
.pidu-contact-form__shortcode textarea::placeholder,
.pidu-contact-form__shortcode select::placeholder {
  color: rgba(49, 56, 74, 0.72);
}
.pidu-contact-form__shortcode input[type=text]:focus,
.pidu-contact-form__shortcode input[type=email]:focus,
.pidu-contact-form__shortcode input[type=tel]:focus,
.pidu-contact-form__shortcode input[type=url]:focus,
.pidu-contact-form__shortcode textarea:focus,
.pidu-contact-form__shortcode select:focus {
  outline: none;
  border-color: #191C24;
}
.pidu-contact-form__shortcode input[type=text].wpcf7-not-valid,
.pidu-contact-form__shortcode input[type=email].wpcf7-not-valid,
.pidu-contact-form__shortcode input[type=tel].wpcf7-not-valid,
.pidu-contact-form__shortcode input[type=url].wpcf7-not-valid,
.pidu-contact-form__shortcode textarea.wpcf7-not-valid,
.pidu-contact-form__shortcode select.wpcf7-not-valid {
  border-color: #B20024;
}
.pidu-contact-form__shortcode input[type=text],
.pidu-contact-form__shortcode input[type=email],
.pidu-contact-form__shortcode input[type=tel],
.pidu-contact-form__shortcode input[type=url],
.pidu-contact-form__shortcode select {
  min-height: 54px;
}
.pidu-contact-form__shortcode textarea {
  min-height: 112px;
  resize: vertical;
}
.pidu-contact-form__shortcode .wpcf7-form-control-wrap {
  display: block;
  margin-top: 10px;
}
.pidu-contact-form__shortcode .wpcf7-not-valid-tip {
  margin-top: -24px;
  margin-bottom: 24px;
  color: #B20024;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.pidu-contact-form__shortcode .wpcf7-list-item {
  margin: 0;
}
.pidu-contact-form__shortcode .wpcf7-acceptance {
  display: block;
}
.pidu-contact-form__shortcode .wpcf7-checkbox,
.pidu-contact-form__shortcode .wpcf7-acceptance .wpcf7-list-item-label {
  color: #31384A;
  font-size: 1rem;
  line-height: 1.5625rem;
}
.pidu-contact-form__shortcode .wpcf7-acceptance .wpcf7-list-item-label a {
  text-decoration: underline;
}
.pidu-contact-form__shortcode .acceptance-wrap {
  margin-bottom: 32px;
}
.pidu-contact-form__shortcode input[type=checkbox] {
  width: 22px;
  height: 22px;
  margin-top: 0;
  margin-right: 12px;
  vertical-align: middle;
  accent-color: #191C24;
}
.pidu-contact-form__shortcode input[type=submit],
.pidu-contact-form__shortcode button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  background: #b30d33;
  color: #FAFBFF;
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.875rem;
  line-height: 0.875rem;
  transition: all 0.3s ease;
}
.pidu-contact-form__shortcode input[type=submit]:hover,
.pidu-contact-form__shortcode button[type=submit]:hover {
  background: #be123c;
}
.pidu-contact-form__shortcode .wpcf7-spinner {
  margin: 0 0 0 12px;
}
.pidu-contact-form__shortcode .wpcf7-response-output {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(49, 56, 74, 0.22);
  color: #31384A;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.wpcf7 form .wpcf7-response-output {
  margin-left: 0;
  margin-right: 0;
}

.pidu-contact-details__title, .pidu-contact-details__organization, .pidu-contact-details__details, .pidu-contact-details__address {
  margin: 0;
}
.pidu-contact-details__title {
  color: #191C24;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
}
@media only screen and (min-width: 992px) {
  .pidu-contact-details__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.pidu-contact-details__organization, .pidu-contact-details__details, .pidu-contact-details__address {
  color: #31384A;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.pidu-contact-details__organization {
  margin-top: 24px;
}
.pidu-contact-details__details {
  margin-top: 2px;
}
.pidu-contact-details__address {
  margin-top: 28px;
}
.pidu-contact-details__action {
  margin-top: 28px;
}

.pidu-patronage-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
}
.pidu-patronage-popup[hidden] {
  display: none;
}
.pidu-patronage-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 28, 36, 0.28);
}
.pidu-patronage-popup__dialog {
  position: relative;
  width: min(100%, 1520px);
  height: 100dvh;
  margin: 0 auto;
  background: #f5f5f5;
  overflow-y: auto;
  outline: none;
}
.pidu-patronage-popup__shell {
  min-height: 100%;
  padding: 20px 20px 32px;
}
@media only screen and (min-width: 992px) {
  .pidu-patronage-popup__shell {
    padding: 20px 40px 40px;
  }
}
.pidu-patronage-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  padding: 0;
  border: 1px solid #191C24;
  background: transparent;
  border-radius: 999px;
}
.pidu-patronage-popup__close span:not(.screen-reader-text) {
  position: absolute;
  width: 22px;
  height: 1px;
  background: #191C24;
}
.pidu-patronage-popup__close span:not(.screen-reader-text):first-child {
  transform: rotate(45deg);
}
.pidu-patronage-popup__close span:not(.screen-reader-text):nth-child(2) {
  transform: rotate(-45deg);
}
.pidu-patronage-popup__topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-right: 68px;
}
.pidu-patronage-popup__brand {
  display: inline-flex;
  align-items: center;
}
.pidu-patronage-popup__brand img {
  width: 110px;
  height: auto;
}
@media only screen and (min-width: 992px) {
  .pidu-patronage-popup__brand img {
    width: 140px;
  }
}
.pidu-patronage-popup__lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid #31384A;
  color: #191C24;
  border-radius: 999px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.pidu-patronage-popup__hero {
  margin-top: 56px;
}
@media only screen and (min-width: 992px) {
  .pidu-patronage-popup__hero {
    margin-top: 64px;
  }
}
.pidu-patronage-popup__title {
  margin: 0;
  color: #191C24;
  font-weight: 400;
  font-size: 2.625rem;
  line-height: 1.05;
}
@media only screen and (min-width: 992px) {
  .pidu-patronage-popup__title {
    font-size: 3.625rem;
  }
}
.pidu-patronage-popup__divider {
  height: 1px;
  margin-top: 32px;
  background: rgba(49, 56, 74, 0.5);
}
@media only screen and (min-width: 992px) {
  .pidu-patronage-popup__divider {
    margin-top: 36px;
  }
}
.pidu-patronage-popup__body {
  padding-top: 24px;
}
@media only screen and (min-width: 992px) {
  .pidu-patronage-popup__body {
    padding-top: 32px;
  }
}
.pidu-patronage-popup__stepper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
@media only screen and (min-width: 992px) {
  .pidu-patronage-popup__stepper {
    gap: 20px;
    margin-bottom: 36px;
  }
}
.pidu-patronage-popup__stepper-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(49, 56, 74, 0.72);
}
.pidu-patronage-popup__stepper-item.is-active {
  color: #B20024;
}
.pidu-patronage-popup__stepper-item.is-active .pidu-patronage-popup__stepper-pill,
.pidu-patronage-popup__stepper-item.is-active .pidu-patronage-popup__stepper-line {
  border-color: rgba(178, 0, 36, 0.7);
  color: #B20024;
}
.pidu-patronage-popup__stepper-item.is-complete {
  color: #31384A;
}
.pidu-patronage-popup__stepper-item.is-complete .pidu-patronage-popup__stepper-pill,
.pidu-patronage-popup__stepper-item.is-complete .pidu-patronage-popup__stepper-line {
  border-color: rgba(49, 56, 74, 0.58);
  color: #31384A;
}
.pidu-patronage-popup__stepper-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px dashed rgba(49, 56, 74, 0.5);
  border-radius: 999px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.pidu-patronage-popup__stepper-line {
  display: none;
  width: 96px;
  border-top: 1px dashed rgba(49, 56, 74, 0.5);
}
@media only screen and (min-width: 992px) {
  .pidu-patronage-popup__stepper-line {
    display: block;
  }
}
.pidu-patronage-popup__form-wrap, .pidu-patronage-popup__success {
  max-width: 920px;
}
.pidu-patronage-popup__success {
  padding-top: 12px;
}
.pidu-patronage-popup__success-title {
  margin: 0;
  color: #191C24;
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 2.625rem;
}
.pidu-patronage-popup__success-text {
  margin: 22px 0 0;
  color: #31384A;
  font-size: 1.125rem;
  line-height: 1.875rem;
}
.pidu-patronage-popup [data-pidu-form-step][hidden] {
  display: none;
}
.pidu-patronage-popup__step-title {
  margin: 0 0 22px;
  color: #31384A;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 2.125rem;
}
@media only screen and (min-width: 992px) {
  .pidu-patronage-popup__step-title {
    font-size: 2.25rem;
    line-height: 2.625rem;
  }
}
.pidu-patronage-popup__step-intro, .pidu-patronage-popup__info-note {
  margin: 0 0 22px;
  color: #31384A;
  font-size: 1.125rem;
  line-height: 1.875rem;
}
.pidu-patronage-popup__step-intro a, .pidu-patronage-popup__info-note a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.pidu-patronage-popup__field, .pidu-patronage-popup__field-inline {
  margin-bottom: 26px;
}
.pidu-patronage-popup__field-inline {
  max-width: 368px;
}
.pidu-patronage-popup__choice-group, .pidu-patronage-popup__check-group {
  margin-bottom: 26px;
}
.pidu-patronage-popup__file {
  margin-bottom: 26px;
}
.pidu-patronage-popup__file-label {
  display: block;
  margin-bottom: 10px;
  color: #31384A;
  font-size: 1.125rem;
  line-height: 1.875rem;
}
.pidu-patronage-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
@media only screen and (min-width: 992px) {
  .pidu-patronage-popup__actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.pidu-patronage-popup__actions-main {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media only screen and (min-width: 992px) {
  .pidu-patronage-popup__actions-main {
    justify-content: flex-end;
  }
}
.pidu-patronage-popup .optional {
  color: #6F788D;
}
.pidu-patronage-popup .wpcf7 {
  width: 100%;
}
.pidu-patronage-popup .wpcf7-form {
  width: 100%;
}
.pidu-patronage-popup .wpcf7-form-control-wrap {
  display: block;
  margin-top: 10px;
}
.pidu-patronage-popup label {
  display: block;
  color: #31384A;
  font-size: 1.125rem;
  line-height: 1.875rem;
}
.pidu-patronage-popup input[type=text],
.pidu-patronage-popup input[type=email],
.pidu-patronage-popup input[type=tel],
.pidu-patronage-popup input[type=url],
.pidu-patronage-popup input[type=number],
.pidu-patronage-popup textarea,
.pidu-patronage-popup select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(49, 56, 74, 0.7);
  background: #ffffff;
  color: #191C24;
  border-radius: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  transition: all 0.3s ease;
}
.pidu-patronage-popup input[type=text]::placeholder,
.pidu-patronage-popup input[type=email]::placeholder,
.pidu-patronage-popup input[type=tel]::placeholder,
.pidu-patronage-popup input[type=url]::placeholder,
.pidu-patronage-popup input[type=number]::placeholder,
.pidu-patronage-popup textarea::placeholder,
.pidu-patronage-popup select::placeholder {
  color: rgba(49, 56, 74, 0.56);
}
.pidu-patronage-popup input[type=text]:focus,
.pidu-patronage-popup input[type=email]:focus,
.pidu-patronage-popup input[type=tel]:focus,
.pidu-patronage-popup input[type=url]:focus,
.pidu-patronage-popup input[type=number]:focus,
.pidu-patronage-popup textarea:focus,
.pidu-patronage-popup select:focus {
  outline: none;
  border-color: #191C24;
}
.pidu-patronage-popup input[type=text].wpcf7-not-valid,
.pidu-patronage-popup input[type=email].wpcf7-not-valid,
.pidu-patronage-popup input[type=tel].wpcf7-not-valid,
.pidu-patronage-popup input[type=url].wpcf7-not-valid,
.pidu-patronage-popup input[type=number].wpcf7-not-valid,
.pidu-patronage-popup textarea.wpcf7-not-valid,
.pidu-patronage-popup select.wpcf7-not-valid {
  border-color: #B20024;
}
.pidu-patronage-popup input[type=text],
.pidu-patronage-popup input[type=email],
.pidu-patronage-popup input[type=tel],
.pidu-patronage-popup input[type=url],
.pidu-patronage-popup input[type=number],
.pidu-patronage-popup select {
  min-height: 56px;
}
.pidu-patronage-popup textarea {
  min-height: 120px;
  height: 120px;
  resize: vertical;
}
.pidu-patronage-popup input[type=file] {
  width: auto;
  max-width: 100%;
  color: #31384A;
  font-size: 1rem;
  line-height: 1.5rem;
}
.pidu-patronage-popup input[type=file]::file-selector-button {
  min-height: 38px;
  margin-right: 12px;
  padding: 8px 16px;
  border: 1px solid rgba(49, 56, 74, 0.72);
  background: transparent;
  color: #191C24;
  cursor: pointer;
  border-radius: 999px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: all 0.3s ease;
}
.pidu-patronage-popup .wpcf7-radio,
.pidu-patronage-popup .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.pidu-patronage-popup .wpcf7-list-item {
  margin: 0;
}
.pidu-patronage-popup .wpcf7-list-item-label {
  color: #31384A;
  font-size: 1rem;
  line-height: 1.5rem;
}
.pidu-patronage-popup input[type=radio],
.pidu-patronage-popup input[type=checkbox] {
  width: 22px;
  height: 22px;
  margin-top: 0;
  margin-right: 12px;
  vertical-align: middle;
  accent-color: #191C24;
}
.pidu-patronage-popup input[type=submit],
.pidu-patronage-popup button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  background: #b30d33;
  color: #FAFBFF;
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.875rem;
  line-height: 0.875rem;
  transition: all 0.3s ease;
}
.pidu-patronage-popup input[type=submit]:hover,
.pidu-patronage-popup button[type=submit]:hover {
  background: #be123c;
}
.pidu-patronage-popup .wpcf7-spinner {
  margin: 0 0 0 12px;
}
.pidu-patronage-popup .wpcf7-not-valid-tip {
  margin-top: 10px;
  color: #B20024;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.pidu-patronage-popup .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(49, 56, 74, 0.22);
  color: #31384A;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.pidu-section--join-cta {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FAFBFF;
}
@media only screen and (min-width: 992px) {
  .pidu-section--join-cta {
    padding-top: 100px;
    padding-bottom: 376px;
  }
}
.pidu-section--join-cta .row {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (min-width: 1200px) {
  .pidu-section--join-cta .row {
    margin-left: -40px;
    margin-right: -40px;
  }
}
.pidu-section--join-cta .row .col {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1200px) {
  .pidu-section--join-cta .row .col {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-section--join-cta .row .col:last-of-type {
    border-left: 1px solid #FAFBFF;
  }
}

.pidu-join__description {
  margin: 0;
  margin-bottom: 32px;
  color: #FAFBFF;
  line-height: 1.16;
  font-size: 1rem;
}
@media only screen and (min-width: 992px) {
  .pidu-join__description {
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 1200px) {
  .pidu-join__description {
    font-size: 2.375rem;
    margin-bottom: 0;
  }
}
.pidu-join__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media only screen and (min-width: 992px) {
  .pidu-join__actions {
    gap: 18px;
    align-items: flex-start;
  }
}
.pidu-join__actions .btn {
  border-color: #FAFBFF;
}
@media only screen and (min-width: 992px) {
  .pidu-join__actions .btn {
    padding: 10px 16px;
  }
}/*# sourceMappingURL=main.min.css.map */