/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --txt-grey: #444950;
  --gold: #ed9f29;
  --gold-deep: #c7730b;
  --gold-soft: #fcf3dc;
  --tg-5: #133840;
  --tg-6: #215140;
  --th-gd: #d9851e;
  --th-lgn: #728c58;
  --th-white: #f2f2f2;
  --cannoli-cream: #f1f0e2;
  --t-black: #1c1d20;
  --t-blue: #023047;
  --tb-dark: #1b263b;
  --grey: #f6f7f9;
  --success: #13ae8f;
  --error: #ff3333;

  /*===== Font and typography =====*/
  --pri-font: "Poppins", sans-serif;
  --int-font: "Inter", sans-serif;
  --dms-font: "DM Sans", sans-serif;
  --cor-font: "Cormorant Infant", serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --fs-9: 9rem;
  --fs-8-5: 8.5rem;
  --fs-8: 8rem;
  --fs-7-5: 7.5rem;
  --fs-7: 7rem;
  --fs-6-5: 6.5rem;
  --fs-6: 6rem;
  --fs-5-5: 5.5rem;
  --fs-5: 5rem;
  --fs-4-5: 4.5rem;
  --fs-4: 4rem;
  --fs-3-5: 3.5rem;
  --fs-3: 3rem;
  --fs-2-5: 2.5rem;
  --fs-2: 2rem;
  --fs-1-5: 1.5rem;
  --fs-1: 1rem;
  --fs-0-95: 0.95rem;
  --fs-0-85: 0.85rem;
  --fs-0-75: 0.75rem;
  --fs-0-65: 0.65rem;
  --fs-0-5: 0.5rem;
  --fs-0-25: 0.275rem;
  --fs-0-2: 0.2rem;
  /*===== Font weight =====*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*===== Margenes Bottom =====*/
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  --mb-3-5: 3rem;
  --mb-4: 4rem;
  --mb-4-5: 4.5rem;
  --mb-5: 5rem;
  --mb-5-5: 5.5rem;
  --mb-6: 6rem;
  --mb-6-5: 6.5rem;
  --mb-7: 7rem;
  --mb-7-5: 7.5rem;
  --mb-8: 8rem;
  --mb-8-5: 8.5rem;
  --mb-9: 9rem;
  --mb-9-5: 9.5rem;
  --mb-10: 10rem;
}

/* --------------- ========== LANDING PAGE-MAIN ========== ---------------*/
.lp-main {
  width: 100%;
  background: #f7f7f7;
  background-color: var(--white);
  z-index: 4;
  /* border: 3px dodgerblue solid; */
}

/*========== >>>>> LP - HERO SECTION <<<<< ==========*/
.hero {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  /* background-color: var(--black); */
  padding: var(--mb-0-75);
}

.h-container {
  position: relative;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
  z-index: 3;
  /* display: none; */
  /* border-radius: 10px; */
}

.h-data {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: flex-end;
  align-items: center;
  padding: var(--mb-3);
  padding-bottom: var(--mb-4);
  row-gap: var(--mb-1-5);
}

.hd-img {
  width: 150px;
  object-fit: cover;
}

.h-data h1 {
  width: 65%;
  font-size: var(--fs-5-5);
  font-weight: 500;
  text-align: center;
  color: var(--tg-5);
  color: var(--cannoli-cream);
  line-height: 0.9;
  text-transform: uppercase;
}

.h-data h1 span {
  color: var(--gold-deep);
}

.hd {
  width: 50%;
  justify-content: flex-end;
  align-items: center;
  row-gap: var(--mb-1-5);
  display: none;
}

.hd > p {
  width: 100%;
  color: #444950;
  color: #e5e5e5;
  font-size: 1.1rem;
}

.hd-action {
  position: absolute;
  bottom: var(--mb-2);
  width: 100%;
  justify-content: space-between;
  padding: 0 var(--mb-2);
}

.hd-action p {
  color: #a3a3a3;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

.hda-down {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.hda-down span {
  color: #e5e5e5;
}

.h-media {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.h-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*========== >>>>> LP - ABOUT SECTION <<<<< ==========*/
.ab {
  width: 100%;
  padding: var(--mb-5) var(--mb-3);
  /* padding-bottom: 0; */
}

.ab-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-5);
}

.ab-title {
  width: 100%;
  padding: 0;
  border-top: 1px #e5e5e5 solid;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: var(--mb-4);
}

.abt-img {
  flex: 0 0 15%;
  overflow: hidden;
}

.abt-img img {
  width: 100%;
  object-fit: cover;
}

.abt {
  flex: 0 0 65%;
  /* border: 1px dodgerblue solid; */
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.abt h2 {
  font-size: 2.8rem;
  font-weight: 500;
  text-align: left;
  color: var(--tg-5);
  color: var(--black);
  line-height: 1.2;
}

.abt h2 span {
  /* text-decoration: underline;
  text-decoration-color: goldenrod; */
  color: #444950;
  color: var(--gold-deep);
}

.abt > p {
  width: 100%;
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 1;
  font-family: var(--dms-font);
  color: oklch(46% 0.008 260);
}

.ab-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  /* border-top: 1px var(--black) solid;
  border-bottom: 1px var(--black) solid; */
}

.abc {
  position: relative;
  flex: 0 0 24.5%;
  height: 420px;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--mb-2);
  background-color: var(--white);
  /* background-color: #e7e8e1;
  background-color: #f7f7f7; */
  border: 1px #e5e5e5 solid;
  transition: all 0.3s ease;
}

.abc:hover {
  background-color: var(--soft-black);
}

.abc-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.abc-svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0.05;
  width: 180px;
}

.abc:hover .abc-svg {
  filter: invert(100%);
}

.abc:last-child {
  background-color: var(--tg-5);
  background-color: var(--black);
  background-image: url(/assets/img/bckg/tb-11.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.abc-head {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 3;
}

.abc-head h3 {
  flex: 0 0 70%;
  font-size: 2rem;
  font-weight: 500;
  text-align: left;
  color: var(--tg-5);
  color: var(--black);
  line-height: 1.15;
}

.abc:hover .abc-head h3 {
  color: var(--cannoli-cream);
}

#abch-icon {
  font-size: var(--fs-7);
}

.abch-img {
  width: 15px;
  object-fit: cover;
  opacity: 0.9;
  filter: invert(99%) sepia(4%) saturate(111%) hue-rotate(157deg)
    brightness(116%) contrast(100%);
  /* filter: invert(81%) sepia(47%) saturate(1465%) hue-rotate(342deg)
    brightness(89%) contrast(91%); */
}

.abc-head span {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
}

.abc:last-child .abc-head span {
  color: #e7e8e1;
}

.abc-body {
  width: 100%;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 3;
}

.abc-body p {
  font-weight: 500;
}

.abc:hover .abc-body p {
  color: #e5e5e5;
}

.abc:last-child .abc-head h3 {
  color: var(--cannoli-cream);
}

.abc:last-child .abc-body > p {
  color: #e7e8e1;
}

.abc:last-child .abc-body button:hover p {
  color: var(--black);
}

.abc:last-child .abc-body {
  justify-content: flex-start;
}

/*========== >>>>> LP - OBJECTIVES SECTION <<<<< ==========*/
.ob {
  width: 100%;
  background-color: oklch(96.4% 0.014 95);
  background-color: #f7f7f7;
  padding: var(--mb-6) var(--mb-3);
}

.ob-container {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-3);
  padding-bottom: var(--mb-2);
  border-bottom: 1px #d4d4d4 solid;
}

.ob-title {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: var(--mb-2);
  border-bottom: 1px #d4d4d4 solid;
}

.obt {
  flex: 0 0 50%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
}

.obt h2 {
  width: 90%;
  font-size: var(--fs-4);
  font-weight: 500;
  text-align: left;
  color: var(--tg-5);
  color: var(--black);
  line-height: 1.1;
  margin-top: var(--mb-0-75);
}

.obt h2 span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 6px;
}

.ob-title > p {
  flex: 0 0 35%;
  font-size: 1rem;
  margin-left: 0.25rem;
  font-weight: 500;
}

.ob-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-1-5);
}

.obc {
  position: relative;
  flex: 0 0 24.5%;
  height: 470px;
  /* background-color: #e7e8e1; */
}

.obc-img,
.obc-img img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.obc-img img {
  object-fit: cover;
}

/* .obc:last-child .obc-img img {
  object-position: 50% 95%;
} */

.obc-data {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
  align-items: flex-start;
  row-gap: var(--mb-1);
  padding: var(--mb-2);
  background: linear-gradient(to top, #000 0%, transparent 100%);
}

.obc-data h3 {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  color: var(--black);
  color: var(--white);
  line-height: 1.3;
}

.obc-data h3 strong {
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: goldenrod;
}

.obc-data p {
  color: #444950;
  color: #e5e5e5;
  font-size: 0.9rem;
}

/*========== >>>>> LP - IMPACT SECTION <<<<< ==========*/
.im {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--black);
  background-image: url(/assets/img/bckg/tb-11.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.im-svg {
  position: absolute;
  bottom: -8rem;
  filter: invert(100%);
  width: 90%;
  opacity: 0.05;
  display: none;
}

.im-container {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-4);
  padding: var(--mb-8) var(--mb-4);
  background-color: rgba(0, 0, 0, 0.75);
}

.im-title {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.im-title .sec-span {
  flex: 0 0 auto;
}

.im-title .sec-span img {
  filter: invert(99%) sepia(4%) saturate(111%) hue-rotate(157deg)
    brightness(116%) contrast(100%);
}

.im-title .sec-span span {
  background-color: var(--gold);
}

.im-title .sec-span p {
  color: var(--cannoli-cream);
}

.imt {
  flex: 0 0 65%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  /* border: 1px pink solid; */
}

.imt h3 {
  font-size: 3.4rem;
  font-weight: 500;
  text-align: left;
  color: var(--cannoli-cream);
  line-height: 1.1;
}

.imt p {
  width: 80%;
  color: #e5e5e5;
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 300;
}

.imt h3 span {
  color: #a3a3a3;
  color: var(--gold);
}

.imm-main {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.imm-list {
  flex: 0 0 27%;
  justify-content: flex-start;
  /* border: 1px dodgerblue solid; */
  padding-right: var(--mb-1-5);
  border-right: 1px #a3a3a3 solid;
}

.iml {
  position: relative;
  width: 100%;
  padding: var(--mb-1);
  padding-left: 0;
  border-bottom: 1px #a3a3a3 solid;
  justify-content: flex-start;
  column-gap: var(--mb-1-5);
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: pointer;
}

.iml:first-child {
  padding-top: var(--mb-0-25);
}

.iml.active {
  opacity: 1;
  border-bottom: none;
  padding-left: var(--mb-0-75);
}

.iml.active:hover {
  opacity: 1;
}

.iml:hover {
  opacity: 0.8;
  padding-left: var(--mb-0-75);
}

.iml-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: var(--gold);
  transition: all 0.3s ease-in;
}

.iml.active .iml-line {
  width: 100%;
}

.iml p {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  color: #e5e5e5;
}

.iml.active p {
  color: var(--gold);
}

.iml h4 {
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  color: #e5e5e5;
  line-height: 1.1;
  /* text-transform: uppercase; */
  font-family: var(--dms-font);
}

#iml-icon {
  position: absolute;
  right: 0;
  color: #e5e5e5;
}

.iml.active #iml-icon {
  rotate: 45deg;
  color: goldenrod;
}

.imm-cards {
  flex: 0 0 65%;
  justify-content: space-between;
  /* border: 1px tomato solid; */
}

.imc {
  position: relative;
  flex: 0 0 12%;
  height: 500px;
  border: 1px #bababa solid;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.imc.active {
  flex: 0 0 43%;
  opacity: 1;
}

.imc-img {
  position: absolute;
  display: none;
}

.imc-data {
  width: 100%;
  height: 100%;
  justify-content: space-between;
}

/* .imc.active .imc-data {
  align-items: flex-start;
} */

.imcd-no {
  width: 100%;
  /* border: 1px teal solid; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.8rem;
  padding-bottom: 0;
}

.imc.active .imc-data .imcd-no {
  justify-content: flex-start;
}

.imcd-no > span {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  color: #e5e5e5;
  rotate: -90deg;
  line-height: 1.2;
  transition: all 0.3s ease-in;
}

.imc.active .imcd-no > span {
  color: var(--gold);
  rotate: 0deg;
}

.imcd {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 1.2rem;
  padding: 0 var(--mb-1-5);
  padding-bottom: var(--mb-2);
  transition: all 0.5s ease;
  opacity: 0;
  display: none;
}

.imcd h3 {
  font-size: 2rem;
  font-weight: 500;
  text-align: left;
  color: var(--cannoli-cream);
  line-height: 1.2;
}

.imcd p {
  color: #e5e5e5;
  margin-bottom: var(--mb-0-5);
  font-weight: 300;
}

.imcd > span {
  width: 0;
  background-color: var(--gold);
  height: 1px;
  transition: all 8s ease;
}

.imc.active .imcd {
  display: flex;
  opacity: 1;
}

.imc.active .imcd > span {
  width: 100%;
}

/*========== >>>>> LP - PARTNERSHIP SECTION <<<<< ==========*/
.pt {
  position: relative;
  width: 100%;
  background-color: oklch(96.4% 0.014 95);
  background-color: #f7f7f7;
  padding: var(--mb-6) var(--mb-4);
}

.pt-svg {
  position: absolute;
  right: 0;
  bottom: -5rem;
  width: 30%;
  opacity: 0.05;
  /* display: none; */
}

.pt-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-5);
}

.pt-title {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
}

.ptt {
  flex: 0 0 50%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
}

.ptt h2 {
  font-size: var(--fs-4);
  font-weight: 500;
  text-align: left;
  color: var(--tg-5);
  color: var(--black);
  /* color: var(--cannoli-cream); */
  line-height: 1;
}

.ptt h2 span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 6px;
}

.pt-title > p {
  flex: 0 0 35%;
  color: #444950;
  font-size: 1.05rem;
  margin-bottom: var(--mb-0-25);
  font-weight: 500;
}

.pt-cards {
  width: 100%;
  border-top: 1px #e1e0dc solid;
  /* border-bottom: 1px #e1e0dc solid; */
  flex-wrap: wrap;
  justify-content: space-between;
}

.ptc {
  flex: 0 0 33.3%;
  height: 250px;
  justify-content: space-between;
  padding: 2.2rem;
  transition: all 0.3s ease;
}

.ptc:hover {
  background-color: #f7f7f7;
  background-color: var(--tg-5);
  background-color: var(--black);
}

.ptc:nth-child(2),
.ptc:nth-child(5) {
  border-right: 1px #e1e0dc solid;
  border-left: 1px #e1e0dc solid;
}

.ptc:first-child,
.ptc:nth-child(2),
.ptc:nth-child(3) {
  border-bottom: 1px #e1e0dc solid;
}

.ptc-head {
  width: 100%;
  justify-content: space-between;
}

.ptc-head #ptc-no {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  color: goldenrod;
}

.ptc-head span:last-child {
  color: #a3a3a3;
  transition: all 0.5s ease;
  transition-delay: 0.2s;
}

.ptc:hover .ptc-head span:last-child {
  color: goldenrod;
  transform: translate(8px, -8px);
  font-size: var(--fs-2);
}

.ptc-data {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.ptc-data h3 {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.1;
  color: var(--tg-5);
  color: var(--black);
  text-transform: lowercase;
}

.ptc:hover .ptc-data h3 {
  color: var(--cannoli-cream);
}

.ptc-data p {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  color: #444950;
}

.ptc:hover .ptc-data p {
  color: #e5e5e5;
}

/*========== >>>>> LP - LEADERSHIP SECTION <<<<< ==========*/
.ld {
  position: relative;
  width: 100%;
  padding: var(--mb-5) var(--mb-4);
  /* background-color: #f7f7f7;
  background-color: oklch(96.4% 0.014 95); */
  background-color: var(--white);
}

.ld-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-6);
  border-top: 1px #e5e5e5 solid;
  border-bottom: 1px #e5e5e5 solid;
  padding: var(--mb-5) 0;
}

.ld-title {
  justify-content: space-between;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.ld-title h2 {
  width: 60%;
  font-size: var(--fs-4);
  font-weight: 500;
  text-align: center;
  color: var(--tg-5);
  color: var(--black);
  line-height: 1.1;
  margin-top: -0.75rem;
}

.ld-title h2 span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 6px;
}

.ld-title > p {
  width: 50%;
  color: #444950;
  text-align: center;
}

.ld-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.ldc-logo {
  flex: 0 0 220px;
  height: 400px;
  /* border: 1px pink solid; */
  overflow: hidden;
  display: none;
}

.ldc-logo img {
  width: 100%;
  object-fit: cover;
}

.ldc {
  flex: 0 0 48%;
  justify-content: flex-start;
  row-gap: var(--mb-1-5);
}

.ldc:last-child {
  margin-top: var(--mb-3);
}

.ldc-img {
  width: 100%;
  height: 680px;
  overflow: hidden;
  background-color: goldenrod;
}

.ldc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ldc-data {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: var(--mb-4);
  /* row-gap: var(--mb-0-25); */
}

.ldc-data h3 {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: left;
  color: var(--black);
  text-transform: capitalize;
  font-family: var(--dms-font);
}

.ldc-data span {
  font-size: 0.8rem;
  font-weight: 400;
  text-align: left;
  color: var(--gold-deep);
  font-family: var(--dms-font);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ldc-data p {
  color: #444950;
  font-size: 0.95rem;
  text-align: left;
  margin-top: var(--mb-1);
  font-family: var(--dms-font);
}

/*========== >>>>> LP - BANNER SECTION <<<<< ==========*/
.ba {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background-color: var(--black);
  background-image: url(/assets/img/bckg/tb-11.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ba-container {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.75);
}

.bac {
  width: 70%;
  padding: var(--mb-4);
  justify-content: center;
  align-items: center;
  row-gap: var(--mb-3);
  /* border: 1px dodgerblue solid; */
}

.bac-title,
.bac-body {
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-1-5);
}

.bac-img {
  width: 150px;
  object-fit: cover;
}

.bac-title h2 {
  font-size: var(--fs-5);
  font-weight: 500;
  text-align: center;
  color: var(--white);
  line-height: 1;
}

.bac-title h2 span {
  color: var(--gold);
}

.bac-body > p {
  width: 60%;
  color: #e5e5e5;
  text-align: center;
}

/*========== >>>>> LP - FAQ SECTION <<<<< ==========*/
.fq {
  position: relative;
  width: 100%;
  padding: var(--mb-5) var(--mb-4);
  background-color: var(--white);
  background-color: oklch(96.4% 0.014 95);
  z-index: 4;
  /* display: none; */
}

.fq-svg {
  position: absolute;
  bottom: -16.5rem;
  left: 4rem;
  width: 410px;
  overflow: hidden;
  z-index: 2;
  opacity: 0.6;
}

.fq-container {
  width: 100%;
  /* height: 100%; */
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
}

.fq-svg img {
  width: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.fq-title {
  flex: 0 0 40%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  z-index: 3;
}

.fqt-head,
.fqt-data {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}

.fqt-head h3,
.fqt-head h4 {
  font-size: var(--fs-3-5);
  font-weight: 500;
  text-align: left;
  color: var(--tg-6);
  color: var(--black);
  line-height: 1.1;
}

.fqt-data {
  row-gap: var(--mb-1-5);
}

.fqt-data > p {
  width: 85%;
  color: var(--tg-6);
  color: #444950;
}

.fq-cards {
  flex: 0 0 50%;
  /* height: 100%; */
  justify-content: flex-start;
  /* border: 1px tomato solid; */
  row-gap: var(--mb-1);
  padding-top: var(--mb-0-5);
}

.fqc {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  border: 1px var(--tg-6) solid;
  /* border-radius: 10px; */
  /* background-color: var(--white); */
  cursor: pointer;
}

.fqc-q,
.fqc-a {
  width: 100%;
  padding: var(--mb-1-5);
  justify-content: space-between;
  align-items: flex-start;
}

.fqc.active .fqc-q {
  padding-bottom: var(--mb-0-5);
}

.fqc-q h4 {
  flex: 0 0 85%;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
}

.fqc-q #fqcq-icon {
  /* padding: var(--mb-0-25); */
  border: 1px var(--black) solid;
  border-radius: 50%;
  color: var(--black);
  font-size: var(--fs-1-5);
  transition: all 0.2s ease;
}

.fqc:hover .fqc-q #fqcq-icon {
  background-color: goldenrod;
  color: var(--black);
  border: 1px goldenrod solid;
}

.fqc.active .fqc-q #fqcq-icon {
  rotate: 45deg;
}

.fqc-a {
  justify-content: flex-start;
  row-gap: var(--mb-0-75);
  padding-top: 0;
  animation: fadeY 0.3s ease;
  display: none;
}

.fqc.active .fqc-a {
  display: flex;
}

.fqc-a p {
  width: 90%;
  font-size: 0.9rem;
  color: #444950;
}

.fqc-a p strong {
  font-weight: 600;
}

/* --------------- ========== ABOUT PAGE - MAIN ========== ---------------*/
.ab-main {
  width: 100%;
  background: #f7f7f7;
  background-color: var(--white);
  z-index: 4;
  /* border: 3px dodgerblue solid; */
}

/*========== >>>>> ABOUT PAGE - HERO SECTION <<<<< ==========*/
.aero {
  width: 100%;
}

.ae-container {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-3-5);
  padding: var(--mb-6) var(--mb-4);
  padding-top: 10rem;
}

.ae-title {
  position: relative;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2-5);
  /* overflow: hidden; */
}

.ae-title h1 {
  width: 80%;
  font-size: var(--fs-5-5);
  font-weight: 600;
  text-align: left;
  color: var(--black);
  line-height: 1;
  z-index: 3;
}

.ae-title h1 span {
  /* text-decoration: underline;
  text-decoration-color: var(--gold); */
  color: var(--gold);
}

.aet {
  width: 100%;
  justify-content: space-between;
  padding-top: var(--mb-2);
  border-top: 1px #d4d4d4 solid;
  z-index: 3;
}

.aet p {
  flex: 0 0 55%;
  color: var(--txt-grey);
  margin-bottom: var(--mb-0-5);
  font-size: 1.1rem;
}

#aet-down {
  background-color: var(--black);
  color: var(--white);
  padding: var(--mb-0-5);
  font-size: var(--fs-1-5);
  /* border-bottom: 3px var(--gold) solid;
  color: var(--black);
  padding-bottom: var(--mb-0-25); */
}

.aet-img {
  position: absolute;
  z-index: 2;
  bottom: -10rem;
  width: 100%;
  object-fit: cover;
  opacity: 0.02;
}

.ae-media {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.ae-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ae-cards {
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  border-top: 1px #e5e5e5 solid;
  border-bottom: 1px #e5e5e5 solid;
}

.aec {
  flex: 0 0 50%;
  height: 318px;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
  padding: var(--mb-3);
}

.aec:first-child {
  padding-left: 0;
  border-right: 1px #e5e5e5 solid;
}

.aec span {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--gold);
  line-height: 1;
}

.aec h3 {
  font-size: var(--fs-2-5);
  font-weight: 600;
  text-align: left;
  color: var(--black);
  line-height: 1.1;
  text-transform: lowercase;
}

.aec p {
  width: 90%;
  font-weight: 400;
  color: var(--txt-grey);
}

/*========== >>>>> ABOUT PAGE - STORY SECTION <<<<< ==========*/
.a-story {
  width: 100%;
  padding: var(--mb-6) var(--mb-4);
  padding-top: var(--mb-4);
}

.ast-container {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-4);
}

.ast-title {
  flex: 0 0 35%;
  height: 620px;
  justify-content: space-between;
  align-items: flex-start;
}

.astt-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.ast-body {
  flex: 0 0 55%;
  height: 620px;

  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
}

.ast-body h3 {
  font-size: var(--fs-3);
  font-weight: 600;
  text-align: left;
  color: var(--black);
  line-height: 1.1;
  margin-top: -0.5rem;
}

.ast-body p {
  width: 90%;
  color: var(--txt-grey);
}

.ast-body q {
  width: 90%;

  font-family: var(--cor-font);
  font-size: 2rem;
  line-height: 1.2;
  font-style: italic;
}

/*========== >>>>> ABOUT PAGE - INITIATIVE SECTION <<<<< ==========*/
.ai {
  width: 100%;
  background-color: var(--black);
  background-image: url(/assets/img/bckg/tb-11.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ai-container {
  width: 100%;
  padding: var(--mb-6) var(--mb-5);
  background-color: rgba(0, 0, 0, 0.7);
  row-gap: var(--mb-6);
}

.ai-title {
  width: 100%;
  justify-content: space-between;
}

.ai-title .sec-span #secs-line {
  background-color: var(--gold);
}
.ai-title .sec-span img {
  filter: invert(100%);
}

.ai-title .sec-span p {
  color: var(--white);
}

.ai-title h2 {
  font-size: var(--fs-2-5);
  font-weight: 500;
  text-align: left;
  line-height: 1.1;
  color: var(--white);
}

.ai-title h2 span {
  color: var(--gold);
}

.ai-cards {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
}

.aic {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: var(--mb-2) 0;
  border-top: 1px #a3a3a3 solid;
  opacity: 0.8;
  opacity: 0.8;
  transition: all 0.3s ease;

  /* border-bottom: 1px #a3a3a3 solid; */
}

.aic p {
  color: var(--gold);
  font-size: 1.5rem;
}

.aic h3 {
  flex: 0 0 45%;
  font-size: var(--fs-2);
  font-weight: 400;
  text-align: center;
  color: var(--white);
  line-height: 1.2;
}

.aic span {
  color: var(--gold);
  font-size: var(--fs-2);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.aic:hover {
  opacity: 1;
}

.aic:hover span {
  rotate: 45deg;
}

/*========== >>>>> ABOUT PAGE - WHY SECTION <<<<< ==========*/
.aw {
  width: 100%;
  padding: var(--mb-6) var(--mb-4);
}

.aw-container {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-4);
}

.aw-title {
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-2);
}

.aw-title h2 {
  font-size: var(--fs-3);
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
}

.aw-title h2 span {
  color: var(--gold);
}

.aw-cards {
  position: relative;
}

.awc {
  width: 500px;
  overflow: hidden;
  background-color: var(--white);
}

.awc.img {
  height: 450px;
  background-color: #747474;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.awc.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awc.data {
  padding: var(--mb-2);
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
}

.awc.data {
  margin-left: -8rem;
  margin-bottom: -8rem;
}

.awc.data p {
  font-weight: 500;
}

.awc.data p span {
  color: var(--gold);
}

/* --------------- ========== IMPACT PAGE - MAIN ========== ---------------*/
.im-main {
  width: 100%;
  background: #f7f7f7;
  background-color: var(--white);
  z-index: 4;
  /* border: 3px dodgerblue solid; */
}

/*========== >>>>> IMPACT PAGE - HERO SECTION <<<<< ==========*/
.iero {
  width: 100%;
  /* height: 100dvh; */
}

.ie-container {
  width: 100%;
  /* height: 100%; */
  padding: var(--mb-4);
  padding-top: 9.5rem;
  justify-content: space-between;
  /* align-items: flex-start; */
  flex-wrap: wrap;
  row-gap: var(--mb-4);
}

.ie-title {
  flex: 0 0 50%;
  row-gap: var(--mb-2);
  align-items: flex-start;
}

.ie-title h1 {
  font-size: var(--fs-5);
  font-weight: 600;
  text-align: left;
  color: var(--black);
  line-height: 1.1;
}

.ie-title h1 span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.ie-title p {
  color: var(--txt-grey);
}

.ie-img {
  flex: 0 0 40%;
  height: 450px;
  overflow: hidden;
  border: 1px #e5e5e5 solid;
}

.ie-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 90%;
}

.ie-stats {
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  border: 1px #e5e5e5 solid;
  border-bottom: none;
}

.ies {
  flex: 0 0 25%;
  height: 198px;
  padding: var(--mb-2);
  row-gap: var(--mb-1);
  justify-content: flex-start;
  align-items: flex-start;
}

.ies {
  border-right: 1px #e5e5e5 solid;
}

.ies:last-child {
  border: none;
}

.ies h3 {
  font-size: var(--fs-3);
  font-weight: 400;
  text-align: left;
  color: var(--gold);
  line-height: 1.1;
}

.ies p {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--txt-grey);
  line-height: 1.5;
}

/*========== >>>>> IMPACT PAGE - BENEFITS SECTION <<<<< ==========*/
.ib {
  width: 100%;
  padding: var(--mb-6) var(--mb-4);
}

.ib-container {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-4);
}

.ib-title {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: var(--mb-3);
  border-top: 1px #e5e5e5 solid;
}

.ib-title h2 {
  flex: 0 0 50%;
  font-size: var(--fs-3);
  font-weight: 600;
  text-align: left;
  color: var(--black);
  line-height: 1.1;
  margin-top: -0.5rem;
}

.ib-title h2 span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.ib-cards {
  width: 100%;
  border-top: 1px #e5e5e5 solid;
  flex-wrap: wrap;
}

.ibc {
  flex: 0 0 50%;
  height: 263px;
  padding: var(--mb-2);
  row-gap: var(--mb-2);
  justify-content: flex-start;
  align-items: flex-start;
}

.ibc:hover {
  background-color: oklch(96.4% 0.014 95);
}

.ibc:first-child,
.ibc:nth-child(3) {
  border-right: 1px #e5e5e5 solid;
}

.ibc:first-child,
.ibc:nth-child(2) {
  border-bottom: 1px #e5e5e5 solid;
}

.ibc span {
  font-size: var(--fs-1);
  font-weight: 500;
  text-align: left;
  color: var(--gold);
  line-height: 1.1;
}

.ibc h3 {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: left;
  color: var(--black);
  line-height: 1.1;
}

.ibc p {
  width: 90%;
  color: var(--txt-grey);
}

/*========== >>>>> IMPACT PAGE - SOCIAL SECTION <<<<< ==========*/
.is {
  width: 100%;
  background-color: rgb(0, 0, 0, 0.75);
  background-color: oklch(96.4% 0.014 95);
  padding: var(--mb-6) var(--mb-4);
}

.is-container {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-4);
}

.is-title {
  flex: 0 0 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.ist {
  flex: 0 0 60%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.ist h2 {
  font-size: var(--fs-3);
  font-weight: 600;
  text-align: left;
  color: var(--black);
  line-height: 1.1;
}

.ist p {
  width: 65%;
  color: var(--txt-grey);
}

.is-img {
  flex: 0 0 35%;
  height: 460px;
  /* border: 1px #747474 solid; */
}

.is-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.is-list {
  flex: 0 0 60%;
  justify-content: flex-start;
  align-items: flex-start;
}

.isl {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: var(--mb-1-5);
  padding: var(--mb-2) 0;
  border-top: 1px #d4d4d4 solid;
}

.isl:last-child {
  border-bottom: 1px #d4d4d4 solid;
}

.isl span {
  color: var(--gold);
  font-weight: 500;
  font-size: 1.1rem;
}

.isl-data {
  flex: 0 0 70%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: var(--mb-0-75);
}

.isl-data h4 {
  font-size: var(--fs-1-5);
  font-weight: 500;
  text-align: left;
  color: var(--black);
  line-height: 1.1;
}

.isl-data p {
  color: var(--txt-grey);
}

/*========== >>>>> IMPACT PAGE - NATIONAL SECTION <<<<< ==========*/
.in {
  width: 100%;
  background-color: var(--black);
  background-image: url(/assets/img/bckg/tb-11.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.in-container {
  width: 100%;
  background-color: rgb(0, 0, 0, 0.7);
  padding: var(--mb-6) var(--mb-4);
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-4);
}

.in-title {
  flex: 0 0 45%;
  align-items: flex-start;
  row-gap: var(--mb-2);
}

.in-title .sec-span img {
  filter: invert(100%);
}

.in-title .sec-span #secs-line {
  background-color: var(--gold);
}

.in-title .sec-span p {
  color: var(--white);
}

.in-title h2 {
  font-size: var(--fs-3);
  font-weight: 600;
  text-align: left;
  color: var(--white);
  line-height: 1.2;
}

.in-title h2 span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.in-title p {
  color: #e5e5e5;
}

.in-cards {
  flex: 0 0 50%;
  flex-wrap: wrap;
}

.inc {
  flex: 0 0 50%;
  height: 170px;
  padding: var(--mb-2);
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1);
}

.inc:first-child,
.inc:nth-child(2) {
  border-bottom: 1px #a3a3a3 solid;
}

.inc:first-child,
.inc:nth-child(3) {
  border-right: 1px #a3a3a3 solid;
}

.inc h4 {
  font-size: 1.35rem;
  font-weight: 500;
  text-align: left;
  color: var(--white);
  line-height: 1.1;
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.inc p {
  color: #e5e5e5;
  font-size: 0.9rem;
}

/*========== >>>>> IMPACT PAGE - FUTURE SECTION <<<<< ==========*/
.if {
  width: 100%;
  padding: var(--mb-6) var(--mb-4);
  padding-bottom: var(--mb-4);
}

.if-container {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  /* row-gap: var(--mb-4); */
}

.if-title {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: var(--mb-3) 0;
  border-top: 1px #e5e5e5 solid;
  /* border-bottom: 1px #e5e5e5 solid; */
}

.if-title h2 {
  font-size: var(--fs-3);
  font-weight: 600;
  text-align: left;
  color: var(--black);
  line-height: 1.2;
}

.if-title h2 span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.if-cards {
  width: 100%;
  border-top: 1px #e5e5e5 solid;
}

.ifc {
  flex: 0 0 33.3%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  padding: var(--mb-2);
}

.ifc:nth-child(2) {
  border-right: 1px #e5e5e5 solid;
  border-left: 1px #e5e5e5 solid;
}

.ifc span {
  color: var(--gold);
  font-weight: 400;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1;
}

.ifc h3 {
  font-size: 2.25rem;
  font-weight: 600;
  text-align: left;
  color: var(--black);
  line-height: 1.1;
}

.ifc p {
  color: var(--txt-grey);
}

/*========== >>>>> IMPACT PAGE - GALLERY SECTION <<<<< ==========*/
.ig {
  width: 100%;
  padding: var(--mb-4);
  padding-bottom: var(--mb-6);
}

.ig-container {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-4);
}

.ig-title {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-2);
  padding-top: var(--mb-4);
  border-top: 1px #e5e5e5 solid;
}

.ig-title h2 {
  width: 50%;
  font-size: var(--fs-3);
  font-weight: 600;
  text-align: center;
  color: var(--black);
  line-height: 1.2;
}

.ig-title h2 span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.ig-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 1rem;
  flex-wrap: wrap;
}

.igc {
  flex: 0 0 auto;
  height: 500px;
  border: 1px #e5e5e5 solid;
  overflow: hidden;
}

.igc:first-child,
.igc:nth-child(4),
.igc:nth-child(5) {
  flex: 0 0 61%;
}

.igc:nth-child(2),
.igc:nth-child(3),
.igc:nth-child(6) {
  flex: 0 0 38%;
}

.igc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.igc:hover img {
  scale: 1.1;
}

/* --------------- ========== PARTNERSHIP PAGE - MAIN ========== ---------------*/
.pt-main {
  width: 100%;
  background: #f7f7f7;
  background-color: var(--white);
  z-index: 4;
  /* border: 3px dodgerblue solid; */
}

/*========== >>>>> PARTNERSHIP PAGE - HERO SECTION <<<<< ==========*/
.pero {
  width: 100%;
  height: 100dvh;
  padding: var(--mb-0-5);
}

.pe-container {
  width: 100%;
  height: 100%;
}

.pe-img {
  width: 100%;
  height: 100%;
  background-color: var(--black);
  overflow: hidden;
}

.pe-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pe-title {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: flex-end;
  align-items: center;
  row-gap: var(--mb-2);
  padding: var(--mb-4);
  padding-bottom: var(--mb-6);
  padding-top: 10rem;
}

.pe-title .sec-span img {
  filter: invert(100%);
}

.pe-title .sec-span #secs-line {
  background-color: var(--gold);
}

.pe-title .sec-span p {
  color: var(--white);
}

.pe-title h1 {
  width: 70%;
  font-size: var(--fs-5-5);
  font-weight: 600;
  text-align: center;
  color: var(--white);
  line-height: 1;
}

.pe-title h1 span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.pe-title > p {
  width: 45%;
  color: #e5e5e5;
  text-align: center;
}

/*========== >>>>> PARTNERSHIP PAGE - WHY SECTION <<<<< ==========*/
.pw {
  width: 100%;
  height: 100dvh;
  padding: var(--mb-6) var(--mb-4);
}

.pw-container {
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.pw-title {
  flex: 0 0 30%;
  height: 100%;
  justify-content: space-between;
}

.pwt {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.pwt h2 {
  font-size: var(--fs-3);
  font-weight: 600;
  text-align: left;
  color: var(--black);
  line-height: 1;
}

.pwt h2 span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.pw-title p {
  color: var(--black);
}

.pw-img {
  flex: 0 0 35%;
  height: 100%;
  overflow: hidden;
  padding: var(--mb-0-5);
  border: 2px var(--gold) solid;
}

.pw-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pw-data {
  flex: 0 0 30%;
  height: 100%;
  justify-content: space-between;
}

.pw-data p {
  color: var(--black);
}

/*========== >>>>> PARTNERSHIP PAGE - WHO SECTION <<<<< ==========*/
.pc {
  width: 100%;
  padding: var(--mb-0-5);
}

.pc-container {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-4);
  background-color: oklch(96.4% 0.014 95);
  padding: var(--mb-5-5) var(--mb-3-5);
}

.pc-title {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: var(--mb-2) 0;
  border-top: 1px #a3a3a3 solid;
  border-bottom: 1px #a3a3a3 solid;
}

.pc-title h2 {
  flex: 0 0 50%;
  font-size: var(--fs-3);
  font-weight: 500;
  text-align: left;
  color: var(--black);
  line-height: 1.1;
}

.pc-title h2 span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.pc-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-4);
}

.pcc {
  flex: 0 0 32%;
  height: 270px;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  border-bottom: 1px #a3a3a3 solid;
  padding: 0 var(--mb-2);
}

.pcc span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
}

.pcc h3 {
  font-size: var(--fs-2);
  font-weight: 500;
  text-align: left;
  color: var(--black);
  line-height: 1.1;
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.pcc p {
  font-size: var(--txt-grey);
}

/*========== >>>>> PARTNERSHIP PAGE - OPPORTUNITIES ECTION <<<<< ==========*/
.po {
  width: 100%;
  padding: var(--mb-6) var(--mb-4);
}

.po-container {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-4);
}

.po-title {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: var(--mb-2);
  border-bottom: 1px #e5e5e5 solid;
}

.pot {
  flex: 0 0 50%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 1.25rem;
}

.pot h2 {
  font-size: var(--fs-3);
  font-weight: 500;
  text-align: left;
  color: var(--black);
  line-height: 1;
}

.pot h2 span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.pot p {
  width: 80%;
  color: var(--txt-grey);
}

.po-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.poc {
  flex: 0 0 33.3%;
  justify-content: flex-start;
  align-items: center;
  padding: var(--mb-2);
  row-gap: var(--mb-2);
}

.poc:first-child {
  padding-left: 0;
}

.poc:nth-child(2) {
  border-right: 1px #e5e5e5 solid;
  border-left: 1px #e5e5e5 solid;
}

.poc-head {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 1.5rem;
}

.poc-head span {
  color: var(--gold-deep);
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1.1;
  letter-spacing: 0.2em;
}

.poc-head h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
  color: var(--black);
  line-height: 1;
}

.poc-head p {
  font-size: 0.9rem;
}

.poc-list {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 0.25rem;
}

.pocl {
  width: 100%;
  justify-content: flex-start;
  column-gap: var(--mb-0-5);
}

.pocl p {
  font-size: 0.9rem;
  color: var(--black);
  line-height: 1.5;
}

.pocl span {
  color: var(--gold-deep);
  font-size: 1.2rem;
}

/*========== >>>>> PARTNERSHIP PAGE - BENEFITS ECTION <<<<< ==========*/
.pb {
  width: 100%;
  background-color: var(--black);
  background-image: url(/assets/img/bckg/tb-11.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pb-container {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: flex-start;
  align-items: center;
  padding: var(--mb-6) var(--mb-4);
  row-gap: var(--mb-4);
}

.pb-title {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--mb-1-5);
}

.pb-title .sec-span img {
  filter: invert(100%);
}

.pb-title .sec-span #secs-line {
  background-color: var(--gold);
}

.pb-title .sec-span p {
  color: var(--white);
}

.pb-title h2 {
  flex: 0 0 auto;
  font-size: var(--fs-3);
  font-weight: 500;
  text-align: center;
  color: var(--white);
  line-height: 1.1;
}

.pb-title h2 span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.pb-cards {
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.pbc {
  flex: 0 0 33.3%;
  justify-content: flex-start;
  align-items: flex-start;
  padding: var(--mb-2);
  row-gap: var(--mb-1-5);
}

.pbc:nth-child(2),
.pbc:nth-child(5) {
  border-right: 1px #747474 solid;
  border-left: 1px #747474 solid;
}

.pbc h4 {
  font-size: 1.45rem;
  font-weight: 500;
  text-align: left;
  color: var(--white);
  line-height: 1.1;
}

.pbc p {
  font-size: 0.95rem;
  color: #d4d4d4;
}

.pbc:nth-child(4),
.pbc:nth-child(5),
.pbc:nth-child(6) {
  border-top: 1px #747474 solid;
}

/*========== >>>>> PARTNERSHIP PAGE - REACH SECTION <<<<< ==========*/
.pr {
  width: 100%;
  padding: var(--mb-6) var(--mb-4);
}

.pr-container {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  row-gap: var(--mb-4);
  padding: var(--mb-3) 0;
  border-top: 1px #e5e5e5 solid;
  border-bottom: 1px #e5e5e5 solid;
}

.pr-title {
  flex: 0 0 50%;
  row-gap: var(--mb-1-5);
  align-items: flex-start;
}

.pr-title h2 {
  font-size: var(--fs-4);
  font-weight: 600;
  text-align: left;
  color: var(--black);
  line-height: 1;
}

.pr-title h2 span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.pr-title > p {
  width: 80%;
  color: var(--txt-grey);
}

.pr-img {
  flex: 0 0 40%;
  height: 350px;
  overflow: hidden;
}

.pr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------- ========== CONTACT PAGE - MAIN ========== ---------------*/
.co-main {
  width: 100%;
  background: #f7f7f7;
  background-color: var(--white);
  z-index: 4;
  /* border: 3px dodgerblue solid; */
}

/*========== >>>>> CONTACT - HERO SECTION <<<<< ==========*/
.cero {
  width: 100%;
  height: 100dvh;
  background-color: var(--white);
  background-image: url(/assets/img/bckg/b-10.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ce-container {
  width: 100%;
  height: 100%;
  padding: var(--mb-1);
  padding-top: var(--mb-8);
  justify-content: flex-end;
  align-items: center;
  background-color: rgba(250, 250, 250, 0.95);
}

.ce-title {
  width: 100%;
  flex: 0 0 52.5%;
  /* padding: var(--mb-5-5) 0; */
  border-top: 1px #d4d4d4 solid;
  border-bottom: 1px #d4d4d4 solid;
}

.ce-title h1 {
  font-size: 17vw;
  font-weight: 600;
  text-align: center;
  color: var(--black);
  line-height: 0.8;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.ce-title h1 span {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.ce-lists {
  width: 100%;
  flex: 0 0 32.5%;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--mb-2-5) 0;
  border-bottom: 1px #d4d4d4 solid;
}

.cel {
  flex: 0 0 33.3%;
  justify-content: flex-start;
  align-items: flex-start;
}

.cel h4 {
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: #444950;
  opacity: 0.9;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: var(--mb-0-5);
}

.celi {
  position: relative;
}

.celi a {
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.2;
  font-weight: 500;
  transition: all 0.2s ease;
}

.celi a:hover {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1.5px;
}

.cel p {
  color: var(--black);
  line-height: 1.3;
}

.cel p a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-decoration-color: var(--gold-deep);
  text-decoration-thickness: 1.5px;
}

.cel p a:hover {
  text-decoration-color: var(--gold);
  color: var(--gold);
}

.ce-foot {
  width: 100%;
  flex: 0 0 12.5%;
  justify-content: space-between;
  /* padding-top: var(--mb-2); */
}

.cef {
  flex: 0 0 33.3%;
  justify-content: flex-start;
}

.cef:last-child {
  justify-content: space-between;
  column-gap: var(--mb-2);
}

.cef p {
  color: var(--black);
}

.cef:last-child a {
  font-size: 1rem;
  color: var(--black);
  line-height: 1.2;
  font-weight: 400;
  transition: all 0.2s ease;
}

.cef:last-child a:hover {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1.5px;
}

/*===== MEDIA QUERIES =====*/
/* Media query for screens with a maximum width of 500px */
@media screen and (max-width: 500px) {
  /* --------------- ========== LANDING PAGE-MAIN ========== ---------------*/
  .lp-main {
    width: 100%;
    background: #f7f7f7;
    background-color: var(--white);
    z-index: 4;
    /* border: 3px dodgerblue solid; */
  }

  /*========== >>>>> LP - HERO SECTION <<<<< ==========*/
  .hero {
    width: 100%;
    padding: 0;
  }

  .h-container {
    position: relative;
    width: 100%;
    /* display: none; */
    /* border-radius: 10px; */
  }

  .h-data {
    background-color: rgba(0, 0, 0, 0.4);
    padding: var(--mb-2);
    padding-bottom: var(--mb-5);
    row-gap: var(--mb-1-5);
  }

  .hd-img {
    width: 120px;
    object-fit: cover;
  }

  .h-data h1 {
    width: 100%;
    font-size: var(--fs-3-5);
    text-transform: uppercase;
    line-height: 1;
  }

  .h-data h1 span {
    color: var(--gold-deep);
  }

  .hd-action {
    position: absolute;
    bottom: var(--mb-2);
    padding: 0 var(--mb-2);
  }

  .hd-action p {
    font-size: 0.8rem;
  }

  .hda-down span {
    color: #e5e5e5;
  }

  .h-media {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .h-media video {
    object-fit: cover;
    object-position: 60% 50%;
  }

  /*========== >>>>> LP - ABOUT SECTION <<<<< ==========*/
  .ab {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    /* padding-bottom: 0; */
  }

  .ab-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-4);
  }

  .ab-title {
    width: 100%;
    padding: 0;
    border-top: 1px #e5e5e5 solid;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-3);
    padding-top: var(--mb-4);
  }

  .abt {
    flex: 0 0 auto;
    width: 100%;
    /* border: 1px dodgerblue solid; */
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .abt h2 {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.1;
  }

  .abt > p {
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
  }

  .ab-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: unset;
    flex-direction: column;
    row-gap: var(--mb-2);
  }

  .abc {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--mb-2);
    row-gap: var(--mb-4);
    overflow: hidden;
  }

  .abc:hover {
    background-color: var(--soft-black);
  }

  .abc-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  .abc-svg {
    position: absolute;
    bottom: -2rem;
    left: 80%;
    width: 180px;
  }

  .abc:hover .abc-svg {
    filter: invert(100%);
  }

  .abc-head {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 3;
  }

  .abc-head h3 {
    flex: 0 0 70%;
    font-size: 1.7rem;
    line-height: 1.15;
  }

  #abch-icon {
    font-size: var(--fs-7);
  }

  .abc-head span {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
  }

  /*========== >>>>> LP - OBJECTIVES SECTION <<<<< ==========*/
  .ob {
    width: 100%;
    padding: var(--mb-5) var(--mb-1-5);
  }

  .ob-container {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: var(--mb-3);
    padding-bottom: var(--mb-2);
    border-bottom: 1px #d4d4d4 solid;
  }

  .ob-title {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1-5);
  }

  .obt {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1);
  }

  .obt h2 {
    width: 90%;
    font-size: var(--fs-2-5);
    margin: 0;
    text-align: center;
    margin-top: var(--mb-0-5);
  }

  .obt h2 span {
    text-decoration-thickness: 4px;
  }

  .ob-title > p {
    flex: 0 0 auto;
    width: 100%;
    margin: 0;
    text-align: center;
    font-weight: 500;
  }

  .ob-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: var(--mb-1-5);
  }

  .obc {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 470px;
    /* background-color: #e7e8e1; */
  }

  /* .obc:last-child .obc-img img {
  object-position: 50% 95%;
} */

  .obc-data {
    align-items: center;
    row-gap: var(--mb-1);
    padding: var(--mb-2);
  }

  .obc-data h3 {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
  }

  .obc-data h3 strong {
    text-decoration-thickness: 2px;
    text-decoration-color: goldenrod;
  }

  .obc-data p {
    font-size: 0.9rem;
    text-align: center;
  }

  /*========== >>>>> LP - IMPACT SECTION <<<<< ==========*/
  .im {
    position: relative;
    width: 100%;
  }

  .im-container {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-4);
    padding: var(--mb-5) var(--mb-1-5);
    background-color: rgba(0, 0, 0, 0.75);
  }

  .im-title {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2-5);
  }

  .imt {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
    /* border: 1px pink solid; */
  }

  .imt h3 {
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
  }

  .imt p {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 300;
  }

  .imm-main {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }

  .imm-list {
    display: none;
  }

  .imm-cards {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2-5);
    /* border: 1px tomato solid; */
  }

  .imc {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 400px;
    opacity: 1;
  }

  .imc.active {
    flex: 0 0 auto;
    width: 100%;
    opacity: 1;
  }

  .imc-data {
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .imcd-no {
    width: 100%;
    /* border: 1px teal solid; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--mb-3) 2rem;
    padding-bottom: 0;
  }

  .imc.active .imc-data .imcd-no {
    justify-content: center;
  }

  .imcd-no > span {
    font-size: 2rem;
    rotate: unset;
    line-height: 1.2;
    color: var(--gold);
  }

  .imcd {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: 1.2rem;
    padding: 0 var(--mb-2);
    padding-bottom: var(--mb-2);
    transition: all 0.5s ease;
    opacity: 1;
    display: flex;
  }

  .imcd h3 {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--gold);
  }

  .imcd p {
    color: #e5e5e5;
    margin: 0;
    font-weight: 300;
    text-align: center;
  }

  .imcd > span {
    width: 100%;
    background-color: var(--gold);
    height: 1px;
    transition: all 0.4s ease;
    margin-top: var(--mb-1);
  }

  .imc.active .imcd {
    display: flex;
    opacity: 1;
  }

  .imc.active .imcd > span {
    width: 100%;
  }

  /*========== >>>>> LP - PARTNERSHIP SECTION <<<<< ==========*/
  .pt {
    position: relative;
    width: 100%;
    padding: var(--mb-5) var(--mb-1-5);
  }

  .pt-svg {
    position: absolute;
    right: 0;
    bottom: -5rem;
    width: 60%;
    opacity: 0.05;
    /* display: none; */
  }

  .pt-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-5);
  }

  .pt-title {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
  }

  .ptt {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-2);
  }

  .ptt h2 {
    font-size: var(--fs-2-5);
    font-weight: 500;
    text-align: center;
    line-height: 1.1;
    margin-top: var(--mb-0-25);
  }

  .ptt h2 span {
    text-decoration-thickness: 4px;
  }

  .pt-title > p {
    flex: 0 0 auto;
    width: 100%;
    color: #444950;
    font-size: 0.95rem;
    margin: 0;
  }

  .pt-cards {
    width: 100%;
    border-bottom: 1px #e1e0dc solid;
    border-right: 1px #e1e0dc solid;
    border-left: 1px #e1e0dc solid;
    flex-wrap: unset;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }

  .ptc {
    flex: 0 0 auto;
    width: 100%;
    height: 250px;
    justify-content: space-between;
    padding: 2rem;
    transition: all 0.3s ease;
    border-top: 1px #e1e0dc solid;
  }

  .ptc:first-child {
    border: none;
  }

  .ptc:hover {
    background-color: #f7f7f7;
    background-color: var(--tg-5);
    background-color: var(--black);
  }

  .ptc:nth-child(2),
  .ptc:nth-child(5) {
    border-right: unset;
    border-left: unset;
  }

  .ptc:first-child,
  .ptc:nth-child(2),
  .ptc:nth-child(3) {
    border-bottom: unset;
  }

  .ptc-head {
    width: 100%;
    justify-content: space-between;
  }

  .ptc-head #ptc-no {
    font-size: 1rem;
  }

  .ptc-head span:last-child {
    color: #a3a3a3;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
  }

  .ptc:hover .ptc-head span:last-child {
    color: goldenrod;
    transform: translate(6px, -6px);
    font-size: var(--fs-1-5);
  }

  .ptc-data {
    width: 100%;
    row-gap: var(--mb-1-5);
  }

  .ptc-data h3 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
  }

  .ptc:hover .ptc-data h3 {
    color: var(--cannoli-cream);
  }

  /*========== >>>>> LP - LEADERSHIP SECTION <<<<< ==========*/
  .ld {
    position: relative;
    width: 100%;
    padding: var(--mb-5) var(--mb-1-5);
  }

  .ld-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-4);
    padding: var(--mb-4) 0;
  }

  .ld-title {
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1-5);
  }

  .ld-title h2 {
    width: 100%;
    font-size: var(--fs-3);
    line-height: 1.1;
    margin-top: 0.5rem;
  }

  .ld-title h2 span {
    text-decoration-thickness: 4px;
  }

  .ld-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-4);
  }

  .ldc {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-1);
  }

  .ldc:last-child {
    margin: 0;
  }

  .ldc-img {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background-color: goldenrod;
  }

  .ldc-data {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
  }

  .ldc-data h3 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
  }

  .ldc-data span {
    font-size: 0.8rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.05em;
  }

  .ldc-data p {
    width: 80%;
    text-align: center;
    color: #444950;
    font-size: 0.95rem;
    margin-top: var(--mb-0-5);
  }

  /*========== >>>>> LP - BANNER SECTION <<<<< ==========*/
  .ba {
    position: relative;
    width: 100%;
  }

  .ba-container {
    width: 100%;
  }

  .bac {
    width: 100%;
    padding: var(--mb-2);
    justify-content: center;
    align-items: center;
    row-gap: var(--mb-2);
    /* border: 1px dodgerblue solid; */
  }

  .bac-title,
  .bac-body {
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .bac-img {
    width: 120px;
    object-fit: cover;
  }

  .bac-title h2 {
    font-size: var(--fs-3);
    line-height: 1;
  }

  .bac-title h2 span {
    color: var(--gold);
  }

  .bac-body > p {
    width: 90%;
  }

  /*========== >>>>> LP - FAQ SECTION <<<<< ==========*/
  .fq {
    position: relative;
    width: 100%;
    padding: var(--mb-5) var(--mb-1-5);
    /* display: none; */
  }

  .fq-svg {
    position: absolute;
    bottom: -16.5rem;
    left: 4rem;
    width: 410px;
    overflow: hidden;
    z-index: 2;
    opacity: 0.6;
  }

  .fq-container {
    width: 100%;
    /* height: 100%; */
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-4);
  }

  .fq-svg img {
    width: 100%;
    object-fit: cover;
    opacity: 0.1;
  }

  .fq-title {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
    z-index: 3;
  }

  .fqt-head,
  .fqt-data {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }

  .fqt-head h3,
  .fqt-head h4 {
    font-size: var(--fs-3);
    text-align: center;
    line-height: 1.1;
  }

  .fqt-data {
    row-gap: var(--mb-1-5);
  }

  .fqt-data > p {
    width: 85%;
  }

  .fq-cards {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1);
    padding: 0;
  }

  .fqc {
    width: 100%;
    align-items: center;
    cursor: pointer;
  }

  .fqc-q,
  .fqc-a {
    padding: var(--mb-1-5);
    justify-content: space-between;
    align-items: flex-start;
  }

  .fqc-q h4 {
    flex: 0 0 85%;
    font-size: 1rem;

    text-align: left;
    line-height: 1.2;
  }

  .fqc-q #fqcq-icon {
    font-size: 1.2rem;
    transition: all 0.2s ease;
  }

  .fqc.active .fqc-q #fqcq-icon {
    rotate: 45deg;
  }

  .fqc-a {
    justify-content: flex-start;
    row-gap: var(--mb-0-75);
    padding-top: 0;
    display: none;
  }

  .fqc.active .fqc-a {
    display: flex;
  }

  /* --------------- ========== ABOUT PAGE - MAIN ========== ---------------*/
  .ab-main {
    width: 100%;
  }

  /*========== >>>>> ABOUT PAGE - HERO SECTION <<<<< ==========*/
  .aero {
    width: 100%;
  }

  .ae-container {
    width: 100%;
    row-gap: var(--mb-3);
    padding: var(--mb-5) var(--mb-1-5);
    padding-top: 10rem;
  }

  .ae-title {
    position: relative;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-2);
    /* overflow: hidden; */
  }

  .ae-title h1 {
    width: 100%;
    font-size: var(--fs-3-5);
    font-weight: 600;
    text-align: center;
    z-index: 3;
  }

  .aet {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding-top: var(--mb-2);
    border-top: 1px #d4d4d4 solid;
    z-index: 3;
    row-gap: var(--mb-1-5);
  }

  .aet p {
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
    color: var(--txt-grey);
    margin: 0;
    font-size: 1rem;
  }

  #aet-down {
    font-size: var(--fs-1-5);
  }

  .aet-img {
    position: absolute;
    z-index: 2;
    bottom: -5rem;
    width: 100%;
    object-fit: cover;
    opacity: 0.05;
  }

  .ae-media {
    width: 100%;
    height: 350px;
    overflow: hidden;
  }

  .ae-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
    border-top: 1px #e5e5e5 solid;
    border-bottom: 1px #e5e5e5 solid;
  }

  .aec {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
    padding: var(--mb-2);
    border-bottom: 1px #e5e5e5 solid;
  }

  .aec:last-child {
    border-bottom: none;
  }

  .aec:first-child {
    padding-left: var(--mb-2);
    border-right: none;
  }

  .aec span {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
  }

  .aec h3 {
    font-size: var(--fs-2);
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
  }

  .aec p {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
  }

  /*========== >>>>> ABOUT PAGE - STORY SECTION <<<<< ==========*/
  .a-story {
    width: 100%;
    padding: var(--mb-5) var(--mb-1-5);
    padding-top: var(--mb-3);
  }

  .ast-container {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: var(--mb-4);
  }

  .ast-title {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-3);
  }

  .astt-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    padding: var(--mb-0-5);
    border: 1px var(--gold) solid;
  }

  .ast-body {
    flex: 0 0 auto;
    width: 100%;
    height: auto;

    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-2);
  }

  .ast-body h3 {
    font-size: var(--fs-2-5);
    font-weight: 600;
    text-align: center;
    margin-top: -0.5rem;
  }

  .ast-body p {
    width: 90%;
    color: var(--txt-grey);
    text-align: center;
    font-size: 0.95rem;
  }

  .ast-body q {
    width: 90%;
    font-family: var(--cor-font);
    font-size: 1.5rem;
    text-align: center;
  }

  /*========== >>>>> ABOUT PAGE - INITIATIVE SECTION <<<<< ==========*/
  .ai {
    width: 100%;
  }

  .ai-container {
    width: 100%;
    padding: var(--mb-5) var(--mb-1-5);
    row-gap: var(--mb-4);
  }

  .ai-title {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
  }

  .ai-title h2 {
    font-size: var(--fs-2-5);
    font-weight: 500;
    text-align: center;
  }

  .ai-title h2 span {
    color: var(--gold);
  }

  .ai-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }

  .aic {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
    padding: var(--mb-2) 0;
    border-top: 1px #a3a3a3 solid;
    opacity: 0.9;
    transition: all 0.3s ease;

    /* border-bottom: 1px #a3a3a3 solid; */
  }

  .aic p {
    color: var(--gold);
    font-size: 1.3rem;
  }

  .aic h3 {
    flex: 0 0 auto;
    width: 100%;
    font-size: var(--fs-1-5);
    line-height: 1.2;
  }

  .aic span {
    color: var(--gold);
    font-size: var(--fs-1-5);
  }

  /*========== >>>>> ABOUT PAGE - WHY SECTION <<<<< ==========*/
  .aw {
    width: 100%;
    padding: var(--mb-5) var(--mb-1-5);
  }

  .aw-container {
    width: 100%;
    row-gap: var(--mb-4);
  }

  .aw-title {
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-2);
  }

  .aw-title h2 {
    font-size: var(--fs-2-5);
    line-height: 1.1;
  }

  .aw-cards {
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .awc {
    width: 100%;
    overflow: hidden;
    background-color: var(--white);
  }

  .awc.img {
    height: 350px;
  }

  .awc.data {
    width: 90%;
    padding: var(--mb-2);
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-2);
    border: 1px #e5e5e5 solid;
    border-bottom: none;
  }

  .awc.data {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: -4rem;
  }

  .awc.data p {
    font-weight: 400;
    font-size: 0.95rem;
    text-align: center;
  }

  .awc.data p span {
    color: var(--gold);
  }

  /* --------------- ========== IMPACT PAGE - MAIN ========== ---------------*/
  .im-main {
    width: 100%;
    /* border: 3px dodgerblue solid; */
  }

  /*========== >>>>> IMPACT PAGE - HERO SECTION <<<<< ==========*/
  .iero {
    width: 100%;
    /* height: 100dvh; */
  }

  .ie-container {
    width: 100%;
    /* height: 100%; */
    padding: var(--mb-4) var(--mb-1-5);
    padding-top: 8.5rem;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: var(--mb-4);
  }

  .ie-title {
    flex: 0 0 auto;
    width: 100%;
    row-gap: var(--mb-2);
    align-items: center;
    justify-content: flex-start;
  }

  .ie-title h1 {
    font-size: var(--fs-3-5);
    font-weight: 600;
    text-align: center;
  }

  .ie-title p {
    text-align: center;
  }

  .ie-img {
    flex: 0 0 auto;
    width: 100%;
    height: 350px;
  }

  .ie-img img {
    object-position: 50% 90%;
  }

  .ie-stats {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    border: 1px #e5e5e5 solid;
    border-bottom: none;
    padding: 0 var(--mb-2);
  }

  .ies {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    padding: var(--mb-2) 0;
    row-gap: var(--mb-1);
    justify-content: flex-start;
    align-items: center;
  }

  .ies {
    border-right: none;
    border-bottom: 1px #e5e5e5 solid;
  }

  .ies:last-child {
    border: none;
  }

  .ies h3 {
    font-size: var(--fs-2-5);
    font-weight: 400;
    text-align: center;
  }

  .ies p {
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
  }

  /*========== >>>>> IMPACT PAGE - BENEFITS SECTION <<<<< ==========*/
  .ib {
    width: 100%;
    padding: var(--mb-5) var(--mb-1-5);
  }

  .ib-container {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-4);
  }

  .ib-title {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
    padding-top: var(--mb-3);
    border-top: 1px #e5e5e5 solid;
  }

  .ib-title h2 {
    flex: 0 0 auto;
    width: 100%;
    font-size: var(--fs-2-5);
    font-weight: 600;
    text-align: center;
    margin-top: -0.5rem;
  }

  .ib-cards {
    width: 100%;
    border-top: 1px #e5e5e5 solid;
    border-left: 1px #e5e5e5 solid;
    border-right: 1px #e5e5e5 solid;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
  }

  .ibc {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    padding: var(--mb-2);
    row-gap: var(--mb-1-5);
    justify-content: flex-start;
    align-items: center;
  }

  .ibc:hover {
    background-color: oklch(96.4% 0.014 95);
  }

  .ibc:first-child,
  .ibc:nth-child(3) {
    border-right: none;
  }

  .ibc {
    border-bottom: 1px #e5e5e5 solid;
  }

  .ibc span {
    font-size: var(--fs-1);
    font-weight: 500;
    text-align: left;
    color: var(--gold);
    line-height: 1.1;
  }

  .ibc h3 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
  }

  .ibc p {
    width: 100%;
    color: var(--txt-grey);
    text-align: center;
  }

  /*========== >>>>> IMPACT PAGE - SOCIAL SECTION <<<<< ==========*/
  .is {
    width: 100%;
    padding: var(--mb-5) var(--mb-1-5);
  }

  .is-container {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: var(--mb-4);
  }

  .is-title {
    flex: 0 0 auto;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .ist {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .ist h2 {
    font-size: var(--fs-2-5);
    font-weight: 600;
    text-align: center;
  }

  .ist p {
    width: 70%;
    color: var(--txt-grey);
    text-align: center;
  }

  .is-img {
    flex: 0 0 auto;
    width: 100%;
    height: 350px;
    padding: var(--mb-0-5);
    border: 1px var(--gold) solid;
  }

  .is-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .is-list {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }

  .isl {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    column-gap: unset;
    row-gap: var(--mb-1-5);
    padding: var(--mb-2) 0;
    border-top: 1px #d4d4d4 solid;
  }

  .isl:last-child {
    border-bottom: 1px #d4d4d4 solid;
  }

  .isl span {
    font-size: 1.1rem;
  }

  .isl-data {
    flex: 0 0 auto;
    width: 100%;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-0-75);
  }

  .isl-data h4 {
    font-size: var(--fs-1-5);
    font-weight: 500;
    text-align: center;
  }

  .isl-data p {
    width: 90%;
    color: var(--txt-grey);
    text-align: center;
  }

  /*========== >>>>> IMPACT PAGE - NATIONAL SECTION <<<<< ==========*/
  .in {
    width: 100%;
  }

  .in-container {
    width: 100%;
    padding: var(--mb-5) var(--mb-1-5);
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: var(--mb-4);
  }

  .in-title {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-2);
  }

  .in-title .sec-span p {
    color: var(--white);
  }

  .in-title h2 {
    font-size: var(--fs-2-5);
    font-weight: 600;
    text-align: center;
  }

  .in-title p {
    color: #e5e5e5;
    text-align: center;
    font-size: 0.95rem;
  }

  .in-cards {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    border: 1px #a3a3a3 solid;
    border-bottom: none;
  }

  .inc {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    padding: var(--mb-2);
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .inc {
    border-bottom: 1px #a3a3a3 solid;
  }

  .inc:first-child,
  .inc:nth-child(3) {
    border-right: none;
  }

  .inc h4 {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
  }

  .inc p {
    color: #e5e5e5;
    font-size: 0.9rem;
    text-align: center;
  }

  /*========== >>>>> IMPACT PAGE - FUTURE SECTION <<<<< ==========*/
  .if {
    width: 100%;
    padding: var(--mb-5) var(--mb-1-5);
    padding-bottom: var(--mb-4);
  }

  .if-container {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    /* row-gap: var(--mb-4); */
  }

  .if-title {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
    padding: var(--mb-3) 0;
  }

  .if-title h2 {
    font-size: var(--fs-2-5);
    font-weight: 600;
    text-align: center;
  }

  .if-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    border-top: 1px #e5e5e5 solid;
    padding: var(--mb-2) 0;
    row-gap: var(--mb-2);
  }

  .ifc {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
    padding: var(--mb-2);
  }

  .ifc {
    border-right: 1px #e5e5e5 solid;
    border-left: 1px #e5e5e5 solid;
  }

  .ifc span {
    color: var(--gold);
    font-weight: 400;
    text-align: center;
  }

  .ifc h3 {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
  }

  .ifc p {
    color: var(--txt-grey);
    text-align: center;
  }

  /*========== >>>>> IMPACT PAGE - GALLERY SECTION <<<<< ==========*/
  .ig {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    padding-bottom: var(--mb-6);
  }

  .ig-container {
    width: 100%;
  }

  .ig-title {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-2);
    padding-top: var(--mb-4);
    border-top: 1px #e5e5e5 solid;
  }

  .ig-title h2 {
    width: 90%;
    font-size: var(--fs-2-5);
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
  }

  .ig-title h2 span {
    text-decoration: underline;
    text-decoration-color: var(--gold);
  }

  .ig-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: 1.5rem;
    flex-wrap: unset;
  }

  .igc {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    border: 1px #e5e5e5 solid;
    overflow: hidden;
  }

  .igc:first-child,
  .igc:nth-child(4),
  .igc:nth-child(5) {
    flex: 0 0 auto;
    width: 100%;
  }

  .igc:nth-child(2),
  .igc:nth-child(3),
  .igc:nth-child(6) {
    flex: 0 0 auto;
    width: 100%;
  }

  /* --------------- ========== PARTNERSHIP PAGE - MAIN ========== ---------------*/
  .pt-main {
    width: 100%;
  }

  /*========== >>>>> PARTNERSHIP PAGE - HERO SECTION <<<<< ==========*/
  .pero {
    width: 100%;
    height: 100dvh;
    padding: var(--mb-0-5);
  }

  .pe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pe-title {
    position: absolute;
    inset: 0;
    justify-content: flex-end;
    align-items: center;
    row-gap: var(--mb-2);
    padding: var(--mb-4) var(--mb-1-5);
    padding-bottom: var(--mb-6);
    padding-top: 10rem;
  }

  .pe-title h1 {
    width: 100%;
    font-size: var(--fs-3-5);
  }

  .pe-title h1 span {
    text-decoration: underline;
    text-decoration-color: var(--gold);
  }

  .pe-title > p {
    width: 105%;
    color: #e5e5e5;
    text-align: center;
  }

  /*========== >>>>> PARTNERSHIP PAGE - WHY SECTION <<<<< ==========*/
  .pw {
    width: 100%;
    height: auto;
    padding: var(--mb-5) var(--mb-1-5);
  }

  .pw-container {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-3);
  }

  .pw-title {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-2);
  }

  .pwt {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .pwt h2 {
    font-size: var(--fs-2-5);
    font-weight: 600;
    text-align: center;
  }

  .pw-title p {
    color: var(--black);
    text-align: center;
  }

  .pw-img {
    flex: 0 0 auto;
    width: 100%;
    height: 400px;
    border: 1px var(--gold) solid;
  }

  .pw-img img {
    object-position: 50% 70%;
  }

  .pw-data {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1-5);
  }

  .pw-data p {
    color: var(--black);
    text-align: center;
  }

  /*========== >>>>> PARTNERSHIP PAGE - WHO SECTION <<<<< ==========*/
  .pc {
    width: 100%;
    padding: var(--mb-0-5);
  }

  .pc-container {
    width: 100%;
    justify-content: flex-start;
    padding: var(--mb-5-5) var(--mb-1-5);
  }

  .pc-title {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
    padding: var(--mb-2) 0;
  }

  .pc-title h2 {
    flex: 0 0 auto;
    width: 100%;
    font-size: var(--fs-2-5);
    font-weight: 500;
    text-align: center;
  }

  .pc-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: unset;
  }

  .pcc {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    padding: var(--mb-2);
  }

  .pcc span {
    font-size: 1rem;
    text-align: center;
  }

  .pcc h3 {
    font-size: var(--fs-1-5);
    font-weight: 500;
    text-align: center;
  }

  .pcc p {
    font-size: var(--txt-grey);
    text-align: center;
    font-size: 0.9rem;
  }

  /*========== >>>>> PARTNERSHIP PAGE - OPPORTUNITIES ECTION <<<<< ==========*/
  .po {
    width: 100%;
    padding: var(--mb-5) var(--mb-1-5);
  }

  .po-container {
    width: 100%;
  }

  .po-title {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-3);
    padding-bottom: var(--mb-2);
    border-bottom: 1px #e5e5e5 solid;
  }

  .pot {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: 1.5rem;
  }

  .pot h2 {
    font-size: var(--fs-2-5);
    font-weight: 500;
    text-align: center;
  }

  .pot p {
    width: 80%;
    color: var(--txt-grey);
    text-align: center;
  }

  .po-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
  }

  .poc {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    padding: var(--mb-2);
    row-gap: var(--mb-2);
    border-top: 1px #e5e5e5 solid;
  }

  .poc:first-child {
    padding-left: 0;
    border-top: none;
  }

  .poc:nth-child(2) {
    border-right: none;
    border-left: none;
  }

  .poc-head {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: 1.25rem;
  }

  .poc-head span {
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.2em;
  }

  .poc-head h3 {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
  }

  .poc-head p {
    font-size: 0.9rem;
    text-align: center;
  }

  .poc-list {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: 0.25rem;
  }

  .pocl {
    width: 100%;
    justify-content: center;
    column-gap: var(--mb-0-5);
  }

  .pocl p {
    font-size: 0.9rem;
    color: var(--black);
    line-height: 1.5;
  }

  .pocl span {
    color: var(--gold-deep);
    font-size: 1.2rem;
  }

  /*========== >>>>> PARTNERSHIP PAGE - BENEFITS ECTION <<<<< ==========*/
  .pb {
    width: 100%;
  }

  .pb-container {
    width: 100%;
    padding: var(--mb-5) var(--mb-1-5);
    row-gap: var(--mb-4);
  }

  .pb-title {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .pb-title h2 {
    flex: 0 0 auto;
    font-size: var(--fs-2-5);
  }

  .pb-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: unset;
    flex-direction: column;
  }

  .pbc {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    padding: var(--mb-2);
    row-gap: var(--mb-1-5);
    border-top: 1px #747474 solid;
  }

  .pbc:nth-child(2),
  .pbc:nth-child(5) {
    border-right: none;
    border-left: none;
  }

  .pbc h4 {
    font-size: 1.45rem;
    font-weight: 500;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: var(--gold);
  }

  .pbc p {
    text-align: center;
  }

  .pbc:nth-child(4),
  .pbc:nth-child(5),
  .pbc:nth-child(6) {
    border-top: 1px #747474 solid;
  }

  /*========== >>>>> PARTNERSHIP PAGE - REACH SECTION <<<<< ==========*/
  .pr {
    width: 100%;
    padding: var(--mb-5) var(--mb-1-5);
  }

  .pr-container {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-4);
    padding: var(--mb-3) 0;
    border-top: 1px #e5e5e5 solid;
    border-bottom: 1px #e5e5e5 solid;
  }

  .pr-title {
    flex: 0 0 auto;
    width: 100%;
    row-gap: var(--mb-1-5);
    align-items: center;
  }

  .pr-title h2 {
    font-size: var(--fs-3);
    font-weight: 600;
    text-align: center;
  }

  .pr-title h2 span {
    text-decoration: underline;
    text-decoration-color: var(--gold);
  }

  .pr-title > p {
    width: 90%;
    text-align: center;
  }

  .pr-img {
    flex: 0 0 auto;
    width: 100%;
    height: 300px;
    overflow: hidden;
  }

  /* --------------- ========== CONTACT PAGE - MAIN ========== ---------------*/
  .co-main {
    width: 100%;
    background: #f7f7f7;
    background-color: var(--white);
    z-index: 4;
    /* border: 3px dodgerblue solid; */
  }

  /*========== >>>>> CONTACT - HERO SECTION <<<<< ==========*/
  .cero {
    width: 100%;
    height: auto;
  }

  .ce-container {
    width: 100%;
    height: auto;
    padding: var(--mb-1);
    padding-top: var(--mb-5);
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }

  .ce-title {
    width: 100%;
    flex: 0 0 auto;
    padding: var(--mb-2-5) 0;
    border-top: none;
    border-bottom: 1px #d4d4d4 solid;
  }

  .ce-title h1 {
    font-size: 22vw;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .ce-lists {
    width: 100%;
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
    padding: var(--mb-2-5) 0;
    border-bottom: 1px #d4d4d4 solid;
  }

  .cel {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }

  .cel h4 {
    font-size: 1rem;
    text-align: center;
    opacity: 0.9;
    margin-bottom: var(--mb-0-75);
  }

  .celi {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .celi a {
    font-size: 0.9rem;
    color: var(--black);
    line-height: 1.2;
    text-align: center;
  }

  .cel p {
    width: 95%;
    text-align: center;
    font-size: 0.95rem;
  }

  .ce-foot {
    width: 100%;
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1);
    padding-top: var(--mb-2);
  }

  .cef {
    flex: 0 0 33.3%;
    justify-content: flex-start;
  }

  .cef:first-child {
    order: 3;
  }

  .cef:nth-child(2) {
    order: 2;
  }

  .cef:last-child {
    order: 1;
  }

  .cef:last-child {
    justify-content: space-between;
    column-gap: var(--mb-1);
  }

  .cef p {
    font-size: 0.9rem;
    color: var(--black);
  }

  .cef:last-child a {
    font-size: 0.9rem;
    color: var(--black);
    line-height: 1.2;
    text-align: center;
  }

  .cef:last-child a:hover {
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 1.5px;
  }
}

/* Media query for iPads-Tablets */
@media screen and (min-width: 700px) and (max-width: 900px) {
}

/* Media query for screens with a minimum width of 1440px and a maximum width of 1600px */
@media screen and (min-width: 1440px) and (max-width: 1600px) {
  /* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
}

/* Media query for screens with a minimum width of 1650px */
@media screen and (min-width: 1650px) {
}
