@font-face {
  font-family: Roboto;
  src: url("/assets/fonts/roboto-regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: RobotoBold;
  src: url("/assets/fonts/roboto-700.woff2") format("woff2");
  font-display: swap;
}
:root {
  --pda-color-white: #fff;
  --pda-color-white-dark: #fdfdfd;
  --pda-primary-color: #cf1f26;
  --pda-primary-color-dark: #8a1519;
  --pda-primary-color-light: #efb4b7;
  --pda-primary-color-lighter: #fae6e7;
  --pda-main-font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  --pda-heading-font-family: RobotoBold, "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--pda-main-font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--pda-heading-font-family);
  font-weight: 600;
}

h3 {
  margin-bottom: 0.5rem;
}

.site-header {
  border-top: none;
  border-top: 5px solid var(--pda-primary-color);
}

.site-header__logo {
  background-color: var(--pda-color-white-dark);
  padding-block: 1.5rem 0.5rem;
}

.site-header__logo svg {
  height: 2.625rem;
  width: auto;
  transition: transform 0.2s ease;
}

.site-header__logo svg:hover {
  transform: translateY(-6px);
}

.site-footer {
  background-color: var(--pda-primary-color);
  color: var(--pda-color-white-dark);
}

.site-footer__copyright {
  border-top: dashed 1px rgba(255, 255, 255, 0.5);
  padding-top: 30px;
}

.footer-col-wrapper {
  color: var(--pda-color-white-dark);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col {
  width: calc(33% - 15px);
}

@media screen and (max-width: 600px) {
  .footer-col {
    float: none;
    width: -webkit-calc(50% - (30px / 2));
    width: calc(50% - 15px);
  }
}
div#banking-info span {
  display: inline-block;
}

/* -- Styling intro goals --*/
.goals-list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 600px) {
  .goals-list {
    flex-direction: row;
  }
  .goals-list .goal-item {
    width: 50%;
  }
  .goals-list .goal-item:first-child {
    margin-right: 0.5rem;
  }
  .goals-list .goal-item:last-child {
    margin-left: 0.5rem;
  }
}

.goal-item {
  background-color: var(--pda-primary-color-lighter);
  padding: 1rem;
  margin: 0.5rem 0 0.5rem 0;
}
.goal-item h3 {
  letter-spacing: 1px;
}
.goal-item h3::after {
  content: "";
  display: block;
  border-bottom: solid 5px var(--pda-primary-color);
  width: 46px;
  padding: 0.2rem 0 0.2rem 0;
}

/* -- Styling program card --*/
.program-card {
  border-left: 4px solid var(--pda-primary-color);
  background-color: var(--pda-primary-color-lighter);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
}
.program-card p {
  margin: 0 0 0.75rem 0;
}

.program-card__link {
  font-family: var(--pda-heading-font-family);
  font-weight: 600;
}

/* -- Styling links --*/
a {
  color: var(--pda-primary-color);
}

a:visited {
  color: var(--pda-primary-color-dark);
}

a:focus-visible,
button:focus-visible,
label:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--pda-primary-color);
  outline-offset: 2px;
}

.site-footer a {
  color: var(--pda-color-white);
}

.site-footer a:focus-visible {
  outline-color: var(--pda-color-white);
}

/* -- Styling language switcher */
ul#language-switcher {
  padding-block: 0.5rem;
  margin: 0;
  list-style-type: none !important;
  display: flex;
  gap: 0.5rem;
  justify-content: end;
}

/* Styling active elements */
a.current,
.active {
  font-weight: 600;
  color: var(--pda-primary-color);
}

/* -- Styling social icons --*/
.site-footer__copyright .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--pda-color-white);
  color: var(--pda-color-white);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.social-icon:hover {
  background-color: var(--pda-color-white);
  color: var(--pda-primary-color);
}
.social-icon:visited {
  color: var(--pda-color-white);
}

.svg-icon {
  fill: var(--pda-primary-color-lighter);
}

/* -- Styling 404 page --*/
.not-found {
  margin: 40px auto;
  max-width: 600px;
  text-align: center;
}
.not-found h1 {
  margin: 30px 0;
  font-size: 4em;
  line-height: 1;
  letter-spacing: -1px;
}
.not-found img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

/* -- Skip link --*/
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--pda-primary-color);
  color: var(--pda-color-white);
  padding: 0.5rem 1rem;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus {
  top: 0;
}

/* -- prefers-reduced-motion --*/
@media (prefers-reduced-motion: reduce) {
  .site-header__logo svg,
  .social-icon {
    transition: none;
  }
  .site-header__logo svg:hover {
    transform: none;
  }
}
/* Misc styling */
.label {
  width: 7rem;
}

.lead {
  font-size: 1.3rem;
  letter-spacing: 1px;
}

/* Utilities */
.mt-3 {
  margin-top: 1.75rem;
}

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