/* 04-15-25 */
.giving-main {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  overflow: hidden;
  border-radius: 10px;
}
.giving-body {
  padding: 3.5rem 5%;
  width: 48%;
  font-size: 1.25rem;
}
.npd .giving-body {
  color: #FFF;
  background: #030507;
}
.giving .giving-body {
  color: #000;
  background: #e9e6d6;
}
.giving-body:not(.giving-body h2) {
  line-height: 1.5;
}
.giving-body h2 {
  line-height: 1.25;
  font-size: 2rem;
  /* font-weight: normal; */
}
.npd .giving-body h2 {
  color: #FFF;
}
.giving-body a {
  color: #FFF;
  text-decoration: underline;
}
.giving-body ol {
  margin-bottom: 0;
  padding-inline-start: 1.75rem;
}
.giving-body li {
  margin-bottom: .75em;
}
.giving-body li:last-child, .giving-body p:last-child {
  margin-bottom: 0;
}
.giving-img {
  overflow: hidden;
  position: relative;
  flex-grow: 1;
}
.npd .giving-img {
  background: url(/images/landing/giving/npd-landing.webp) no-repeat center right / cover;
}
.giving .giving-img {
  background: url(/images/landing/giving/giving-main.webp) no-repeat center right / cover;
}
.giving-img::before {
  display: block;
  content: '';
  width: 28%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100% !important;
}
.npd .giving-img::before {
  background: #030507;
  background: linear-gradient(90deg, rgba(3, 5, 7, 1) 0%, rgba(3, 5, 7, 0) 100%);
}
.giving .giving-img::before {
  background: #E9E6D6;
background: linear-gradient(90deg,rgba(233, 230, 214, 1) 0%, rgba(233, 230, 214, 0) 100%);
}

.giving-img img {
  display: none;
  width: 100% !important;
  height: auto !important;
}
@media only screen and (max-width : 830px) {
  .giving-main {
    flex-direction: row;
    flex-flow: column;
  }
  .giving-img img {
    display: block;
  }
  .giving-img::before {
    display: none;
  }
  .giving-body {
    width: 100%;
  }
}
@media only screen and (max-width : 500px) {
  .giving-body {
    padding: 1.25rem;
    font-size: 1rem;
  }
  .giving-body h1 {
    font-size: 1.25rem;
  }
  .giving-body h2 {
    font-size: 1.5rem;
  }
}