/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Import Instrument Sans font */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --Primary: #2D8CD1;
  --Orange: #FF7B00;
  --Black: #101010;
  --Body-text: #444;
  --White: #FFF;
  --F8F8F8: #F8F8F8;
}

/* Button Styles */

/* Primary Button */
body .primary-button {
  border-radius: 50px;
  background: var(--Primary, #2D8CD1);
  padding: 10px 20px;
  text-align: center;
  color: var(--White, #FFF);
  transition: all .3s ease-in-out;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  width: max-content;
  transform: none;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

body .primary-button:hover {
  background: #0A578F;
  transform: none;
}

/* Orange Button */
body .orange-button {
  display: flex;
  gap: 4px;
  border-radius: 50px;
  padding: 10px 20px;
  border: 1px solid #FF7B00;
  color: var(--Black, #101010);
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  width: max-content;
  text-align: center;
  transition: all .3s ease-in-out;
  transform: none;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}

body .orange-button:hover {
  background: var(--Orange, #FF7B00);
  color: #fff;
  line-height: 120%;
  font-size: 16px;
}

/* Section Styles */

/* Top Section (.don-top-sec) */
.don-top-sec {
  width: 100%;
  max-width: 1800px;
  margin: 40px auto 80px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 800px;
}

.don-top-sec .col-f {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  object-position: center center;
}

.don-top-sec .col-s {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.don-top-sec .title {
  color: #000;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 95%;
  max-width: 611px;
  margin-bottom: 24px;
}

.don-top-sec .subtitle {
  max-width: 496px;
  color: #000;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 40px;
}

/* Text Section (.don-text-sec) */
.don-text-sec {
  max-width: 984px;
  margin: 0 auto 140px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

.don-text-sec .title {
  color: #101010;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 95%;
}

.don-text-sec .subtitle {
  color: #101010;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  max-width: 626px;
}

/* Cards Section (.don-cards-sec) */
.don-cards-sec {
  display: flex;
  flex-direction: column;
  margin: 0 auto 40px;
  align-items: center;
  max-width: 1800px;
}

.don-cards-sec .title {
  color: var(--Black, #101010);
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 95%;
  max-width: 656px;
  margin-bottom: 60px;
}

.don-cards-sec .cards {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 10px;
}

.don-cards-sec .cards .card {
  width: 100%;
  height: 430px;
  display: flex;
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
}

.don-cards-sec .cards .card .upper-text {
  color: var(--White, #FFF);
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-top: 32px;
  margin-left: 24px;
  margin-right: 24px;
}

.don-cards-sec .cards .card .text {
  color: var(--White, #FFF);
  font-family: "Instrument Sans", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 95%;
  max-width: 650px;
  margin: auto auto 32px 24px;
}

.don-cards-sec .cards .card .text .blue {
  color: #AADBFF;
}

.don-cards-sec .custom-card {
  width: 100%;
  height: max-content;
  min-height: 394px;
  position: relative;
  border-radius: 16px;
  background: #F8F8F8;
  overflow: hidden;
  display: flex;
  padding-top: 90px;
}

.don-cards-sec .custom-card .text {
  color: var(--Black, #101010);
  font-family: "Instrument Sans", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 95%;
  margin-top: auto;
  margin-left: 24px;
  margin-bottom: 32px;
  max-width: 1133px;
}

.don-cards-sec .custom-card .text .blue {
  color: var(--Primary, #2D8CD1);
}

.don-cards-sec .custom-card .bg-image {
  position: absolute;
  right: 0;
  top: 0;
}

/* Donation Methods Section (.don-methods) */
.don-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1800px;
  margin: 0 auto 140px;
}

.don-methods .title {
  color: var(--Black, #101010);
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 95%;
  max-width: 716px;
  margin-bottom: 24px;
}

.don-methods .subtitle, .don-cards-sec .subtitle {
  margin-bottom: 60px;
  max-width: 460px;
  color: var(--Body-text, #444);
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}

.don-methods .cards {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.don-methods .cards .card {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #2D8CD1;
  height: 350px;
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}

.don-methods .cards .card-s {
  border: 1px solid #FF7B00;
}

.don-methods .cards .card .card-title {
  color: var(--Black, #101010);
  font-family: "Instrument Sans", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 95%;
  max-width: 407px;
  margin-bottom: auto;
}

.don-methods .cards .card .card-title .blue {
  color: #2D8CD1;
}

.don-methods .cards .card-s .card-title .blue {
  color: #FF7B00;
}

.don-methods .cards .card .bottom-images {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 488px;
}

.don-methods .cards .card .bottom-images img {
  width: 80px;
  height: 80px;
}

.don-methods .cards .card-f {
  background: url("../images/donation_page/card-f-bg.svg") no-repeat;
  background-position: 0 100%;
}

.don-methods .cards .card-s {
  background: url("../images/donation_page/card-s-bg.svg") no-repeat;
  background-position: 0 0;
}

.don-methods .buttons-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.don-methods .buttons-row .orange-button {
  width: 143px;
  justify-content: center;
}

.don-methods .cards .card .arrow {
  width: 35px;
  height: 34px;
  position: absolute;
  right: 32px;
  bottom: 21px;
  transform: rotate(0deg);
  transition: transform .3s ease-in-out;
}

/* Media Queries */

/* @media screen and (max-width: 1919px) */
@media screen and (max-width: 1919px) {
  .don-top-sec {
    width: calc(100% - 80px);
    height: 682px;
  }

  .don-cards-sec {
    width: calc(100% - 90px);
  }

  .don-cards-sec .cards {
    gap: 10px;
  }

  .don-methods {
    width: calc(100% - 90px);
  }

  .don-methods .cards {
    gap: 10px;
  }

  .don-methods .cards .card {
    overflow: hidden;
    height: 390px;
    max-width: 750px;
  }

  .don-methods .cards .card .bottom-images img {
    width: 60px;
    height: 60px;
  }

  .don-methods .cards .card .bottom-images {
    max-width: 332px;
  }

  .don-methods .cards .card-f {
    background: url("../images/donation_page/card-f-bg-1600.svg") no-repeat;
    background-position: 0 100%;
  }

  .don-methods .cards .card-s {
    background: url("../images/donation_page/card-s-bg-1600.svg") no-repeat;
    background-position: 0 0;
  }
}

/* @media screen and (max-width: 1599px) */
@media screen and (max-width: 1599px) {
  .don-cards-sec .custom-card {
    min-height: 309px;
  }

  .don-cards-sec .custom-card .text {
    font-size: 28px;
    max-width: 703px;
    margin-left: 16px;
    margin-bottom: 24px;
  }

  .don-cards-sec .custom-card .bg-image {
    width: 474px;
    object-fit: contain;
    right: -20px;
  }

  .don-top-sec {
    height: 682px;
    gap: 13px;
    justify-content: center;
  }

  .don-top-sec .col-f {
    width: 633px;
    flex-grow: 0;
  }

  .don-top-sec .col-s {
    width: 571px;
    min-width: 571px;
  }

  .don-top-sec .title {
    font-size: 48px;
  }

  .don-text-sec .title {
    font-size: 40px;
    max-width: 707px;
  }

  .don-text-sec {
    margin-bottom: 100px;
  }

  .don-cards-sec {
    margin-bottom: 100px;
    width: calc(100% - 80px);
  }

  .don-cards-sec .cards .card {
    height: 300px;
  }

  .don-cards-sec .cards .card .upper-text {
    margin-top: 24px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .don-cards-sec .cards .card .text {
    font-size: 24px;
    max-width: 500px;
    margin: auto auto 24px 16px;
  }

  .don-methods {
    width: calc(100% - 80px);
    margin-bottom: 100px;
  }

  .don-methods .cards .card {
    height: 250px;
    max-width: 595px;
    padding: 32px 16px;
  }

  .don-methods .cards .card .card-title {
    font-size: 32px;
    max-width: 303px;
  }

  .don-methods .cards .card .bottom-images img {
    width: 40px;
    height: 40px;
  }

  .don-methods .cards .card .bottom-images {
    gap: 8px;
    max-width: 280px;
  }

  .don-methods .cards .card-f {
    background: url("../images/donation_page/card-f-bg-1280.svg") no-repeat;
    background-position: 0 100%;
  }

  .don-methods .cards .card-s {
    background: url("../images/donation_page/card-s-bg-1280.svg") no-repeat;
    background-position: 0 0;
  }
}

/* @media screen and (max-width: 1279px) */
@media screen and (max-width: 1279px) {
  .don-cards-sec .custom-card {
    min-height: 281px;
  }

  .don-cards-sec .custom-card .text {
    font-size: 24px;
  }

  .don-cards-sec .custom-card .bg-image {
    width: auto;
    right: -130px;
    top: auto;
    height: 100%;
    bottom: 0;
  }

  .don-top-sec {
    width: calc(100% - 40px);
    height: 580px;
  }

  .don-top-sec .col-f {
    width: 492px;
  }

  .don-top-sec .col-s {
    max-width: 476px;
    width: 476px;
    min-width: 0;
  }

  .don-top-sec .title {
    font-size: 40px;
    max-width: 394px;
  }

  .don-top-sec .subtitle {
    font-size: 16px;
    max-width: 376px;
  }

  .don-text-sec .title {
    font-size: 32px;
  }

  .don-text-sec .subtitle {
    font-size: 18px;
  }

  .don-methods {
    width: calc(100% - 40px);
  }

  .don-methods .title {
    font-size: 32px;
  }

  .don-methods .subtitle, .don-cards-sec .subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 424px;
  }

  .don-cards-sec {
    width: calc(100% - 40px);
  }

  .don-cards-sec .title {
    font-size: 32px;
    max-width: 426px;
  }

  .don-cards-sec .cards .card {
    height: 250px;
  }

  .don-cards-sec .cards .card .upper-text {
    font-size: 16px;
  }

  .don-cards-sec .cards .card .text {
    font-size: 18px;
    max-width: 500px;
  }

  .don-methods .cards .card {
    padding: 24px 16px;
    height: 220px;
    max-width: 487px;
  }

  .don-methods .cards .card .card-title {
    font-size: 28px;
  }

  .don-methods .cards .card .arrow {
    width: 21px;
    height: 20px;
    right: 16px;
    bottom: 17px;
  }

  .don-methods .cards {
    margin-bottom: 24px;
  }
}

/* @media screen and (max-width: 1023px) */
@media screen and (max-width: 1023px) {
  .don-cards-sec .custom-card .text {
    z-index: 1;
    max-width: 576px;
  }

  .don-cards-sec .custom-card .bg-image {
    width: auto;
    right: -130px;
    top: auto;
    height: 100%;
    bottom: 0;
    z-index: 0;
  }

  .don-top-sec {
    height: max-content;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .don-top-sec > .col-f {
    height: 580px;
  }

  .don-top-sec > .col-f, .don-top-sec > .col-s {
    max-width: 100%;
    width: 100%;
  }

  .don-text-sec {
    margin-bottom: 80px;
  }

  .don-text-sec .title {
    max-width: 582px;
  }

  .don-text-sec .subtitle {
    max-width: 524px;
  }

  .don-cards-sec {
    margin-bottom: 80px;
  }

  .don-methods {
    margin-bottom: 80px;
  }
}

/* @media screen and (max-width: 767px) */
@media screen and (max-width: 767px) {
  .don-cards-sec .custom-card {
    height: max-content;
    padding-top: 113px;
    min-height: max-content;
  }

  .don-cards-sec .custom-card .text {
    font-size: 20px;
    margin-left: 12px;
    margin-right: 12px;
    margin-bottom: 16px;
  }

  .don-cards-sec .custom-card .bg-image {
    bottom: -50px;
  }

  .don-top-sec {
    width: calc(100% - 20px);
    gap: 5px;
  }

  .don-top-sec > .col-f {
    height: 460px;
  }

  .don-top-sec .title {
    font-size: 36px;
    max-width: 275px;
  }

  .don-top-sec .subtitle {
    max-width: 276px;
    margin-bottom: 32px;
  }

  .don-text-sec {
    width: calc(100% - 40px);
    gap: 16px;
  }

  .don-cards-sec {
    width: calc(100% - 20px);
  }

  .don-cards-sec .cards {
    flex-direction: column;
  }

  .don-cards-sec .cards .card {
    height: 200px;
  }

  .don-cards-sec .cards .card .upper-text {
    margin-top: 16px;
  }

  .don-cards-sec .cards .card .text {
    font-size: 18px;
    max-width: 350px;
    margin: auto auto 16px 12px;
  }

  .don-methods {
    width: calc(100% - 20px);
  }

  .don-methods .title {
    margin-bottom: 16px;
  }

  .don-methods .cards {
    flex-direction: column;
  }

  .don-methods .cards .card {
    padding: 16px 12px;
    height: 170px;
  }

  .don-methods .cards .card .card-title {
    font-size: 24px;
    max-width: 231px;
  }

  .don-methods .cards .card-s .bottom-images img {
    width: 30px;
    height: 30px;
    max-width: 242px;
  }

  .don-methods .cards .card .arrow {
    bottom: 10px;
  }
}


.video-embed-container iframe {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}