/*!****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/scss/main.scss ***!
  \****************************************************************************************************************/
#main-nav {
  background-color: #fff;
  margin: 0 auto;
  display: flex;
  position: relative;
  z-index: 1200;
}
@media (max-width: 991px) {
  #main-nav {
    flex-wrap: wrap;
  }
}
#main-nav #navbarNavDropdown {
  display: flex;
  align-items: center;
  overflow: visible;
}
@media (max-width: 991px) {
  #main-nav #navbarNavDropdown {
    flex-basis: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1201;
    background: #ffffff;
    border-top: 1px solid rgba(35, 70, 97, 0.12);
    box-shadow: 0 18px 30px -24px rgba(0, 0, 0, 0.35);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease-in-out, visibility 0s linear 0.15s;
  }
  #main-nav #navbarNavDropdown.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.15s ease-in-out;
  }
}
#main-nav span.brand-container {
  flex-grow: 1;
}
@media (max-width: 576px) {
  #main-nav span.brand-container .brand--text {
    display: none;
  }
}
#main-nav a.brand-link {
  height: 100%;
  display: inline-flex;
  align-items: center;
  margin-left: 20px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
}
#main-nav a.brand-link::before {
  content: "";
  background-image: url(wtha_logo_svg_blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.navbar-toggler {
  display: none;
  margin: 24px;
  border: 0;
  background: transparent;
  color: #234661;
  padding: 0.25rem;
  line-height: 1;
}
@media (max-width: 991px) {
  .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}
.navbar-toggler:focus-visible {
  outline: 2px solid rgba(35, 70, 97, 0.35);
  outline-offset: 2px;
}

.navbar-toggler-icon {
  display: block;
  width: 1.75rem;
  height: 2px;
  background: #234661;
  border-radius: 999px;
  position: relative;
  transition: background 0.2s ease-in-out;
}
.navbar-toggler-icon::before, .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.75rem;
  height: 2px;
  background: #234661;
  border-radius: 999px;
  transition: top 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.navbar-toggler-icon::before {
  top: -0.48rem;
}
.navbar-toggler-icon::after {
  top: 0.48rem;
}

.navbar-toggler.is-active .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler.is-active .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler.is-active .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

#main-menu {
  display: flex;
  justify-content: flex-end;
  margin: 24px;
  list-style: none;
  position: relative;
  overflow: visible;
}
@media (max-width: 991px) {
  #main-menu {
    flex-direction: column;
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 0.45rem 0 0.65rem;
  }
}
#main-menu li {
  margin: 0 16px;
  position: relative;
}
@media (max-width: 991px) {
  #main-menu li {
    margin: 0;
  }
  #main-menu li::after {
    content: "";
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 0;
    height: 1px;
    background: rgba(35, 70, 97, 0.1);
  }
}
#main-menu li a {
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 991px) {
  #main-menu li a {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 1rem 1.25rem;
    line-height: 1.3;
  }
}
#main-menu li.menu-item-has-children > a {
  position: relative;
  padding-right: 1.4rem;
}
#main-menu li.menu-item-has-children > a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
}
@media (max-width: 991px) {
  #main-menu li.menu-item-has-children > a {
    padding-right: 1.25rem;
  }
  #main-menu li.menu-item-has-children > a::before {
    content: none;
  }
}
#main-menu li.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.4);
  padding: 0.75rem 0;
  list-style: none;
  min-width: 220px;
  z-index: 10;
}
#main-menu li.menu-item-has-children .sub-menu li {
  margin: 0;
  padding: 0;
}
#main-menu li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.95rem;
}
#main-menu li.menu-item-has-children .sub-menu li a:hover {
  background: #f7f7f7;
}
@media (max-width: 991px) {
  #main-menu li.menu-item-has-children .sub-menu {
    display: block;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0.35rem;
    min-width: 0;
  }
  #main-menu li.menu-item-has-children .sub-menu li {
    border-top: 0;
    margin: 0;
  }
  #main-menu li.menu-item-has-children .sub-menu li::after {
    content: "";
    position: absolute;
    left: 2.15rem;
    right: 1.25rem;
    bottom: 0;
    height: 1px;
    background: rgba(35, 70, 97, 0.08);
  }
  #main-menu li.menu-item-has-children .sub-menu li:last-child::after {
    content: none;
  }
  #main-menu li.menu-item-has-children .sub-menu li a {
    display: block;
    padding: 0.75rem 1.25rem 0.75rem 2.15rem;
    white-space: normal;
    font-weight: 600;
  }
  #main-menu li.menu-item-has-children .sub-menu li a:hover {
    background: rgba(35, 70, 97, 0.05);
  }
}
#main-menu li.menu-item-has-children:hover > .sub-menu, #main-menu li.menu-item-has-children:focus-within > .sub-menu {
  display: block;
}
#main-menu li.menu-item-has-children:hover > a::before, #main-menu li.menu-item-has-children:focus-within > a::before {
  content: "\f106";
}
#main-menu li.menu-item-has-children:last-child > .sub-menu {
  right: 0;
  left: auto;
}
@media (max-width: 991px) {
  #main-menu > li:last-child::after {
    content: none;
  }
}

.mobile-nav-overlay {
  display: none;
}

@media (max-width: 991px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    border: 0;
    margin: 0;
    padding: 0;
    background: rgba(14, 28, 41, 0.52);
    transition: opacity 0.2s ease-in-out;
  }

  body.mobile-nav-open .mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}
.twd-front-page-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 25vh;
  background-size: cover;
  text-align: center;
  color: #ffffff;
  background-color: #234661;
}

h1 {
  font-size: 3rem;
  margin: 1rem;
}
@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
    margin: 0.5rem;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 1.2rem;
  }
}

.site-footer {
  display: flex;
  justify-content: center;
  padding: 2rem;
  background-color: #234661;
  color: white;
  text-align: center;
}

#wrapper-footer,
#wrapper-footer-full {
  background-color: #234661;
  color: white;
}

.footer-widget {
  display: flex;
  justify-content: space-around;
  gap: 4rem;
  width: 100%;
}
@media (max-width: 991px) {
  .footer-widget {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.footer-widget ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 2rem 0 3rem;
  gap: 1rem;
}
.footer-widget ul li a {
  color: white;
  margin: 2rem 0;
  text-decoration: none;
  border-bottom: 0;
}
.footer-widget ul li a:hover {
  color: white;
  border-bottom: 1px solid white;
}

h3.widget-title {
  font-size: 1.3rem;
  margin: 1rem 0;
}

#menu-navigation {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
#menu-navigation li {
  margin: 1rem;
}
#menu-navigation li a {
  color: white;
  text-decoration: none;
  border-bottom: 0;
}
#menu-navigation li a:hover {
  color: white;
  border-bottom: 1px solid white;
}

.twd-copyright {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media (max-width: 767px) {
  .twd-copyright {
    margin-bottom: 3rem;
  }
}

.twd_footer--social-icons .twd-social-links {
  list-style: none;
  flex-direction: row;
  width: 50%;
  min-width: 260px;
  margin: 2rem 0;
  padding: 0;
  gap: 2rem;
}
.twd_footer--social-icons .twd-social-links li a {
  color: white;
  text-decoration: none;
  border-bottom: 0;
  transition: opacity 0.2s ease;
}
.twd_footer--social-icons .twd-social-links li a:hover {
  opacity: 0.8;
  text-decoration: none;
  border-bottom: 0;
}
@media (max-width: 991px) {
  .twd_footer--social-icons .twd-social-links {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }
}

.twd_footer--nav-section {
  flex: 1;
}
.twd_footer--nav-section:first-child {
  flex: 2;
}
.twd_footer--nav-section h5 {
  color: white;
  font-size: 20px;
}

.twd-fp__intro {
  background-image: url(cropped-wpheader-20.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  padding: 4rem;
  color: white;
  margin-bottom: 0;
}
.twd-fp__intro::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 70, 95, 0.85);
  z-index: 1;
}
@media (max-width: 576px) {
  .twd-fp__intro {
    padding: 1rem;
  }
}

.twd-fp__intro-sections {
  display: flex;
  justify-content: space-around;
  z-index: 2;
  position: relative;
}
@media (max-width: 998px) {
  .twd-fp__intro-sections {
    flex-direction: column;
    align-items: center;
  }
}

.twd-fp__intro-quote {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-grow: 1;
}
.twd-fp__intro-quote h1 {
  color: white;
  margin: 0;
}
.twd-fp__intro-quote .hero--subtitle {
  font-size: 2rem;
  line-height: 1.5;
  font-style: italic;
}
.twd-fp__intro-quote p.ctas {
  display: flex;
  gap: 30px;
}
@media (max-width: 576px) {
  .twd-fp__intro-quote {
    margin: 30px 0;
  }
  .twd-fp__intro-quote .hero--subtitle {
    font-size: 1.8rem;
    text-align: center;
  }
  .twd-fp__intro-quote p.ctas {
    display: none;
  }
}

.twd-fp__intro-video {
  position: relative;
  flex-shrink: 1;
  width: 50%;
  max-width: 560px;
  margin: 0 auto;
  padding-bottom: 22%;
  height: 0;
  overflow: hidden;
}
.twd-fp__intro-video iframe, .twd-fp__intro-video object, .twd-fp__intro-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1465px) and (min-width: 998px) {
  .twd-fp__intro-video {
    margin-top: 3vw;
  }
}
@media (max-width: 998px) {
  .twd-fp__intro-video {
    width: 100%;
    padding-bottom: 57%;
  }
}

.twd-fp__intro-cta--mobile {
  display: none;
}
@media (max-width: 576px) {
  .twd-fp__intro-cta--mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 1.5rem;
  }
  .twd-fp__intro-cta--mobile a.btn {
    width: 100%;
    text-align: center;
  }
}

.twd-alert {
  background-color: #BC1823;
  color: white;
  padding: 0.75rem 0;
  margin: 0;
  font-size: 0.95rem;
}
.twd-alert .twd-alert__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 576px) {
  .twd-alert .twd-alert__inner {
    flex-direction: column;
    text-align: center;
  }
}
.twd-alert h3 {
  color: white;
  margin-bottom: 0.25rem;
}
.twd-alert a {
  color: white;
  text-decoration: underline;
}

.wth-why-now {
  background-color: #f7f7f7;
  padding: 4rem 1rem;
  margin-bottom: 0;
}
.wth-why-now .wth-why-now__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.wth-why-now .wth-why-now__header {
  text-align: center;
}
.wth-why-now .wth-why-now__header .wth-why-now__eyebrow {
  font-variant: small-caps;
  letter-spacing: 1px;
  color: #BC1823;
  margin-bottom: 0.5rem;
}
.wth-why-now .wth-why-now__header h2 {
  margin-bottom: 1rem;
  color: #234661;
}
.wth-why-now .wth-why-now__header .wth-why-now__lead {
  max-width: 840px;
  margin: 0 auto;
  color: #5B666D;
  line-height: 1.6;
}
.wth-why-now .wth-why-now__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .wth-why-now .wth-why-now__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .wth-why-now .wth-why-now__grid {
    grid-template-columns: 1fr;
  }
}
.wth-why-now .wth-why-now__card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wth-why-now .wth-why-now__card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.wth-why-now .wth-why-now__card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.wth-why-now .wth-why-now__card-body h3 {
  color: #234661;
  margin: 0;
}
.wth-why-now .wth-why-now__card-body p {
  color: #5B666D;
  line-height: 1.6;
  margin: 0;
}
.wth-why-now .wth-why-now__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.wth-why-now .wth-why-now__cta .btn {
  min-width: 200px;
  text-align: center;
}
.wth-why-now .wth-why-now__cta .btn:focus-visible {
  outline: 2px solid #d2d926;
  outline-offset: 3px;
}
@media (max-width: 576px) {
  .wth-why-now .wth-why-now__cta {
    flex-direction: column;
  }
  .wth-why-now .wth-why-now__cta .btn {
    width: 100%;
  }
}
.wth-why-now .wth-why-now__reassurance {
  text-align: center;
  color: #234661;
  font-weight: 600;
  margin: 0;
}
.wth-why-now .wth-why-now__reassurance .wth-why-now__reassurance-link {
  color: #234661;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  position: relative;
}
.wth-why-now .wth-why-now__reassurance .wth-why-now__reassurance-link:hover {
  text-decoration: underline;
  border-bottom: 0;
}
.wth-why-now .wth-why-now__reassurance .wth-why-now__reassurance-link::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f35d";
  display: inline-block;
  margin-left: 0.5rem;
  position: relative;
  top: 2px;
  right: 0;
}

.twd-fp__about {
  background-color: rgba(44, 70, 95, 0.85);
  padding: 4rem 1rem;
}
@media (max-width: 576px) {
  .twd-fp__about {
    padding: 0;
  }
}
.twd-fp__about .twd-fp__about-inner {
  max-width: 2000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media (max-width: 1250px) {
  .twd-fp__about .twd-fp__about-inner {
    display: block;
  }
}
.twd-fp__about .twd-fp__about-inner .twd-fp__about-image {
  order: 1;
  flex: 0 0 40%;
  max-width: 520px;
}
.twd-fp__about .twd-fp__about-inner .twd-fp__about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1250px) {
  .twd-fp__about .twd-fp__about-inner .twd-fp__about-image {
    order: initial;
    float: left;
    width: 45%;
    min-width: 240px;
    margin: 0 1.5rem 1rem 0;
  }
}
@media (max-width: 576px) {
  .twd-fp__about .twd-fp__about-inner .twd-fp__about-image {
    float: none;
    width: 100%;
    max-width: none;
    margin: 0;
  }
}
.twd-fp__about .twd-fp__about-inner .twd-fp__about-content {
  order: 2;
  flex: 1 1 55%;
  padding: 0;
  color: white;
}
.twd-fp__about .twd-fp__about-inner .twd-fp__about-content h2 {
  color: white;
  margin-bottom: 1.5rem;
}
.twd-fp__about .twd-fp__about-inner .twd-fp__about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
@media (max-width: 1250px) {
  .twd-fp__about .twd-fp__about-inner .twd-fp__about-content {
    order: initial;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
}
@media (max-width: 576px) {
  .twd-fp__about .twd-fp__about-inner .twd-fp__about-content {
    padding: 1.5rem;
  }
}
.twd-fp__about .twd-fp__about-inner .twd-fp__about-statements {
  order: 3;
  flex: 1 0 100%;
  clear: both;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.twd-fp__about .twd-fp__about-inner .twd-fp__about-statements .twd-fp__about-statement {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
}
.twd-fp__about .twd-fp__about-inner .twd-fp__about-statements .twd-fp__about-statement h3 {
  color: white;
  margin: 0 0 0.75rem;
}
.twd-fp__about .twd-fp__about-inner .twd-fp__about-statements .twd-fp__about-statement p {
  margin: 0;
  color: white;
  line-height: 1.6;
  font-weight: 600;
}
@media (max-width: 991px) {
  .twd-fp__about .twd-fp__about-inner .twd-fp__about-statements {
    order: initial;
    margin-top: 1rem;
  }
}
@media (max-width: 576px) {
  .twd-fp__about .twd-fp__about-inner .twd-fp__about-statements {
    padding: 0 1.5rem 1.5rem;
  }
}
@media (min-width: 1576px) {
  .twd-fp__about .twd-fp__about-inner {
    display: grid;
    grid-template-columns: minmax(320px, 40%) 1fr;
    grid-template-areas: "image content" "image statements";
    align-items: start;
    gap: 2rem 3rem;
  }
  .twd-fp__about .twd-fp__about-inner .twd-fp__about-image {
    grid-area: image;
    float: none;
    width: 100%;
    max-width: none;
    margin: 0;
    align-self: stretch;
  }
  .twd-fp__about .twd-fp__about-inner .twd-fp__about-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .twd-fp__about .twd-fp__about-inner .twd-fp__about-content {
    grid-area: content;
    order: 0;
  }
  .twd-fp__about .twd-fp__about-inner .twd-fp__about-statements {
    grid-area: statements;
    order: 0;
    margin-top: 1.5rem;
  }
}

.twd-fp__board {
  padding-top: 2rem;
}
.twd-fp__board h2 {
  text-align: center;
}
.twd-fp__board .board-members-gallery {
  max-width: 100%;
}
.twd-fp__board .board-members-gallery figure img {
  min-height: 350px;
}
.twd-fp__board .board-members-gallery figure figcaption {
  color: #234661;
  font-size: 24px;
  font-family: "Lora", "serif";
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: 1px;
}
.twd-fp__board .board-members-gallery figure figcaption .member-role {
  font-size: 24px;
  color: #5B666D;
}

.twd-fp__help-content {
  max-width: 800px;
  margin: 0 auto;
  background: #f7f7f7;
  padding: 3rem;
}
.twd-fp__help-content h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.twd-fp__help-content p {
  margin-bottom: 2rem;
}
.twd-fp__help-content p .callout {
  text-transform: uppercase;
}

@media (max-width: 576px) {
  .twd-fp__help {
    margin-bottom: 0;
  }
}

.twd-fp__help-cta {
  display: flex;
  float: right;
  flex-direction: column;
  padding: 0 2rem 2rem 2rem;
  gap: 1.6rem;
  text-align: center;
}
.twd-fp__help-cta--mobile {
  display: none;
}
@media (max-width: 991px) {
  .twd-fp__help-cta {
    display: none;
  }
  .twd-fp__help-cta--mobile {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.twd-fp__location {
  display: flex;
  justify-content: center;
  gap: 4rem;
  background-image: url(bucks-county-map.jpg);
  background-repeat: no-repeat;
  background-size: 185%;
  background-position: center;
  position: relative;
  margin-bottom: 0;
  padding: 3rem;
}
.twd-fp__location::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
@media (max-width: 991px) {
  .twd-fp__location {
    flex-direction: column;
  }
}
.twd-fp__location div {
  z-index: 2;
}
@media (min-width: 991px) {
  .twd-fp__location div {
    max-width: 500px;
  }
}
.twd-fp__location h3 {
  text-align: center;
  margin-bottom: 3rem;
}
.twd-fp__location ul li {
  list-style: none;
  margin: 1rem 0;
}
.twd-fp__location ul li a {
  font-size: 28px;
}
@media (max-width: 991px) {
  .twd-fp__location h3 {
    margin-bottom: 1rem;
  }
  .twd-fp__location ul {
    margin-bottom: 2rem;
    text-align: center;
  }
  .twd-fp__location ul li a {
    font-size: 20px;
  }
  .twd-fp__location .twd-fp__location-societies {
    margin-bottom: 2rem;
  }
}

.site-main a[target=_blank] {
  position: relative;
}
.site-main a[target=_blank]::after {
  content: "\f35d";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 4px;
  font-size: 12px;
  top: 7px;
}

.textwidget.custom-html-widget {
  height: 100%;
}

#footer-full-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 991px) {
  #footer-full-content {
    justify-content: space-around;
    flex-direction: row;
  }
}

.footer-widget {
  margin-top: 2rem;
}

.twd-sidbar-widget-area {
  position: sticky;
  top: 50px;
}

.twd-further-reading-list a {
  text-transform: none;
}

.twd-page--content {
  display: flex;
  gap: 2rem;
}
@media (max-width: 1440px) {
  .twd-page--content {
    flex-direction: column;
  }
}

#sidebar {
  padding: 4rem;
  background-color: #f7f7f7;
  flex: 1;
}
@media (max-width: 1440px) {
  #sidebar {
    display: none;
  }
}

.twd-page--posts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.twd-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 991px) {
  .twd-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .twd-posts-grid {
    grid-template-columns: 1fr;
  }
}

.twd-post-card {
  display: flex;
  flex-direction: column;
  background-color: #f7f7f7;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
}
.twd-post-card a.post-thumbnail {
  display: block;
  cursor: pointer;
}
.twd-post-card a.post-thumbnail:hover {
  border-bottom: none !important;
}
.twd-post-card a.post-thumbnail img {
  width: 100%;
  height: clamp(180px, 22vw, 260px);
  object-fit: cover;
  display: block;
}

.twd-post-card__body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  flex: 1;
}

.twd-post-card__title {
  font-size: 30px;
  line-height: 18px;
  margin: 0 0 0.35rem;
}
@media (max-width: 576px) {
  .twd-post-card__title {
    font-size: 24px;
    line-height: 18px;
  }
}

.twd-post-card__meta {
  color: #728089;
  letter-spacing: 0.5px;
  margin: 0 0 1.5rem;
}

.twd-post-card__excerpt {
  flex: 1;
  margin: 0 0 1rem;
}
.twd-post-card__excerpt p {
  margin: 0;
}

.twd-post-card .btn {
  align-self: flex-start;
}
@media (max-width: 576px) {
  .twd-post-card .btn {
    width: 100%;
    text-align: center;
  }
}

.twdAboutWTAudio {
  display: flex;
  justify-content: space-around;
  background-color: rgba(44, 70, 95, 0.85);
  color: #ffffff;
  padding: 2rem;
  gap: 2rem;
}
@media (max-width: 991px) {
  .twdAboutWTAudio {
    flex-direction: column;
    align-items: center;
  }
}
.twdAboutWTAudio a {
  color: #ffffff !important;
  text-decoration: underline;
}
.twdAboutWTAudio a::after {
  content: "" !important;
}

.twd-support h2 {
  text-align: center;
}

.twd-support--cards {
  display: flex;
  justify-content: space-evenly;
  gap: 3rem;
  padding: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .twd-support--cards {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 400px) {
  .twd-support--cards {
    padding: 0;
  }
}

.twd-support--card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 30%;
  padding: 2rem 3rem;
  background-color: #f7f7f7;
}
@media (max-width: 1160px) {
  .twd-support--card {
    flex: 0 0 40%;
  }
}
.twd-support--card h2 {
  text-align: center;
  font-size: 24px;
}
.twd-support--card p {
  flex-grow: 1;
  padding: 1rem;
}
.twd-support--card a {
  text-align: center;
}

.twd-support--give-send-go {
  text-align: center;
}
.twd-support--give-send-go::after {
  content: "";
}
.twd-support--give-send-go:hover {
  border-bottom: none;
}

.twd-give-form-button-wrapper {
  text-align: center;
}
.twd-give-form-button-wrapper button {
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-variant: all-small-caps;
  letter-spacing: 1.6px;
  padding: 1rem 2rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: opacity 0.3s ease-out;
  color: #ffffff;
  background-color: #234661 !important;
  cursor: pointer;
  border: none;
  width: 100%;
}
.twd-give-form-button-wrapper button:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease-in;
}

.entry-header .entry-meta {
  color: #ffffff;
}

.type-post .entry-content a::after {
  content: "" !important;
}

.wth-landing {
  font-family: "Lato", sans-serif;
  color: #234661;
  background: #f7f7f7;
}
.wth-landing a {
  color: #234661;
}

.wth-landing__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.wth-landing__section {
  padding: 4rem 0;
}

.wth-landing h1,
.wth-landing h2,
.wth-landing h3 {
  font-family: "Lora", serif;
  color: #234661;
  margin: 0 0 1rem;
}

.wth-landing__eyebrow {
  font-variant: small-caps;
  letter-spacing: 1px;
  color: #BC1823;
  margin-bottom: 0.5rem;
}

.wth-landing__lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5B666D;
  margin-bottom: 1.5rem;
}

.wth-landing__hero {
  background: #ffffff;
  padding: 4rem 0;
  margin-bottom: 0;
}

.wth-landing__hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 2rem;
  grid-template-rows: 1fr;
}

.wth-landing__hero-image {
  align-self: stretch;
}

.wth-landing__hero-copy h1 {
  font-size: 2.8rem;
}

.wth-landing__hero-copy .wth-landing__lead {
  margin-bottom: 2rem;
}

.wth-landing__hero-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: none;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 48px -30px rgba(0, 0, 0, 0.35);
}

.wth-landing__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.wth-landing__cta .btn {
  min-width: 180px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 18px -12px rgba(0, 0, 0, 0.4);
}

.wth-landing__cta .btn-primary {
  background: #BC1823;
  color: #ffffff;
}

.wth-landing__cta .btn-primary:hover {
  opacity: 0.9;
}

.wth-landing__cta .btn-secondary {
  background: #ffffff;
  color: #234661;
  border: 1px solid #234661;
}
.wth-landing__cta .btn-secondary.btn-secondary:hover {
  border-color: #234661;
}

.wth-landing__cta .btn-secondary:hover {
  background: #234661;
  color: #ffffff;
}

.wth-landing__cta .btn:focus-visible {
  outline: 2px solid #d2d926;
  outline-offset: 3px;
}

.wth-landing__subtext {
  color: #5B666D;
  font-weight: 600;
  margin: 0.5rem 0 0;
}

.wth-landing__why-care {
  background: #234661;
  color: #ffffff;
  text-align: center;
}
.wth-landing__why-care h2 {
  color: #ffffff;
}
.wth-landing__why-care p {
  max-width: 900px;
  margin: 0 auto 1.25rem;
  line-height: 1.8;
  color: #f7f7f7;
}

.wth-landing__cards .wth-landing__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.wth-landing__card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px -26px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wth-landing__card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.wth-landing__card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wth-landing__card-body p {
  color: #5B666D;
  line-height: 1.7;
  margin: 0;
}

.wth-landing__segments h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.wth-landing__segments .wth-landing__section-lead {
  text-align: center;
  max-width: 820px;
  margin: -0.5rem auto 2rem;
  color: #5B666D;
  line-height: 1.7;
}

.wth-landing__segment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .wth-landing__segment-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}
@media (max-width: 576px) {
  .wth-landing__segment-grid {
    grid-template-columns: 1fr;
  }
}

.wth-landing__segment {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 14px 36px -24px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.wth-landing__segment p {
  color: #5B666D;
  margin: 0;
}
.wth-landing__segment .wth-landing__segment-icon {
  font-size: 1.6rem;
  color: #234661;
  opacity: 0.9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(35, 70, 97, 0.08);
  margin-bottom: 0.25rem;
}

.wth-landing__segment-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: #234661;
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.25rem;
}
.wth-landing__segment-link::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  display: inline-block;
  transition: transform 0.2s ease;
}
.wth-landing__segment-link:hover {
  color: #234661;
}
.wth-landing__segment-link:hover::after {
  transform: translateX(3px);
}
.wth-landing__segment-link.wth-landing__segment-link--primary {
  color: #BC1823;
}
.wth-landing__segment-link.wth-landing__segment-link--primary:hover {
  color: #a5151f;
}

.wth-landing__segment-social {
  margin-top: auto;
  display: flex;
  gap: 0.75rem;
}
.wth-landing__segment-social .wth-landing__segment-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(35, 70, 97, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #234661;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wth-landing__segment-social .wth-landing__segment-social-link:hover {
  background: rgba(35, 70, 97, 0.18);
  transform: translateY(-1px);
}
.wth-landing__segment-social .wth-landing__segment-social-link i {
  font-size: 1.1rem;
}

.wth-landing__trust {
  background: #ffffff;
  text-align: center;
  padding-bottom: 3rem;
  margin-bottom: 0;
}
.wth-landing__trust h2 {
  margin-bottom: 1.5rem;
}
.wth-landing__trust .wth-landing__trust-lead {
  max-width: 940px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  color: #5B666D;
}

.wth-landing__trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.wth-landing__trust-card {
  background: #f7f7f7;
  border: 1px solid #e1e5ea;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.wth-landing__trust-card h3 {
  margin: 0;
  color: #234661;
}
.wth-landing__trust-card p {
  margin: 0;
  color: #5B666D;
  line-height: 1.7;
}

.wth-landing__trust-icon {
  font-size: 1.8rem;
}

.wth-landing__social {
  text-align: center;
  background: #ffffff;
}
.wth-landing__social p {
  max-width: 720px;
  margin: 0.5rem auto 2rem;
  line-height: 1.7;
  color: #5B666D;
}

.wth-landing__social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.wth-landing__final-cta {
  text-align: center;
  background: #234661;
  color: #ffffff;
  padding: 4rem 0 5rem;
}
.wth-landing__final-cta h2 {
  color: #ffffff;
}
.wth-landing__final-cta p {
  max-width: 740px;
  margin: 1rem auto 2rem;
  line-height: 1.8;
  color: #f7f7f7;
}

@media (max-width: 768px) {
  .wth-landing__hero-copy h1 {
    font-size: 2.1rem;
  }

  .wth-landing__hero-image img {
    min-height: 260px;
    max-height: none;
  }

  .wth-landing__cta {
    flex-direction: column;
    align-items: stretch;
  }
}
.wth-support-page {
  background: #f7f7f7;
  color: #234661;
}
.wth-support-page .wth-support-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.wth-support-page .wth-support-intro {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  margin-bottom: 0;
}
.wth-support-page .wth-support-intro h1 {
  margin-bottom: 1rem;
  color: #234661;
}
.wth-support-page .wth-support-intro p {
  max-width: 900px;
  margin: 0 auto;
  color: #5B666D;
  line-height: 1.8;
}
.wth-support-page .wth-support-section {
  padding: 3rem 0;
  background: #ffffff;
}
.wth-support-page .wth-support-section.wth-support-section--alt {
  background: #f7f7f7;
}
.wth-support-page .wth-support-section:last-of-type {
  margin-bottom: 0;
  padding-bottom: 3rem;
}
.wth-support-page .wth-support-content--full {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.wth-support-page .wth-support-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
  gap: 2rem;
}
@media (min-width: 769px) {
  .wth-support-page .wth-support-two-col--reverse {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
.wth-support-page .wth-support-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: none;
}
.wth-support-page .wth-support-content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wth-support-page .wth-support-content h2 {
  margin: 0 0 0.5rem;
  color: #234661;
}
.wth-support-page .wth-support-content p {
  margin: 0;
  color: #5B666D;
  line-height: 1.8;
}
.wth-support-page .wth-support-content .btn,
.wth-support-page .wth-support-content .twd-give-form-button-wrapper {
  margin-top: 0.5rem;
  align-self: center;
}
.wth-support-page .wth-support-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}
.wth-support-page .wth-support-levels .wth-support-level {
  background: #f7f7f7;
  border: 1px solid #e1e5ea;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.wth-support-page .wth-support-levels .wth-support-level span {
  color: #234661;
}
.wth-support-page .wth-support-levels .wth-support-level strong {
  color: #234661;
}
.wth-support-page .wth-support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  width: 100%;
  margin: 1rem auto 0;
}
.wth-support-page .wth-support-table-wrap {
  width: 100%;
  margin: 1rem auto 0;
  border: 1px solid #d5dde5;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}
.wth-support-page .wth-support-table {
  width: 100%;
  border-collapse: collapse;
}
.wth-support-page .wth-support-table th,
.wth-support-page .wth-support-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e1e5ea;
  line-height: 1.55;
  color: #5B666D;
}
.wth-support-page .wth-support-table thead th {
  background: #234661;
  color: #ffffff;
  font-weight: 700;
  border-bottom: none;
}
.wth-support-page .wth-support-table tbody th {
  color: #234661;
  font-weight: 700;
  white-space: nowrap;
  background: rgba(35, 70, 97, 0.05);
}
.wth-support-page .wth-support-table tbody td:nth-child(2) {
  color: #234661;
  font-weight: 700;
  white-space: nowrap;
}
.wth-support-page .wth-support-table tbody td:last-child {
  background: rgba(35, 70, 97, 0.08);
}
.wth-support-page .wth-support-table tbody tr:last-child th,
.wth-support-page .wth-support-table tbody tr:last-child td {
  border-bottom: none;
}
.wth-support-page .wth-support-cards--other {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.wth-support-page .wth-support-cards--other .wth-support-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.wth-support-page .wth-support-cards--other .wth-support-social .wth-support-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(35, 70, 97, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #234661;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
}
.wth-support-page .wth-support-cards--other .wth-support-social .wth-support-social-link::after {
  content: none !important;
}
.wth-support-page .wth-support-cards--other .wth-support-social .wth-support-social-link:hover {
  background: rgba(35, 70, 97, 0.18);
  transform: translateY(-1px);
}
.wth-support-page .wth-support-cards--other .wth-support-social .wth-support-social-link i {
  font-size: 1.1rem;
}
.wth-support-page .wth-support-card {
  background: #f7f7f7;
  border: 1px solid #e1e5ea;
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  box-shadow: none;
}
.wth-support-page .wth-support-card .twd-give-form-button-wrapper {
  display: inline-flex;
  justify-content: center;
  width: auto;
}
.wth-support-page .wth-support-card .twd-give-form-button-wrapper form {
  display: inline-flex;
  width: auto;
  justify-content: center;
}
.wth-support-page .wth-support-card .twd-give-form-button-wrapper button,
.wth-support-page .wth-support-card .twd-give-form-button-wrapper input[type=submit] {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  width: auto;
  text-align: center;
}
.wth-support-page .wth-support-card .btn,
.wth-support-page .wth-support-card .popmake-3381 {
  align-self: center;
  text-align: center;
  width: auto;
}
.wth-support-page .wth-support-card h3 {
  margin: 0;
  color: #234661;
}
.wth-support-page .wth-support-card p {
  margin: 0;
  color: #5B666D;
  line-height: 1.6;
}
.wth-support-page .wth-support-card .wth-support-card-benefits {
  font-size: 0.95rem;
}
.wth-support-page .wth-support-card .wth-support-card-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.5rem;
}
.wth-support-page .wth-support-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.wth-support-page .wth-support-actions .wth-support-link {
  color: #234661;
  font-weight: 700;
  text-decoration: none;
}
.wth-support-page .wth-support-actions .wth-support-link:hover {
  text-decoration: underline;
}
.wth-support-page .wth-support-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}
.wth-support-page .wth-support-chip {
  background: #f7f7f7;
  border: 1px solid #e1e5ea;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-weight: 700;
  color: #234661;
  text-align: center;
}

@media (max-width: 576px) {
  .wth-support-page .wth-support-content {
    padding: 1.5rem;
    box-shadow: none;
  }

  .wth-support-page .wth-support-image img {
    box-shadow: none;
  }

  .wth-support-page .wth-support-card {
    box-shadow: none;
  }

  .wth-support-page .wth-support-table-wrap {
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }

  .wth-support-page .wth-support-table thead {
    display: none;
  }
  .wth-support-page .wth-support-table tbody,
.wth-support-page .wth-support-table tr,
.wth-support-page .wth-support-table th,
.wth-support-page .wth-support-table td {
    display: block;
    width: 100%;
  }
  .wth-support-page .wth-support-table tbody {
    display: grid;
    gap: 0.9rem;
  }
  .wth-support-page .wth-support-table tr {
    border: 1px solid #d5dde5;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
  }
  .wth-support-page .wth-support-table th,
.wth-support-page .wth-support-table td {
    border-bottom: 1px solid #e1e5ea;
    padding: 0.75rem 0.9rem;
  }
  .wth-support-page .wth-support-table tbody th {
    background: #234661;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    white-space: normal;
  }
  .wth-support-page .wth-support-table td {
    position: relative;
    padding-top: 1.45rem;
  }
  .wth-support-page .wth-support-table td::before {
    content: attr(data-label);
    position: absolute;
    top: 0.35rem;
    left: 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #526476;
    font-weight: 700;
  }
  .wth-support-page .wth-support-table tbody td:last-child {
    border-bottom: none;
  }
}
.nf-form-cont {
  padding: 2rem;
  background-color: #f7f7f7;
}

.nf-field-element input, .nf-field-element textarea {
  padding: 1rem 2rem;
}
.nf-field-element input:focus-visible, .nf-field-element textarea:focus-visible {
  outline: 2px solid #234661;
}

.ninja-forms-field[type=submit] {
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-variant: all-small-caps;
  letter-spacing: 1.6px;
  padding: 1rem 2rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: opacity 0.3s ease-out;
  color: #ffffff;
  background-color: #234661;
  cursor: pointer;
  border: none;
}
.ninja-forms-field[type=submit]:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease-in;
}

.nf-field-element textarea {
  font-family: "Lato", sans-serif;
  padding: 1rem;
}

.nf-field-label label, .nf-field-label span {
  font-family: "Lato", sans-serif;
  font-weight: bold;
  color: #234661;
}

.nf-form-fields-required {
  margin-bottom: 1rem;
  color: #5B666D;
}

.ninja-forms-req-symbol {
  color: #BC1823;
}

.pum-overlay {
  background-color: rgba(0, 0, 0, 0.8);
}

.pum-theme-3372 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close {
  background-color: #234661;
}

.give-modal.mfp-ready .mfp-content {
  padding: 4rem;
}

.give-form {
  font-family: "Lato", sans-serif;
}

.give-form.give-form-type-multi .give-input {
  background-color: #ffffff !important;
  border: 1px solid #234661 !important;
  border-radius: 5px !important;
  padding: 1rem !important;
  font-family: "Lato", sans-serif !important;
}

.give-select {
  background-color: #ffffff !important;
  padding: 1rem !important;
  font-family: "Lato", sans-serif !important;
  border: 1px solid #234661 !important;
  border-radius: 5px !important;
}
.give-select option {
  margin: 1rem 0 !important;
  font-family: "Lato", sans-serif !important;
}

.give-btn {
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-variant: all-small-caps;
  letter-spacing: 1.6px;
  padding: 1rem 2rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: opacity 0.3s ease-out;
  color: #ffffff;
  background-color: #234661;
  cursor: pointer;
  border: none;
}
.give-btn:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease-in;
}

.give-donation-total-label, .give-currency-symbol {
  background-color: #f7f7f7;
}

main {
  overflow: hidden;
}

.row {
  margin: 0;
}

.wrapper#page-wrapper,
.wrapper#index-wrapper,
.wrapper#single-wrapper {
  padding-top: 0;
}

.site-main.twd-posts {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.twd-featured-image {
  position: relative;
  max-width: 100%;
  height: auto;
  margin: 0 10px;
}
.twd-featured-image img {
  height: auto;
  max-height: 315px;
  object-fit: cover;
  max-width: 100%;
}
.twd-featured-image figcaption {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  color: white;
  max-width: 640px;
  margin: 0 auto;
  background-image: linear-gradient(to top, rgba(35, 71, 98, 0.3), rgba(35, 71, 98, 0));
}
.twd-featured-image figcaption a {
  color: white;
}

.nav-links {
  max-width: 850px;
  margin: 0 auto;
}

.entry-header.single {
  margin-bottom: 3rem;
}

.entry-title {
  text-align: center;
  min-height: 56px;
  letter-spacing: 0.3px;
}

.wp-post-image {
  object-fit: cover;
}

.entry-meta a {
  color: whitesmoke;
}

.nav-previous {
  flex-grow: 1;
}

.twd-single-post-container {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.show {
  animation: fadein ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forward;
}

.hide {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Lato", sans-serif;
  color: #5B666D;
}

section {
  margin-bottom: 2rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lora", serif;
  text-transform: uppercase;
  color: #234661;
}

h1 {
  font-size: 36px;
}
@media (max-width: 576px) {
  h1 {
    font-size: 30px;
    text-align: center;
  }
}

h2 {
  font-size: 30px;
  line-height: 2rem;
}

h3 {
  font-size: 24px;
}

p {
  font-family: "Lato", sans-serif;
  line-height: 24px;
}

a {
  color: #234661;
  text-decoration: none;
  text-transform: none;
  font-variant: normal;
  font-size: 20px;
  cursor: pointer;
}
a:hover {
  transition: all 0.5s ease-in-out;
  border-bottom: 0;
}

.main-site a {
  font-variant: none;
}

.current-menu-item > a {
  text-decoration: underline !important;
}

blockquote {
  position: relative;
  padding: 0 2rem;
  margin: 2rem 0;
  border-left: 2px solid #ffffff;
}
@media (max-width: 576px) {
  blockquote {
    padding: 0 0 0 1rem;
  }
}
blockquote p {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 3.3rem;
  font-family: "Tangerine";
}
@media (max-width: 576px) {
  blockquote p {
    line-height: 2rem;
    font-size: 28px;
  }
}

code {
  background-color: #f3f3f3;
  font-size: 0.8rem;
  padding: 3px 6px;
}

.container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.wrapper .site-main {
  flex: 1 0 auto;
}
@media (max-width: 990px) {
  .wrapper .site-main {
    flex-shrink: 1;
  }
}
.wrapper .site-footer {
  flex-shrink: 0;
}

.btn {
  font-weight: 700;
  letter-spacing: 1px;
  padding: 1rem;
  font-size: 1.1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: opacity 0.5s ease;
  color: white;
  text-decoration: none;
  border-bottom: 0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}
.btn.btn-primary {
  background-color: #234661;
}
.btn.btn-secondary {
  background-color: white;
  color: #234661;
}
.btn.btn-red {
  background-color: #BC1823;
}
.btn.btn-inline {
  display: inline;
}
.btn:hover {
  opacity: 0.8;
  text-decoration: none;
  border-bottom: 0;
}

.twd-posts-index-header,
.entry-header.single {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #234661;
  text-align: center;
  padding: 30px;
}
.twd-posts-index-header h1,
.entry-header.single h1 {
  color: white;
}

.entry-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}
.entry-content h2 {
  margin-top: 3rem;
}
@media (max-width: 991px) {
  .entry-content h2 {
    font-size: 2rem;
  }
}
.entry-content h3 {
  margin-top: 32px;
}
.entry-content h3.wp-block-heading {
  margin: 32px 0;
}
@media (max-width: 991px) {
  .entry-content h3 {
    font-size: 1.5rem;
  }
}
.entry-content h4 {
  margin: 8px 0 24px 0;
}
@media (max-width: 991px) {
  .entry-content h4 {
    font-size: 1.2rem;
  }
}
.entry-content p {
  font-size: 18px;
  line-height: 26px;
  margin: 2rem 0;
}
.entry-content a {
  color: #234661;
  font-weight: 600;
  font-variant: all-petite-caps;
}
.entry-content .btn {
  color: white;
  font-weight: 600;
}

.entry-content ul {
  padding-left: 2rem;
  line-height: 1.4;
}

.loader {
  border: 10px solid rgba(127, 83, 145, 0.2);
  border-top: 10px solid #7f5391;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.mobile-iframe {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.mobile-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

ul.twd-further-reading-list {
  list-style-type: solid;
  background-color: #f7f7f7;
  padding: 1rem 1rem 1rem 2rem;
}
ul.twd-further-reading-list b li {
  margin: 1rem 0;
}
ul.twd-further-reading-list b li a {
  text-decoration: underline;
  font-variant: normal;
  font-weight: normal;
}

.twd-pagination {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: flex-end;
  padding: 2rem;
}

/*# sourceMappingURL=main.e2d8a60b4d3cef3e5275.css.map*/