.donate-content + .footer .subscribe--new,
.donate-content + .footer .donate {
  display: none !important;
}

/* hero */
.main-banner__image {
  padding: 0;
  margin-top: 4rem;
}

/* donate */
.donate-section {
  margin-top: -2rem;
}

.donate-section .container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.dontaion-form {
  background-color: #ffd700;
  width: 100%;
  position: relative;
}
.bank-info {
  border: 1px solid #035abd;
  position: sticky;
  padding: 0 20px 20px;
  position: relative;
  margin: 4rem 0 2rem;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .donate-section .container {
    gap: 4%;
    flex-direction: row;
  }
  .dontaion-form {
    width: 56%;
    max-width: 700px;
  }
  .side-info {
    width: 37%;
    top: 94px;
    /* max-width: 487px; */
    align-self: flex-start;
    margin: 2rem;
  }
}
.bank-info__title {
  margin: 0;
  padding: 0.5rem 1rem;
  background-color: #ffd700;
  border: 1px solid #035abd;
  line-height: 1;
  font-weight: 500;
  font-size: 1.5rem;
  display: inline-block;
  transform: translateY(-50%);
}

.bank-info p {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}
.bank-info p:not(:last-child) {
  margin-bottom: 0.5rem;
}

.bank-info b {
  font-weight: 800;
}

/* quote */
.quote-container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}

.quote-text {
  border: 1px solid currentColor;
  color: #035abd;
  font-size: 1.5rem;
  font-weight: 700;
  flex-grow: 1;
  line-height: 1.16;
  padding: 1rem 3.5rem 1rem 1rem;
  margin-right: 45px;
  text-align: center;
  position: relative;
}
.quote-text::after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: 0;
  width: 0;
  height: 0;
  border: 24px solid transparent;
  border-top-color: #fff;
  border-bottom: 0;
  border-right: 0;
  margin-left: -14.5px;
  margin-bottom: -23px;
  filter: drop-shadow(1px 2px 0 #035abd);
}

.quote-author {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  text-align: right;
  gap: 14px;
}

.quote-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-author-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
  font-style: normal;
}
.quote-author-title {
  color: #000;
  font-size: 1rem;
  font-style: normal;
}
.quote-author-image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

/* organise */
.organise {
  background-color: #035abd;
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;

  margin-bottom: 5rem;
  margin-top: 5rem;
}

.organise__header {
  max-width: 866px;
  margin-bottom: 4rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .organise__header {
    font-size: 1.5rem;
  }
}

.organise__title {
  font-size: 2rem;
  font-weight: 700;
}

.organise__list {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.organise__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 48%;
  margin-bottom: 2rem;
  /* text-align: center; */
}
@media screen and (min-width: 768px) {
  .organise__item {
    width: 45%;
    /* text-align: left; */
  }
}
@media screen and (min-width: 1024px) {
  .organise__item {
    width: 25%;
    max-width: 240px;
    margin-bottom: 0;
  }
}

.organise__figure {
  margin: 0;
  padding: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .organise__figure {
    width: 136px;
    height: 136px;
  }
}

.organise__icon {
  margin: auto;
}

.organise__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .organise__text {
    font-size: 1.5rem;
  }
}

/* accordion */
.accordion {
  max-width: 926px;
  margin: 2rem 0 5rem;
  display: flex;
  gap: 8px;
  flex-direction: column;
  width: 100%;
}

.accordion-header {
  display: flex;
  align-items: center;
  color: #000;
  cursor: pointer;
  padding: 1rem 2rem;
  width: 100%;
  text-align: left;
  border: 0;
  outline: none;
  position: relative;
  font-weight: 700;
  font-family: inherit;
  font-size: 1.5rem;
}

.accordion-header:focus {
  outline: 3px solid #4a90e2;
}

.accordion-header:focus,
.accordion-header.active {
  color: #035abd;
}

.accordion-icon {
  width: 35px;
  height: 34px;
  margin-right: 1rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.accordion-icon.active {
  transform: rotate(90deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  font-size: 1rem;
}

.accordion-content.show {
  max-height: 700px;
  padding: 0 0 0 82px;
}

.accordion-content p {
  margin-bottom: 0.5rem;
}

.accordion-content ul {
  margin: 0.5rem 0 1rem;
  padding-left: 20px;
}

.accordion-content li {
  margin-bottom: 0.5rem;
  list-style-type: initial;
}
.accordion-content a {
  color: #035abd;
  text-decoration: underline;
}
