@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueUltraLight.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueRoman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Big Caslon";
  src: url("../fonts/Big Caslon/Big Caslon Medium/Big Caslon Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  background-color: #0f1112;
  color: #ffffff;
  font-family: "Helvetica Neue";
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

.hero-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3% 5%;
  padding-top: 13%;
  text-align: center;
  position: relative;
}
.hero-container .quote-section {
  margin-bottom: 5rem;
}
.hero-container .quote-section .main-quote {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .hero-container .quote-section .main-quote {
    align-items: center;
    justify-items: center;
  }
}
.hero-container .quote-section .main-quote span {
  font-family: "Helvetica Neue" !important;
  font-style: normal;
  font-weight: 100;
  font-size: clamp(1.2rem, 8.5vw, 87.1675px);
  line-height: clamp(2.9rem, 7.5vw, 73px);
  text-align: center;
  letter-spacing: 0.04em;
  color: #F5F5F2;
}
@media (max-width: 500px) {
  .hero-container .quote-section .main-quote .line-1 {
    margin-right: 5rem;
  }
}
.hero-container .quote-section .main-quote .line-2 {
  padding-left: 28rem;
}
@media (max-width: 1180px) {
  .hero-container .quote-section .main-quote .line-2 {
    padding-left: 10rem !important;
  }
}
@media (max-width: 600px) {
  .hero-container .quote-section .main-quote .line-2 {
    padding-left: 5rem !important;
  }
}
.hero-container .quote-section .main-quote .line-3 {
  margin-left: -6rem;
}
.hero-container .quote-section .main-quote .line-4 {
  padding-left: 13rem;
}
@media (max-width: 992px) {
  .hero-container .quote-section .main-quote .line-2,
  .hero-container .quote-section .main-quote .line-4 {
    padding-left: 4rem;
  }
}
@media (max-width: 768px) {
  .hero-container .quote-section .main-quote .line-2,
  .hero-container .quote-section .main-quote .line-4 {
    padding-left: 1.5rem;
  }
}
@media (max-width: 480px) {
  .hero-container .quote-section .main-quote .line-2,
  .hero-container .quote-section .main-quote .line-4 {
    padding-left: 0.5rem;
  }
  .hero-container .quote-section .main-quote .line-3 {
    margin-left: -5rem;
  }
}
.hero-container .branding {
  margin-bottom: 3.5rem;
}
.hero-container .branding .logo img {
  max-width: 450px;
  height: auto;
}
@media (max-width: 480px) {
  .hero-container .branding .logo img {
    max-width: 200px;
  }
}
.hero-container .branding .sub-brand {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  font-size: clamp(1.3rem, 4vw, 33.4027px);
  line-height: clamp(1.8rem, 5vw, 45px);
  color: #B89B5E;
}
.hero-container .footer-info {
  width: 100%;
  font-family: "Helvetica Neue";
  font-weight: 200;
  font-size: clamp(1rem, 2.5vw, 22px);
  text-align: center;
  color: #B89B5E;
  padding: 0 1rem;
  opacity: 0.8;
}
.hero-container .footer-info .scroll-indicator {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero-container .footer-info {
    margin-top: auto;
    padding-bottom: 1rem;
  }
  .hero-container .footer-info .scroll-indicator {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 11rem 5% 3.5rem;
    justify-content: flex-start;
  }
  .hero-container .quote-section {
    margin-bottom: 3rem;
  }
}
@media (max-width: 480px) {
  .hero-container {
    padding: 11rem 4% 3rem;
  }
  .hero-container .quote-section {
    margin-bottom: 2rem;
  }
  .hero-container .branding {
    margin-bottom: 2rem;
  }
}
.info-section {
  background-color: #F6F3EE;
  color: #333333;
  width: 100%;
  display: flex;
  padding: 8% 9%;
}
@media (max-width: 480px) {
  .info-section {
    min-height: unset;
  }
}
.info-section .info-content {
  max-width: 940px;
  width: 100%;
}
.info-section .info-content .intro-text {
  margin-bottom: 6rem;
}
.info-section .info-content .intro-text p {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  font-size: 26.5945px;
  line-height: 36px;
  color: #000000;
}
.info-section .info-content .details-table .row {
  padding: 0px 3rem 10px;
  border-bottom: 1px solid #CACACA;
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  font-size: 21.331px;
  line-height: 66px;
  color: #000000;
}
@media (max-width: 968px) {
  .info-section {
    padding: 60px 24px;
  }
  .info-section .info-content .intro-text {
    margin-bottom: 1rem;
  }
  .info-section .info-content .intro-text p {
    font-size: 1.05rem;
    line-height: 1.75;
  }
  .info-section .info-content .details-table .row {
    font-size: 0.95rem;
    line-height: 2.5;
    padding: 4px 0.5rem 4px;
  }
}
@media (max-width: 480px) {
  .info-section {
    padding: 50px 20px;
  }
  .info-section .info-content .intro-text p {
    font-size: 1rem;
  }
  .info-section .info-content .details-table .row {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 14px 0;
  }
}

.context-section {
  display: flex;
  background-color: #EFE9DE;
  color: #333333;
  width: 100%;
}
.context-section .context-left {
  flex: 1.2;
  padding: 8% 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.context-section .context-left .small-label {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  font-size: 21.1747px;
  line-height: 31px;
  color: #383E46;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.context-section .context-left .context-title {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  font-size: 31.59px;
  line-height: 36px;
  color: #000000;
  margin-bottom: 1.5rem;
}
.context-section .context-left .context-tagline {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  font-size: 16.59px;
  line-height: 36px;
  color: #000000;
  margin-bottom: 5rem;
}
@media (max-width: 600px) {
  .context-section .context-left .context-tagline {
    line-height: 24px;
    margin-bottom: 2rem;
  }
}
.context-section .context-left .context-body {
  max-width: 450px;
  margin-bottom: 1rem;
}
.context-section .context-left .context-body p {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  font-size: 16.59px;
  line-height: 26px;
  color: #000000;
}
.context-section .context-left .context-table .table-row {
  padding: 0 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-style: normal;
  font-weight: 200;
  font-size: 19.33px;
  line-height: 60px;
  color: #000000;
}
.context-section .context-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .context-section .context-right {
    background-color: #0f1112;
  }
}
.context-section .context-right .side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.context-section .context-right .floating-arrow {
  position: absolute;
  bottom: 50px;
  right: 50px;
}
@media (max-width: 480px) {
  .context-section .context-right .floating-arrow {
    bottom: 40px;
    right: 40px;
  }
}
@media (max-width: 992px) {
  .context-section {
    flex-direction: column;
    min-height: unset;
  }
  .context-section .context-left {
    padding: 60px 24px 0;
  }
  .context-section .context-left .context-title {
    font-size: 1.6rem;
    line-height: 1.35;
  }
  .context-section .context-left .context-body {
    max-width: 100%;
  }
  .context-section .context-left .context-table .table-row {
    font-size: 1rem;
    line-height: 2.5;
  }
}
@media (max-width: 576px) {
  .context-section .context-left {
    padding: 30px 20px 30px;
    min-height: unset;
  }
  .context-section .context-left .small-label {
    font-size: 1rem;
  }
  .context-section .context-left .context-title {
    font-size: 1.35rem;
  }
  .context-section .context-left .context-table .table-row {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 14px 0;
  }
}

.association-section {
  background-color: #0f1112;
  color: #ffffff;
  padding: 5% 10%;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.association-section .container {
  max-width: 1000px;
  margin: 0 auto;
}
.association-section .container .gold-label {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  font-size: 14.14px;
  line-height: 28px;
  color: #B89B5E;
}
.association-section .container .main-title {
  font-style: normal;
  font-weight: 200;
  font-size: 41.443px;
  line-height: 50px;
  text-align: center;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}
.association-section .container .subtitle {
  font-style: normal;
  font-weight: 200;
  font-size: 16.5363px;
  line-height: 32px;
  text-align: center;
  color: #BBC8D8;
  margin-bottom: 2rem;
}
.association-section .container .partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 2rem;
}
.association-section .container .partners-logos .partner-logo {
  height: 80px;
  width: auto;
  opacity: 0.9;
}
.association-section .container .initiative-text {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  font-size: 16.59px;
  line-height: 27px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #B89B5E;
  margin-bottom: 6rem;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  opacity: 0.8;
}
.association-section .container .roles-section .roles-title {
  font-style: normal;
  font-weight: 400;
  font-size: 23.0056px;
  line-height: 39px;
  text-align: center;
  color: #B89B5E;
  margin-bottom: 1rem;
}
.association-section .container .roles-section .role-item {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  font-size: 23.3682px;
  line-height: 65px;
  text-align: center;
  color: #BBC8D8;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.association-section .container .roles-section .governance {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  font-size: 23.3682px;
  line-height: 68px;
  text-align: center;
  color: #BBC8D8;
  margin: 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.association-section .container .roles-section .phases {
  padding-bottom: 1rem;
  padding-top: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .association-section .container .roles-section .phases {
    margin-bottom: 1rem;
  }
}
.association-section .container .roles-section .phases .phase-label {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  font-size: 21.8134px;
  text-align: center;
  color: #BBC8D8;
  margin-bottom: 2px;
}
@media (max-width: 768px) {
  .association-section .container .roles-section .phases .phase-label {
    font-size: 18px;
    margin-bottom: 9px;
  }
}
.association-section .container .roles-section .phases .phase-steps {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  font-size: 20.8134px;
  line-height: 22px;
  text-align: center;
  color: #BBC8D8;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .association-section .container .roles-section .phases .phase-steps {
    font-size: 17px;
  }
}
.association-section .container .roles-section .final-statement {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  font-size: 23.3682px;
  line-height: 68px;
  text-align: center;
  color: #BBC8D8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .association-section {
    padding: 80px 24px;
    min-height: unset;
  }
  .association-section .container .main-title {
    font-size: 1.7rem;
    line-height: 1.35;
    margin-bottom: 1rem;
  }
  .association-section .container .subtitle {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
  }
  .association-section .container .partners-logos {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 2rem;
  }
  .association-section .container .partners-logos .partner-logo {
    height: 60px;
  }
  .association-section .container .initiative-text {
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0 auto 1.5rem auto;
  }
  .association-section .container .roles-section .role-item,
  .association-section .container .roles-section .governance {
    font-size: 1rem;
    line-height: 2.4;
  }
  .association-section .container .roles-section .phase-label,
  .association-section .container .roles-section .phase-steps {
    font-size: 1rem;
    line-height: 1.6;
  }
  .association-section .container .roles-section .final-statement {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .association-section {
    padding: 10px 20px 20px;
  }
  .association-section .container .main-title {
    font-size: 1.35rem;
  }
  .association-section .container .roles-section .role-item,
  .association-section .container .roles-section .governance {
    font-size: 0.95rem;
    line-height: 2;
  }
  .association-section .container .roles-section .final-statement {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}

.schools-section {
  background-color: #f6f3f0;
  color: #333333;
  padding: 6% 10%;
  width: 100%;
  display: flex;
  justify-content: center;
}
.schools-section .container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.schools-section .container .header-group {
  text-align: right;
  align-self: flex-end;
  max-width: 900px;
  margin-bottom: 45px;
}
.schools-section .container .header-group .light-label {
  font-style: normal;
  font-weight: 200;
  font-size: 26.07px;
  line-height: 38px;
  text-align: right;
  color: #383E46;
  margin-bottom: 0.5rem;
}
.schools-section .container .header-group .main-heading {
  font-style: normal;
  font-weight: 300;
  font-size: 38.8931px;
  line-height: 44px;
  /* or 114% */
  text-align: right;
  color: #000000;
  margin-bottom: 1.5rem;
}
.schools-section .container .header-group .short-desc {
  font-style: normal;
  font-weight: 200;
  font-size: 20.4253px;
  line-height: 28px;
  text-align: right;
  color: #000000;
  max-width: 650px;
  margin-left: auto;
}
.schools-section .container .content-group {
  text-align: left;
  align-self: flex-start;
  width: 100%;
  max-width: 600px;
}
.schools-section .container .content-group .long-desc {
  font-style: normal;
  font-weight: 200;
  font-size: 16.59px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 2.5rem;
}
.schools-section .container .content-group .receive-box .receive-title {
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  line-height: 38px;
  color: #383E46;
  margin-bottom: 0;
}
.schools-section .container .content-group .receive-box .receive-list .list-row {
  padding: 0 0;
  border-bottom: 1px solid #D7D2CA;
  font-style: normal;
  font-weight: 200;
  font-size: 19.33px;
  line-height: 60px;
  color: #000000;
}
@media (max-width: 992px) {
  .schools-section {
    padding: 80px 24px;
  }
  .schools-section .container .header-group {
    text-align: left;
    align-self: flex-start;
    max-width: 100%;
    margin-bottom: 60px;
  }
  .schools-section .container .header-group .light-label {
    font-size: 1.1rem;
  }
  .schools-section .container .header-group .main-heading {
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .schools-section .container .header-group .short-desc {
    margin-left: 0;
    font-size: 1rem;
  }
  .schools-section .container .content-group {
    max-width: 100%;
  }
  .schools-section .container .content-group .receive-box .receive-list .list-row {
    font-size: 1rem;
    line-height: 2.5;
  }
}
@media (max-width: 576px) {
  .schools-section {
    padding: 60px 20px;
  }
  .schools-section .container .header-group {
    margin-bottom: 40px;
  }
  .schools-section .container .header-group .main-heading {
    font-size: 1.45rem;
  }
  .schools-section .container .content-group .long-desc {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .schools-section .container .content-group .receive-box .receive-title {
    font-size: 1.05rem;
  }
  .schools-section .container .content-group .receive-box .receive-list .list-row {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 14px 0;
  }
}

.students-families-section {
  background-color: #0f1112;
  color: #ffffff;
  padding: 8% 10%;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.students-families-section .container {
  max-width: 1000px;
  margin: 0 auto;
}
.students-families-section .container .gold-label {
  font-style: normal;
  font-weight: 300;
  font-size: 16.9629px;
  line-height: 31px;
  text-align: center;
  color: #B89B5E;
  opacity: 0.8;
}
.students-families-section .container .main-title {
  font-style: normal;
  font-weight: 200;
  font-size: 46.4328px;
  line-height: 56px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.students-families-section .container .description {
  font-style: normal;
  font-weight: 200;
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.students-families-section .container .gold-description {
  font-style: normal;
  font-weight: 200;
  font-size: 18.5875px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #B89B5E;
  max-width: 830px;
  margin: 0 auto 82px auto;
  opacity: 0.8;
}
.students-families-section .container .comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}
.students-families-section .container .comparison-grid .col .col-title {
  font-style: normal;
  font-weight: 300;
  font-size: 31.7116px;
  text-align: center;
  color: #B89B5E;
  margin-bottom: 25px;
}
.students-families-section .container .comparison-grid .col .list-items .item {
  font-style: normal;
  font-weight: 200;
  font-size: 23px;
  line-height: 74px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 0;
  opacity: 0.8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .students-families-section {
    padding: 80px 24px;
  }
  .students-families-section .container .main-title {
    font-size: 1.7rem;
    line-height: 1.35;
  }
  .students-families-section .container .description {
    font-size: 1rem;
    line-height: 1.7;
  }
  .students-families-section .container .gold-description {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 3rem;
  }
  .students-families-section .container .comparison-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .students-families-section .container .comparison-grid .col .col-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
  .students-families-section .container .comparison-grid .col .list-items .item {
    font-size: 1.05rem;
    line-height: 2.3;
  }
}
@media (max-width: 480px) {
  .students-families-section {
    padding: 60px 20px;
    min-height: unset;
  }
  .students-families-section .container .main-title {
    font-size: 1.45rem;
  }
  .students-families-section .container .comparison-grid {
    gap: 40px;
  }
  .students-families-section .container .comparison-grid .col .col-title {
    font-size: 1.2rem;
  }
  .students-families-section .container .comparison-grid .col .list-items .item {
    font-size: 1rem;
    line-height: 2;
  }
}

.scale-reach-section {
  background-color: #f6f3f0;
  color: #333333;
  padding: 7% 10%;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scale-reach-section .container {
  max-width: 1100px;
  margin: 0 auto;
}
.scale-reach-section .container .light-label {
  font-style: normal;
  font-weight: 200;
  font-size: 25.797px;
  text-align: center;
  color: #383E46;
  margin-bottom: 40px;
}
.scale-reach-section .container .stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 50px;
}
.scale-reach-section .container .stats-grid .stat-item {
  display: flex;
  flex-direction: column;
}
.scale-reach-section .container .stats-grid .stat-item .stat-number {
  font-style: normal;
  font-weight: 200;
  font-size: 38.7861px;
  line-height: 44px;
  color: #AA8840;
}
.scale-reach-section .container .stats-grid .stat-item .stat-label {
  font-style: normal;
  font-weight: 200;
  font-size: 20.3691px;
  line-height: 28px;
  text-align: center;
  color: #000000;
  margin-top: -5px;
}
.scale-reach-section .container .heading-block {
  margin-bottom: 60px;
}
.scale-reach-section .container .heading-block .main-title {
  font-weight: 200;
  font-size: 38.8931px;
  line-height: 44px;
  text-align: center;
  color: #000000;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}
.scale-reach-section .container .heading-block .main-title-sub {
  font-weight: 200;
  font-size: 28.8931px;
  line-height: 34px;
  text-align: center;
  color: #000000;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}
.scale-reach-section .container .heading-block .sub-text {
  font-style: normal;
  font-weight: 200;
  font-size: 16.59px;
  line-height: 26px;
  text-align: left;
  color: #000000;
  max-width: 800px;
  margin: 0 auto;
}
.scale-reach-section .container .numbers-table .table-title {
  font-style: normal;
  font-weight: 500;
  font-size: 21px;
  line-height: 38px;
  text-align: center;
  color: #000000;
  margin-bottom: 15px;
}
.scale-reach-section .container .numbers-table .table-body {
  max-width: 700px;
  margin: 0 auto;
}
.scale-reach-section .container .numbers-table .table-body .row {
  padding: 0 0;
  border-bottom: 1px solid #D7D2CA;
  font-style: normal;
  font-weight: 200;
  font-size: 19.33px;
  line-height: 60px;
  text-align: center;
  color: #000000;
  opacity: 0.8;
}
@media (max-width: 992px) {
  .scale-reach-section {
    padding: 80px 24px;
  }
  .scale-reach-section .container .stats-grid {
    flex-wrap: wrap;
    gap: 40px;
  }
  .scale-reach-section .container .stats-grid .stat-item {
    width: calc(50% - 20px);
  }
  .scale-reach-section .container .stats-grid .stat-item .stat-number {
    font-size: 2rem;
  }
  .scale-reach-section .container .stats-grid .stat-item .stat-label {
    font-size: 1rem;
  }
  .scale-reach-section .container .heading-block {
    margin-bottom: 50px;
  }
  .scale-reach-section .container .heading-block .main-title {
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .scale-reach-section .container .numbers-table .table-body .row {
    font-size: 1rem;
    line-height: 2.5;
  }
}
@media (max-width: 576px) {
  .scale-reach-section {
    padding: 35px 24px;
    min-height: unset;
  }
  .scale-reach-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px !important;
  }
  .scale-reach-section .stat-item {
    width: 100%;
    text-align: center;
  }
}

.transparency-section {
  display: flex;
  background-color: #FFFFFF;
  color: #333333;
  width: 100%;
}
.transparency-section .transparency-left {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.transparency-section .transparency-left .side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.transparency-section .transparency-left .floating-arrow-on-img {
  position: absolute;
  bottom: 60px;
  right: 60px;
}
@media (max-width: 480px) {
  .transparency-section .transparency-left .floating-arrow-on-img {
    bottom: 40px;
    right: 40px;
  }
}
.transparency-section .transparency-right {
  flex: 1.2;
  padding: 6% 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.transparency-section .transparency-right .light-label {
  font-style: normal;
  font-weight: 200;
  font-size: 21.1747px;
  color: #383E46;
  padding-bottom: 5px;
}
.transparency-section .transparency-right .main-title {
  font-style: normal;
  font-weight: 200;
  font-size: 31.59px;
  line-height: 36px;
  color: #000000;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  opacity: 0.8;
}
.transparency-section .transparency-right .sub-headline {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  font-size: 16.59px;
  line-height: 20px;
  color: #000000;
  margin-bottom: 22px;
  opacity: 0.8;
}
.transparency-section .transparency-right .body-copy {
  max-width: 500px;
  margin-bottom: 4rem;
}
.transparency-section .transparency-right .body-copy p {
  font-style: normal;
  font-weight: 200;
  font-size: 16.59px;
  line-height: 26px;
  color: #000000;
  opacity: 0.8;
}
@media (max-width: 7860px) {
  .transparency-section .transparency-right .body-copy {
    margin-bottom: 2rem;
  }
}
.transparency-section .transparency-right .transparency-list .list-heading {
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  line-height: 31px;
  color: #383E46;
  margin-bottom: 0;
}
.transparency-section .transparency-right .transparency-list .table-rows .row {
  padding: 0 0;
  border-bottom: 1px solid #D7D2CA;
  font-style: normal;
  font-weight: 200;
  font-size: 19.33px;
  line-height: 67px;
  color: #000000;
  opacity: 0.8;
}
@media (max-width: 992px) {
  .transparency-section {
    flex-direction: column;
    min-height: unset;
  }
  .transparency-section .transparency-right {
    padding: 60px 24px;
  }
  .transparency-section .transparency-right .main-title {
    font-size: 1.6rem;
    line-height: 1.35;
  }
  .transparency-section .transparency-right .body-copy {
    max-width: 100%;
  }
  .transparency-section .transparency-right .transparency-list .table-rows .row {
    font-size: 1rem;
    line-height: 2.5;
  }
}
@media (max-width: 576px) {
  .transparency-section .transparency-right {
    padding: 50px 20px;
  }
  .transparency-section .transparency-right .main-title {
    font-size: 1.35rem;
  }
  .transparency-section .transparency-right .sub-headline {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .transparency-section .transparency-right .transparency-list .table-rows .row {
    font-size: 15px;
    line-height: 1.5;
    padding: 14px 0;
  }
}

.built-last-section {
  background-color: #f6f3f0;
  color: #333333;
  padding: 7% 10%;
  width: 100%;
  display: flex;
  justify-content: center;
}
.built-last-section .container {
  width: 100%;
}
.built-last-section .container .header-content {
  margin-bottom: 30px;
}
.built-last-section .container .header-content .light-label {
  font-style: normal;
  font-weight: 200;
  font-size: 26.07px;
  line-height: 38px;
  color: #383E46;
  margin-bottom: 1.5rem;
}
.built-last-section .container .header-content .main-title {
  font-style: normal;
  font-weight: 300;
  font-size: 38.8931px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 3px;
}
.built-last-section .container .header-content .tagline {
  font-style: normal;
  font-weight: 200;
  font-size: 20.4253px;
  line-height: 28px;
  color: #000000;
}
.built-last-section .container .intro-body {
  max-width: 580px;
  margin-bottom: 10px;
}
.built-last-section .container .intro-body p {
  font-style: normal;
  font-weight: 200;
  font-size: 16.59px;
  line-height: 26px;
  color: #000000;
}
.built-last-section .container .sustains-list-container {
  max-width: 650px;
  margin-left: auto;
  text-align: right;
}
.built-last-section .container .sustains-list-container .list-title {
  font-style: normal;
  font-weight: 500;
  font-size: 21px;
  line-height: 38px;
  color: #383E46;
  margin-bottom: 0;
}
.built-last-section .container .sustains-list-container .sustains-table .row {
  padding: 0 0;
  border-bottom: 1px solid #D7D2CA;
  font-style: normal;
  font-weight: 200;
  font-size: 19.33px;
  line-height: 60px;
  text-align: right;
  color: #000000;
}
@media (max-width: 992px) {
  .built-last-section {
    padding: 80px 24px;
  }
  .built-last-section .container .header-content {
    margin-bottom: 50px;
  }
  .built-last-section .container .header-content .main-title {
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .built-last-section .container .header-content .tagline {
    font-size: 1rem;
    line-height: 1.65;
  }
  .built-last-section .container .intro-body {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .built-last-section .container .intro-body p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .built-last-section .container .sustains-list-container {
    max-width: 100%;
    margin-left: 0;
    text-align: left;
  }
  .built-last-section .container .sustains-list-container .sustains-table .row {
    font-size: 1rem;
    line-height: 2.5;
    text-align: left;
  }
}
@media (max-width: 576px) {
  .built-last-section {
    padding: 60px 20px;
    min-height: unset;
  }
  .built-last-section .container .header-content .main-title {
    font-size: 1.45rem;
  }
  .built-last-section .container .sustains-list-container .sustains-table .row {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 14px 0;
  }
}

.contact-section {
  background-color: #0f1112;
  color: #ffffff;
  padding: 2% 10%;
  margin-top: 2rem;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .container {
  max-width: 1100px;
  margin: 0 auto;
}
.contact-section .container .gold-label {
  font-style: normal;
  font-weight: 200;
  font-size: 16.9629px;
  line-height: 31px;
  text-align: center;
  color: #B89B5E;
}
.contact-section .container .top-intro {
  margin-bottom: 3rem;
}
.contact-section .container .top-intro h4 {
  font-style: normal;
  font-weight: 200;
  font-size: 21.8926px;
  line-height: 30px;
  text-align: center;
  color: #FFFFFF;
}
.contact-section .container .main-cta {
  font-style: normal;
  font-weight: 200;
  font-size: 33.43px;
  line-height: 43px;
  text-align: center;
  color: #FFFFFF;
  max-width: 1000px;
  margin: 0 auto 1rem auto;
}
.contact-section .container .cta-description {
  margin-bottom: 10px;
}
.contact-section .container .cta-description p {
  font-weight: 200;
  font-size: 18.5875px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #B89B5E;
  opacity: 0.8;
}
.contact-section .container .ways-to-join .join-title {
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  line-height: 36px;
  text-align: center;
  color: #B89B5E;
  margin-bottom: 8px;
}
.contact-section .container .ways-to-join .join-list {
  max-width: 800px;
  margin: 0 auto;
}
.contact-section .container .ways-to-join .join-list .row {
  padding: 5px 0;
  border-bottom: 1px solid rgb(255 255 255 / 6%);
  font-style: normal;
  font-weight: 200;
  font-size: 21.331px;
  line-height: 1.5;
  text-align: center;
  color: #FFFFFF;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 24px;
    min-height: unset;
  }
  .contact-section .container .gold-label {
    font-size: 1rem;
  }
  .contact-section .container .top-intro {
    margin-bottom: 2rem;
  }
  .contact-section .container .top-intro h2 {
    font-size: 1.2rem;
    line-height: 1.55;
  }
  .contact-section .container .main-cta {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .contact-section .container .cta-description p {
    font-size: 1rem;
    line-height: 1.65;
  }
  .contact-section .container .ways-to-join .join-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .contact-section .container .ways-to-join .join-list .row {
    font-size: 1rem;
    line-height: 2.3;
    padding: 6px 0;
  }
}
@media (max-width: 480px) {
  .contact-section {
    padding: 0px 20px;
    min-height: unset;
  }
  .contact-section .container .main-cta {
    font-size: 1.3rem;
  }
  .contact-section .container .ways-to-join .join-list .row {
    font-size: 0.9rem;
    line-height: 1;
    padding: 10px 0
  }
}

.site-footer {
  background-color: #000000;
  color: #c5a367;
  padding: 0 20px 50px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer .footer-container {
  max-width: 600px;
  width: 100%;
}
.site-footer .footer-container .footer-label {
  font-weight: 200;
  font-size: 22.305px;
  line-height: 36px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-bottom: 0;
}
.site-footer .footer-container .footer-logo img {
  max-width: 380px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.site-footer .footer-container .contact-details {
  font-family: "Helvetica Neue";
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
.site-footer .footer-container .contact-details p {
  font-style: normal;
  font-weight: 200;
  font-size: 22.305px;
  line-height: 31px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #B89B5E;
  /* margin-bottom: 8px; */
}
.site-footer .footer-container .contact-details .company-name {
  font-style: normal;
  font-weight: 200;
  font-size: 22.305px;
  line-height: 31px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #B89B5E;
}
.site-footer .footer-container .contact-details .phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* margin: 5px 0; */
  font-size: 22px;
  font-weight: 200;
}
.site-footer .footer-container .contact-details .phone-link .phone-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
}
.site-footer .footer-container .contact-details .phone-link .phone-icon svg {
  width: 100%;
  height: auto;
  transform: rotate(10deg);
}
.site-footer .footer-container .contact-details .phone-link a {
  font-style: normal;
  font-weight: 200;
  font-size: 22px;
  line-height: 35px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #B89B5E;
  text-decoration: none;
  transition: opacity 0.3s;
}
.site-footer .footer-container .contact-details .phone-link a:hover {
  opacity: 0.7;
}
.site-footer .footer-container .contact-details .email-link {
  font-style: normal;
  font-weight: 200;
  font-size: 22.305px;
  line-height: 31px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #B89B5E;
}
.site-footer .footer-container .contact-details .email-link a {
  color: inherit;
  text-decoration: none;
}
.site-footer .footer-container .contact-details .email-link a:hover {
  border-bottom: 1px solid rgba(197, 163, 103, 0.4);
}
@media (max-width: 768px) {
  .site-footer {
    padding: 80px 24px;
  }
  .site-footer .footer-container .footer-logo {
    margin-bottom: 20px;
  }
  .site-footer .footer-container .footer-logo img {
    max-width: 250px;
  }
  .site-footer .footer-container .contact-details p,
  .site-footer .footer-container .contact-details .company-name,
  .site-footer .footer-container .contact-details .email-link {
    font-size: 1.1rem;
    line-height: 1.65;
  }
  .site-footer .footer-container .contact-details .phone-link {
    font-size: 1rem;
  }
  .site-footer .footer-container .contact-details .phone-link a {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding: 0px 20px 60px;
  }
  .site-footer .footer-container .footer-logo img {
    max-width: 200px;
  }
  .site-footer .footer-container .contact-details p,
  .site-footer .footer-container .contact-details .company-name,
  .site-footer .footer-container .contact-details .email-link {
    font-size: 1rem;
  }
  .site-footer .footer-container .contact-details .phone-link a {
    font-size: 1rem;
  }
}

.float {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 10px;
  right: 10px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 23px;
  z-index: 999999;
}

.float:hover {
  color: black;
}

.my-float {
  margin-top: 12px;
}

.tel {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 70px;
  right: 10px;
  background-color: #FF0030;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 23px;
  z-index: 999999;
}

/*# sourceMappingURL=style.css.map */
.text-left {
    text-align: left;
}