/* Universal Selector for Global Reset see this for an updated method on best practice */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
}

body {
  font-family: "Glory", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #ffffff;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 3rem;
}

.primary-heading {
  color: #ffffff;
  text-transform: uppercase;
  display: block;
  font-size: 4.5rem;
  font-weight: 700;
  margin: 2rem 0;
  line-height: 1.7;
  text-align: center;
}

.secondary-heading {
  color: #ffffff;
  text-transform: uppercase;
  display: block;
  line-height: 1.7;
  font-size: 3rem;
  font-weight: 500;
  margin: 4rem 0;
  text-align: center;
}

.tertiary-heading {
  color: #964992;
  text-transform: uppercase;
  display: block;
  line-height: normal;
  font-size: 4.8rem;
  font-weight: 700;
  margin: 4rem 0;
}

.section-subheading {
  color: #69202f;
  text-transform: uppercase;
  display: block;
  line-height: normal;
  font-size: 4.5rem;
  font-weight: 500;
  margin: 4rem 0;
}

.section-subheading-small {
  color: #69202f;
  text-transform: uppercase;
  display: block;
  line-height: normal;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 4rem 0;
}
.section-subheading-small__white {
  color: #ffffff;
}

.margin-bottom-2-5 {
  margin-bottom: 2.5rem;
}

.margin-bottom-5 {
  margin-bottom: 5rem;
}

.margin-bottom-10 {
  margin-bottom: 10rem;
}

.margin-bottom-15 {
  margin-bottom: 15rem;
}

.margin-top-5 {
  margin-top: 5rem;
}

.paragraph-normal {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.75;
  color: #5c4481;
}

.center-image {
  text-align: center;
}

.u-center-text {
  text-align: center;
}

.hidden {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.invisible {
  display: none;
}

.u-margin-right {
  margin-right: 4rem;
}

.u-margin-right-2 {
  margin-right: 2rem;
}

.u-margin-left {
  margin-left: 4rem;
}

.u-text-color-purple {
  color: #5c4481;
}

.u-no-body-padding-tb {
  padding: 0 0;
}

.u-width-100 {
  width: 100%;
}

.u-underline {
  text-decoration: underline;
}

.flex__row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.flex__row--space-around {
  justify-content: space-around;
  align-items: center;
}
.flex__row--space-between {
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
.flex__row--space-between-1 {
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
}
.flex__row--center {
  justify-content: center;
}
.flex__row--center-1 {
  justify-content: center;
  gap: 2rem;
}
.flex__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.flex__col--center {
  align-items: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.grid__newsletter {
  column-gap: 3rem;
  margin-bottom: 3rem;
}
.grid__1-col-1-rows {
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  column-gap: 3rem;
  row-gap: 6rem;
}
.grid__2-col-2-rows {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  column-gap: 3rem;
  row-gap: 6rem;
}
.grid__4-col {
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-content: center;
  column-gap: 3rem;
}
.grid__5-col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  column-gap: 3rem;
}
.grid__4-col-2-rows {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  column-gap: 3rem;
  row-gap: 10rem;
}
.grid__8-col-2-rows {
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(2, 1fr);
  row-gap: 10rem;
}

.grid__5-col-2-rows {
  display: grid;
  align-items: baseline;
  justify-content: center;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.grid__3-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(0px, auto);
  align-items: center;
  justify-content: center;
  column-gap: 6rem;
}

.grid__4-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: minmax(0px, auto);
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
}

.grid__3-cols-3-rows {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(0px, auto);
  align-items: center;
  justify-content: center;
  column-gap: 6rem;
}

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 4rem;
  display: inline-block;
  transition: all 0.2s;
  font-size: 1.8rem;
  color: #69202f;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background-color: rgba(255, 255, 255, 0.881);
  color: #69202f;
}
.btn:active, .btn:focus {
  background-color: rgba(255, 255, 255, 0.881);
}
.btn__cta {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #964992;
}
.btn__cta:hover {
  border: 1px solid rgba(255, 255, 255, 0.881);
}
.btn__cta-overlay {
  margin-right: 1rem;
}
.btn__cta-newsletter {
  margin-top: 2.5rem;
}
.btn__primary {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #69202f;
  padding: 1rem 6rem;
  margin-left: 2rem;
}
.btn__primary:hover {
  color: #69202f;
}
.btn__primary:active, .btn__primary:focus {
  color: #69202f;
}
.btn__secondary {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn__link {
  border-bottom: 2px solid #ffffff;
  border-radius: 0px;
  padding: 0 0;
  font-size: 1.2rem;
  text-decoration: none;
}
.btn__link:hover {
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.btn__link:active, .btn__link:focus {
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.btn__link-color {
  color: #69202f;
  border-bottom: 2px solid #69202f;
  border-radius: 0px;
  padding: 0 0;
  font-size: 1.6rem;
}
.btn__link-color:hover {
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.btn__link-color:active, .btn__link-color:focus {
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.btn__nav-link {
  text-decoration: none;
}
.btn__nav-link--primary {
  color: #69202f;
}
.btn__nav-link--primary:hover {
  transition: all 0.2s;
}
.btn__nav-link--primary:active, .btn__nav-link--primary:focus {
  transition: all 0.2s;
}
.btn__nav-link--secondary {
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn__nav-link--secondary:hover {
  background-color: rgba(255, 255, 255, 0.881);
  transition: all 0.2s;
}
.btn__nav-link:active, .btn__nav-link:focus {
  background-color: rgba(255, 255, 255, 0.881);
  transition: all 0.2s;
}

.nav-bar {
  padding: 6rem 6rem;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(111deg, #69202f -0.71%, #964992 45.61%, #5c4481 99.19%);
}
.nav-bar__logo {
  width: 20%;
  height: auto;
}
.nav-bar__links {
  font-weight: 700;
  font-size: 2.4rem;
}
.nav-bar__list {
  list-style: none;
}
.nav-bar__icons {
  position: relative;
  height: 4rem;
  width: 4rem;
  margin-right: 5rem;
  display: none;
}
.nav-bar__icon {
  font-weight: 600;
  height: 4rem;
  width: 4rem;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-bar__icon-close {
  position: absolute;
  top: 5rem;
  right: 5rem;
  font-weight: 600;
  height: 4rem;
  width: 4rem;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-bar__link {
  text-decoration: none;
  color: #ffffff;
}
.nav-bar__link--hover-1 {
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  color: #ffffff;
}
.nav-bar__link--hover-1:hover {
  border-bottom: 2px solid #ffffff;
  transition: all 0.2s;
}
.nav-bar__link--hover-1:active, .nav-bar__link--hover-1:focus {
  border-bottom: 2px solid #ffffff;
  transition: all 0.2s;
}

.sticky {
  position: fixed;
  border-radius: 0;
  overflow: hidden;
  z-index: 999;
  padding: 2rem 2rem;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(111deg, #69202f -0.71%, #964992 45.61%, #5c4481 99.19%);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 100;
  z-index: 999;
  margin: 0rem auto;
}
.menu-overlay__links {
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 100;
  z-index: 1001;
  font-size: 3rem;
  margin-top: 20rem;
}

.event-tile__wrapper {
  text-align: center;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  position: relative;
}
.event-tile__text-box {
  width: 50%;
  margin: 0 auto;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -12.5%);
}
.event-tile__background-img {
  width: 70%;
  height: 85%;
  text-align: center;
  margin: 0 auto;
}
.event-tile__header {
  color: #fff;
  text-align: center;
  font-family: Glory;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 3rem;
}
.event-tile__description {
  color: #fff;
  text-align: center;
  font-family: Glory;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 5rem;
}

.calendar__month {
  font-size: 4.8rem;
}
.calendar__slide {
  width: 90%;
  height: 30%;
  background-color: #5c4481;
  border-radius: 8px;
  padding: 3rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}
.calendar__slide:hover {
  cursor: pointer;
}
.calendar__slide-purple {
  background-color: #5c4481;
}
.calendar__slide-plum {
  background-color: #69202f;
}
.calendar__slide-pink {
  background-color: #964992;
}
.calendar__text p {
  font-size: 4rem;
  margin: 0 auto;
  color: #ffffff;
  text-transform: uppercase;
}
.calendar__text span {
  text-transform: lowercase;
  font-size: 2rem;
}
.calendar__details {
  margin-top: 3rem;
}
.calendar__text-date {
  text-align: left;
}
.calendar__icon {
  font-size: 4rem;
}
.calendar__icon-up {
  font-size: 4rem;
}

.info__description {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.info__time {
  font-size: 2rem;
}
.info__location {
  font-size: 2rem;
}
.info__leader {
  font-size: 2rem;
}

#show-more {
  display: inline;
}

.calendar__no-events {
  color: #964992;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
  margin: 10rem 0;
}

.newsletter__wrapper {
  background: linear-gradient(111deg, #69202f -0.71%, #964992 45.61%, #5c4481 99.19%);
  text-align: center;
  border-radius: 8px;
  padding: 2rem 3rem 3rem 3rem;
}
.newsletter__subheading {
  color: #ffffff;
  text-transform: uppercase;
  display: block;
  line-height: normal;
  font-size: 3rem;
  font-weight: 500;
  margin: 4rem 0;
  text-align: center;
}

.newsletter__form-email {
  border: #ffffff 2px solid;
  padding: 3rem;
  text-align: left;
  margin-bottom: 3rem;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.54);
  border-radius: 8px;
}
.newsletter__form-label {
  font-size: 2.4rem;
}
.newsletter__form-input {
  padding: 1rem 2rem;
  border-radius: 8px;
  border: #cfcfcf;
  box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.54);
  width: 100%;
  margin-bottom: 2rem;
  font-family: "Glory", sans-serif;
  font-size: 2.4rem;
  color: #69202f;
}
.newsletter__form-border-descriptor {
  padding: 0;
  background-color: #964992;
  font-size: 3rem;
  margin-bottom: 8rem;
}
.newsletter__form-list {
  list-style: none;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.4rem;
}
.newsletter__form-radio {
  margin-right: 1rem;
  font-size: 2rem;
}

.newsletter__last-child {
  list-style: none;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.response {
  display: none;
}

.aria {
  position: absolute;
  left: -5000px;
}

.photo-wall__profile {
  text-align: center;
}
.photo-wall__img {
  border-radius: 1000px;
  width: 60%;
  height: auto;
  margin-bottom: 3rem;
}
.photo-wall__name {
  font-size: 2.6rem;
  font-weight: 700;
  color: #69202f;
  margin-bottom: 1.5rem;
}
.photo-wall__description {
  font-size: 1.6rem;
  color: #69202f;
}
.photo-wall__link-color {
  color: #69202f;
  border-bottom: 2px solid #69202f;
  border-radius: 0px;
  padding: 0 0;
  font-size: 1.4rem;
  text-transform: capitalize;
}
.photo-wall__link-color:hover {
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.photo-wall__link-color:active, .photo-wall__link-color:focus {
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.photo-wall__bio {
  display: none;
  color: #69202f;
}
.photo-wall__bio-container {
  width: 100%;
  background-color: #5c4481;
  color: #ffffff;
  text-align: left;
  border-radius: 6px;
  margin: 0 auto;
  margin-bottom: 10rem;
  transition: left 10s ease, top 10s ease;
}
.photo-wall__bio-name {
  padding: 3rem;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
}
.photo-wall__bio-bio {
  padding: 3rem;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.7;
}
.photo-wall__profile.full-width {
  width: 100%;
}
.photo-wall__profile.full-widthprofile.full-width {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
}
.photo-wall__profile.full-width .photo-wall__bio {
  display: block;
  max-width: 800px;
}
.photo-wall__profile.full-width .read-btn {
  visibility: hidden;
}
.photo-wall__profile.full-width .close-btn {
  display: block;
}
.photo-wall .photo-wall__wrapper {
  position: relative; /* Ensure wrapper doesn't interfere with full-width profile */
}

.close-btn {
  position: absolute;
  left: 30%;
  right: 30%;
  transition: left 0.3s ease;
}

.read-btn {
  position: absolute;
  left: 30%;
  right: 30%;
  transition: left 0.3s ease;
}

.opacity-25 {
  opacity: "25%";
  transition: 1s ease;
}

.testimonial-grid {
  background-color: #964992;
  border-radius: 8px 8px 8px 8px;
  padding-bottom: 3rem;
}
.testimonial-grid__wrapper {
  padding: 6rem 6rem;
}
.testimonial-grid__img {
  width: 15%;
  height: auto;
  border-radius: 1000px;
}
.testimonial-grid__review {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 2rem 3rem;
}
.testimonial-grid__name {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0rem 3rem;
}

.header {
  position: relative;
}
.header__hero--img {
  width: 100%;
  height: auto;
  border-radius: 0 0 8px 8px;
}
.header__hero--box {
  border-radius: 8px;
  padding: 6rem 3rem;
  margin: 0rem auto;
  width: 85%;
  height: auto;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translate(-50%, 10%);
}

.our-mission__img {
  width: 75%;
  height: auto;
  border-radius: 8px;
  text-align: center;
}

.donate__wrapper {
  background-color: #964992;
  border-radius: 8px;
  padding: 2rem 3rem 3rem 3rem;
}
.donate__subheading {
  color: #ffffff;
  text-transform: uppercase;
  display: block;
  line-height: normal;
  font-size: 3rem;
  font-weight: 500;
  margin: 4rem 0;
}
.donate__img {
  width: 85%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 5rem;
}
.donate__contents-text {
  font-size: 2.4rem;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  margin-bottom: 5rem;
}
.donate__motivation-list {
  list-style: none;
}
.donate__motivation-item {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.donate__motivation-item-icon {
  height: 2rem;
  width: 2rem;
  margin-right: 1rem;
}

.meet-our-team__founders-img {
  width: 90%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
}
.meet-our-team__founders-subheading {
  color: #5c4481;
  text-transform: uppercase;
  display: block;
  line-height: normal;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5rem;
}
.meet-our-team__founders-text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: #964992;
  text-align: center;
}

.section-donors__logo-wrapper {
  background-color: #ffffff;
  padding: 3rem 0rem;
  border-radius: 0 0 8px 8px;
}
.section-donors__heading-small {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3rem;
  color: #964992;
}
.section-donors__img-logo {
  width: 18%;
  padding: 3rem;
  margin-right: 3rem;
}

.footer {
  color: #964992;
  text-align: center;
  font-weight: 400;
}
.footer__contact-icons {
  height: 3rem;
  width: 3rem;
  margin-bottom: 2rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  color: #5c4481;
}
.footer__nav-list {
  list-style: none;
  text-align: center;
}
.footer__nav-links {
  font-size: 2rem;
  margin-right: 4rem;
  border-bottom: 2px solid transparent;
}
.footer__nav-links:hover {
  border-bottom: 2px solid #5c4481;
  transition: all 0.2s;
}
.footer__nav-links:active, .footer__nav-links:focus {
  border-bottom: 2px solid #5c4481;
  transition: all 0.2s;
}
.footer__disclaimer {
  margin-bottom: 1rem;
}
.footer__nav-link {
  color: #5c4481;
  font-weight: 500;
}
.footer__social-link {
  color: #5c4481;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.footer__social-link:hover {
  border-bottom: 2px solid #5c4481;
  transition: all 0.2s;
}
.footer__social-link:active, .footer__social-link:focus {
  border-bottom: 2px solid #5c4481;
  transition: all 0.2s;
}

.section-terms {
  padding: 0rem 2rem;
}

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