:root {
  --st-blue: #11ace3;
  --st-navy: #241f55;
  --st-yellow: #fac90f;
  --st-pink: #cb5491;
  --st-orange: #e39c26;
  --st-grey: #e6e2df;
  --st-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "myriad-pro", sans-serif;
  color: var(--st-navy);
  overflow-x: hidden;
	  font-size: 20px;
  line-height: 1.5;
}


body,
button,
input,
textarea,
select {
  font-family: "myriad-pro", sans-serif;
}
main{
	margin:0!important;
}
.grid-child{
	column-gap:0;
}
.container-banner{
	margin:0;
}
img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.st-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
}
.itemid-101 .site-grid{
	display:none;
}

h1 {
  font-size: clamp(34px, 5vw, 62px) !important;
  line-height: 1.05 !important;
}

h2 {
  font-size: clamp(36px, 4vw, 58px) !important;
  line-height: 1.1 !important;
}

h3 {
  font-size: clamp(30px, 3.2vw, 24px) !important;
  line-height: 1.15 !important;
}

h4 {
  font-size: clamp(26px, 2.6vw, 22px) !important;
  line-height: 1.2 !important;
}

h5 {
  font-size: clamp(22px, 2vw, 20px) !important;
  line-height: 1.25 !important;
}

h6 {
  font-size: clamp(18px, 1.6vw, 18px) !important;
  line-height: 1.3 !important;
}

h7 {
  font-size: clamp(16px, 1.4vw, 16px) !important;
  line-height: 1.35 !important;
  display: block !important;
  font-weight: 700 !important;
}

/* ========================================
   HEADER
======================================== */

.st-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--st-blue);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.st-header::before,
.st-header::after {
  content: "";
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.st-header::before {
    right: 3%;
    top: 8%;
  width: 420px;
  height: 120px;
  opacity: 0.3;

  background-image: url('/images/clouds.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}

.st-header-inner {
  max-width: 1920px;
  margin: 0 auto;
  min-height: 120px;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  padding: 28px 55px 0;
  position: relative;
  z-index: 2;
}

.st-header-left {
  display: flex;
  flex-direction: column;
}

.st-logo {
  display: inline-block;
  margin-bottom: 14px;
}

.st-logo img {
  width: 300px;
  max-width: 100%;
}

.st-menu-wrap {
  position: relative;
  z-index: 3;
}

.st-header-right {
  padding-bottom: 6px;
}

.st-animation-bg {
  position: relative;
}

.st-hover-underline-animation {
  position: relative;
  display: inline-block;

  margin: 0;
  padding-bottom: 6px;

  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.st-hover-underline-animation::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;

  height: 2px;
  width: 0%;

  background-color: #fff;

  animation-name: stUnderlineMove;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@keyframes stUnderlineMove {

  0% {
    width: 0%;
    left: 0;
  }

  100% {
    width: 100%;
    left: 0;
  }

}

/* ========================================
   HERO
======================================== */

.st-hero-intro {
  background: var(--st-blue);
  color: var(--st-white);
  text-align: center;
  padding: 90px 20px;
}

.st-hero-intro h1 {
  max-width: 1200px;
  margin: 0 auto;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.18;
  font-weight: 700;
}

/* ========================================
   SPLIT SECTIONS
======================================== */

.st-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.st-image {
  min-height: 650px;
}

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

.st-content {
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.st-content h2,
.st-content h3 {
  margin-top: 0;
}

.st-content h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.1;
  margin-bottom: 25px;
}

.st-content h3 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.st-content p {
  line-height: 1.5;
  margin-bottom: 22px;
}

.st-navy {
  background: var(--st-navy);
  color: var(--st-white);
}

.st-pink {
  background: var(--st-pink);
  color: var(--st-white);
}

/* ========================================
   CARD GRID
======================================== */

.st-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 45px;
}

.st-card {
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 10px;
  padding: 35px 20px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.st-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.st-card p {
  margin-bottom: 0;
}

/* ========================================
   MISSION / VISION
======================================== */

.st-mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.st-mv-left {
  display: flex;
  flex-direction: column;
}

.st-mission,
.st-vision {
  padding: 90px 70px;
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.st-mission {
  background: var(--st-yellow);
}

.st-vision {
  background: var(--st-blue);
  color: var(--st-white);
}

.st-mission h2,
.st-vision h2 {
  font-size: 46px;
  line-height: 1.1;
  margin: 0 0 25px;
}

.st-mission p,
.st-vision p {
  font-size: 20px;
  line-height: 1.5;
}

.st-mv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   VALUES
======================================== */

.st-values {
  background: var(--st-pink);
  color: var(--st-white);
  text-align: center;
  padding: 90px 0 100px;
}

.st-values h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin: 0 0 45px;
  color: var(--st-white);
  font-weight: 700;
}

.st-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  align-items: start;
  max-width: 1920px;
  margin: 0 auto;
}

.st-value {
  text-align: center;
}

.st-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  background: var(--st-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
}

.st-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.st-value h3 {
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 22px;
  color: var(--st-white);
  font-weight: 700;
}

.st-value p {
  font-size: 20px;
  line-height: 1.35;
  max-width: 250px;
  margin: 0 auto;
  color: var(--st-white);
  font-weight: 600;
}

/* ========================================
   TRUSTEES
======================================== */

.st-trustees {
  background: var(--st-orange);
  text-align: center;
  padding: 90px 0;
  overflow: hidden;
}

.st-trustees-intro {
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 20px;
  line-height: 1.5;
}

.st-trustees h2 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  margin: 0 0 60px;
}

.st-trustee-carousel-wrap {
  position: relative;
}

.st-trustee-carousel {
  overflow: hidden;
}

.st-trustee-track {
  display: flex;
  transition: transform 0.45s ease;
}

.st-trustee-slide {
  min-width: 33.333%;
  padding: 0 30px;
  flex-shrink: 0;
}

.st-trustee-slide img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 25px;
}

.st-trustee-slide h3 {
  font-size: 30px;
  margin: 0 0 18px;
  color: var(--st-navy);
}

.st-trustee-slide p {
  max-width: 280px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.45;
}

.st-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: 0;
  background: transparent;
  color: var(--st-white);
  font-size: 58px;
  cursor: pointer;
  z-index: 2;
  transition: 0.25s ease;
}

.st-carousel-arrow:hover {
  opacity: 0.7;
}

.st-prev {
  left: -20px;
}

.st-next {
  right: -20px;
}

/* ========================================
   FUNDING
======================================== */

.st-summary-box {
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 10px;
  padding: 30px;
  margin-top: 40px;
}

.st-summary-box h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.st-summary-box p {
  margin: 8px 0;
}

/* ========================================
   SUPPORTS
======================================== */

.st-supports {
  background: var(--st-yellow);
  text-align: center;
  padding: 100px 0;
}

.st-supports h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.1;
  margin: 0 0 30px;
}

.st-supports p {
  max-width: 760px;
  margin: 0 auto 25px;
  font-size: 20px;
  line-height: 1.5;
}

.st-supports h3 {
  margin-bottom: 55px;
  font-size: 22px;
}

.st-circle-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.st-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--st-blue);
  color: var(--st-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-align: center;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(0,0,0,0.18);
}

/* ========================================
   APPLY
======================================== */

.st-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.st-check-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1.45;
}

.st-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--st-white);
  color: var(--st-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.st-btn {
  display: inline-block;
  background: var(--st-blue);
  color: var(--st-white);
  padding: 16px 65px;
  font-size: 20px;
  font-weight: 700;
  transition: 0.25s ease;
}

.st-btn:hover {
  background: var(--st-navy);
	color:white;
}

/* ========================================
   CONTACT
======================================== */

.contact-banner {
	min-height: 400px;
	background-image: url('/images/contact-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.st-contact {
  background: var(--st-blue);
  color: var(--st-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding: 110px 70px;
}

.st-contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.st-contact-copy h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin: 0 0 25px;
  line-height: 1.1;
}

.st-contact-copy h3 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 25px;
  max-width: 620px;
}

.st-contact-copy p {
  font-size: 20px;
  line-height: 1.5;
}

.st-form-placeholder {
  min-height: 460px;
}

/* ========================================
   FOOTER
======================================== */

.st-footer {
  background-image: url('/images/footer-bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 400px;

  display: flex;
  align-items: flex-end;
}

.st-footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  padding: 0 50px 20px;
}

.st-footer-bottom strong {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: var(--st-white);
}

.st-footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.st-footer-links a {
      color: var(--st-white);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.st-footer-links a:hover {
  opacity: 0.7;
}

/* ========================================
	ADDITIONAL C{}DE
======================================== */

.neg-ban{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: -60px;
	margin-right: -60px;
	background-image: url('/images/funding-banner.jpg');
  	background-repeat: no-repeat;
  	background-size: cover;
  	background-position: center;
  	min-height: 500px;
	min-width: 3000px;
}


/* FUNDING PAGE */

.fund-inner {
	background-color: var(--st-navy);
	color: #fff;
	padding: 60px 60px;
}

.fund-banner {
	min-height: 400px;
	background-image: url('/images/funding-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.fund-inner-top {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 200px;
	background-color: #13ade3;
	color: #fff;
	padding: 0px 60px;
}

.fund-inner-top h1 {
	font-size: 62px;
}

.fund-inner-col {
	display: flex;
	align-items: center;
	column-gap: 100px;
}

.fund-col-left {
	flex: 1;
}

.fund-col-left h2{
	font-size: 58px;
}

.fund-col-right {
	flex: 1;
}

.fund-col-right h3 {
	font-weight: 400;
}

.fund-col-right img {
	border-radius: 20px;
}

/* APPLY PAGE*/

.apply-inner {
	background-color: #f9c910;
	color: #1f2158;
	padding: 60px 60px;
}

.apply-banner {
	min-height: 400px;
	background-image: url('/images/apply-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.apply-inner-top {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 200px;
	background-color: #cb5491;
	color: #fff;
	padding: 0px 60px;
	text-align: center;
}

.apply-inner-col {
	display: flex;
	align-items: center;
	column-gap: 100px;
}

.apply-col-left {
	flex: 1;
}

.apply-col-right {
	flex: 1;
}

.apply-col-right img {
	border-radius: 20px;
}

.list-items {
	font-weight: 500;
}

.apply-inner-mid {
	background-color: #f9c910;
	color: #1f2158;
	padding: 60px 60px;
}

.apply-inner-mid-col {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	column-gap: 100px;
}

.apply-col-mid-left {
	flex: 1;
}

.apply-col-mid-right {
	flex: 1;
}

.apply-col-mid-right img {
	border-radius: 20px;
}

.st-form-apply-placeholder {
  background: var(--st-grey);
  padding: 0;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1100px) {

  .st-card-grid {
    grid-template-columns: 1fr;
  }

  .st-values-grid {
    gap: 20px;
  }

  .st-contact {
    gap: 20px;
  }

}

@media (max-width: 1200px) {
	#maximenuck123-mobile {
    position: fixed !important;
    top: 20px !important;
    right: 30px !important;
    left: auto !important;
    width: auto !important;
    z-index: 999999 !important;
  }

  #maximenuck123-mobile .mobilemenuck-topbar {
    position: relative !important;
  }

  #maximenuck123-mobile .mobilemenuck-item {
    background: #1f1955 !important;
  }

	.fund-inner,.apply-inner,.st-content,
  .st-mission,
  .st-vision,.apply-inner-mid,.apply-inner-top{
	padding: 28px;
}

  .st-header-inner {
    min-height: 110px;
    align-items: center;
    padding: 18px 28px;
  }

  .st-header-left {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .st-logo {
    margin-bottom: 0;
  }

  .st-logo img {
    width: 230px;
  }

  .st-header-right {
    display: none;
  }

  .st-header::before {
    right: 0;
    top: 0;
    width: 260px;
    height: 90px;
    opacity: 0.3;
  }

  .st-menu-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
.st-mission h2,
.st-vision h2 {
  font-size: 35px;
}
}

@media (max-width: 900px) {
	.apply-inner-col{
		flex-direction:column;
	}
	.apply-inner-mid-col	{
		flex-direction:column;
	}
	.fund-inner,.apply-inner,.apply-inner-mid,.apply-inner-top{
	padding: 20px;
}
	body {
	  font-size: 18px;
}

  .st-split,
  .st-mission-vision,
  .st-contact {
    grid-template-columns: 1fr;
  }

  .st-content,
  .st-mission,
  .st-vision {
    padding: 40px 20px;
  }

  .st-contact {
    padding: 70px 25px;
  }

  .st-image {
    min-height: 420px;
  }

  .st-values-grid,
  .st-card-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .st-trustee-slide {
    min-width: 50%;
  }

  .st-header-inner {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
  }

  .st-logo img {
    width: 220px;
  }

  .st-header-right {
    padding-bottom: 0;
  }

  .st-header-tagline {
    text-align: left;
  }
	 .st-hover-underline-animation {
    font-size: 12px;
  }

  .st-header::before {
    right: 120px;
    width: 100px;
  }

  .st-header::after {
    right: 10px;
    width: 130px;
  }

  .st-footer {
    min-height: 280px;
    background-position: center;
  }

  .st-footer-bottom {
    padding: 0 25px 25px;
  }

	
  .fund-inner {
	padding: 30px 20px;
}

  .fund-banner {
	min-height: 300px;
}

  .fund-inner-top {
	min-height: 200px;
	padding: 0px 20px;
}

  .fund-inner-top h1 {
	font-size: 48px;
}

  .fund-inner-col {
	display: flex;
	flex-direction: column;  
	align-items: center;
	row-gap: 30px;
}


  .fund-col-left h2{
	font-size: 34px;
}

  .fund-col-right h3 {
	font-size: 24;
}

  .fund-col-right img {
	border-radius: 20px;
}
	

}

@media (max-width: 600px) {

  .st-container {
    padding: 0 22px;
  }

  .st-hero-intro,
  .st-values,
  .st-supports,
  .st-trustees {
    padding: 60px 0;
  }

  .st-content h2,
  .st-supports h2,
  .st-values h2,
  .st-trustees h2,
  .st-contact-copy h2 {
    font-size: 34px;
  }

  .st-content h3,
  .st-contact-copy h3 {
    font-size: 24px;
  }

  .st-circle {
    width: 150px;
    height: 150px;
    font-size: 18px;
  }

  .st-trustee-slide {
    min-width: 100%;
    padding: 0 20px;
  }

  .st-carousel-arrow {
    font-size: 42px;
    width: 40px;
    height: 40px;
  }

  .st-prev {
    left: -5px;
  }

  .st-next {
    right: -5px;
  }

  .st-form-placeholder {
    min-height: 320px;
    padding: 0;
  }

  .st-header-inner {
    padding: 20px;
  }

  .st-logo img {
    width: 180px;
  }

  .st-header-tagline {
    font-size: 12px;
  }

  .st-footer {
    min-height: 250px;
    background-size: cover;
  }

  .st-footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 0 20px 15px;
  }

  .st-footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .st-footer-links a {
    font-size: 13px;
  }

}