/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: "Poppins", sans-serif;
    background:#f6f1e8;
    line-height:1.7;
}
h1, h2, h3, h4, h5, h6{
	 font-family: "Lora", serif;
}
img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   BUTTONS
========================= */
.footer-logo img {
    width: 220px;
	margin-bottom: 20px;
}
.btn-primary{
    display: inline-block;
    background: #18237b;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
    border: 1px solid #ffffffa1;
}
.btn-primary:hover{
    opacity:.9;
}
.btn-outline{
    display: inline-block;
    border: 2px solid #18237b;
    color: #18237b;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    margin-left: 10px;
    font-weight: 600;
}
/* =========================
   HEADER
========================= */
.site-header{
    background:#292c6e;
    border-bottom:1px solid #e7e2d7;
    padding:10px 0;
}
.site-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo{
    display:flex;
    align-items:center;
    gap:15px;
}
.logo img{
    width:165px;
}
.logo-text h4{
    font-size:16px;
    line-height:1.3;
    color:#1f2c7a;
    max-width:220px;
}
a.btn-primary.nav {
    padding: 8px 25px;
}
.site-header nav ul{
   display: flex;
    align-items: center;
    gap: 30px;
}
.site-header nav a{
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

/* =========================
   HERO
========================= */
.hero{
    padding:80px 0;
}
.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.tag{
    display:inline-block;
    padding:8px 15px;
    border-radius:20px;
    font-size:12px;
    letter-spacing:1px;
    margin-bottom:25px;
    color:#a85f12;
    font-weight:700;
}
    .hero h1 {
    font-size: 46px;
    line-height: 1.18;
    margin-bottom: 25px;
    color: #292c6e;
    font-weight: 600;
	letter-spacing: 0.01em;
}
span.clr-text {
    color: #a85f12;
}
.hero p{
    color: #292c6e;
    margin-bottom: 35px;
    max-width: 550px;
    font-size: 18px;
}
.hero-btns{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
}
.hero-image img{
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}
/* =========================
   MISSION SECTION
========================= */

.mission-section{
    background:#202f95;
    padding:100px 0;
    color:#fff;
}
.mission-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
}
.mission-section span{
    color: #f0ac49;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}
.mission-section h2{
    font-size:44px;
    line-height:1.25;
    margin:20px 0;
	color: #fff;
}
.mission-section p{
    color:#d8defa;
}

/* =========================
   PILLARS
========================= */

.pillars{
    padding:100px 0;
}
.pillars span {
    color: #f0ac49;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
	text-transform: uppercase;
}
.pillars h2{
   font-size: 44px;
    max-width: 550px;
    line-height: 1.25;
    margin-bottom: 40px;
    color: #292c6e;
}
.pillar-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}
.pillar-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    border:1px solid #ececec;
    transition:.3s;
}
.pillar-card:hover{
    transform:translateY(-5px);
}
.pillar-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#1f2c7a;
}
.pillar-card svg {
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 30px;
}
.pillar-card.one svg {
    color: #eaa421;
    background-color: #eaa42140;
}
.pillar-card.two svg {
    color: #25aae1;
    background-color: #25aae12e;
}
.pillar-card.three svg {
    background-color: #292c6e30;
    color: #292c6e;
}
.pillar-card.four svg {
    color: #eaa421;
    background-color: #eaa42140;
}
/* =========================
   STORIES
========================= */
.stories{
    padding-bottom:100px;
}
.stories h2{
    font-size: 44px;
    margin-bottom: 50px;
    line-height: 1.25;
    color: #292c6e;
}
.stories span {
    color: #f0ac49;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}
.story-card img{
    border-radius:18px;
    margin-bottom:25px;
}
.story-card h3{
    font-size:34px;
    margin-bottom:15px;
	color: #292c6e;
}
article.story-card.two {
    padding-top: 60px;
}
/* =========================
   GOVERNANCE CTA
========================= */

.governance{
    padding-bottom:30px;
}
.governance-content {
    width: 55%;
}
.governance-box span {
    color: #292c6ebf;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.governance-box{
    background:#eba63a;
    border-radius:28px;
    padding:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}
.governance-box h2{
    font-size: 44px;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #292c6e;
}
/* =========================
   PARTNERS
========================= */
.partners__list span {
        padding: 0px 30px;
    font-size: 18px;
    color: #7a8096;
    margin-top: 15px;
    display: inline-block;
}
.partners{
    padding:60px 0;
    text-align:center;
}
.partners h2 {
    font-size: 44px;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #292c6e;
}
.newsletter span {
    color: #292c6ebf;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.partner-list{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:50px;
    margin-top:30px;
    color:#8b8b8b;
}
/* =========================
   NEWSLETTER
========================= */
.newsletter{
    background:#71bde9;
    text-align:center;
    padding:120px 0;
}
.newsletter h2{
    font-size: 44px;
    line-height: 1.25;
    color: #292c6e;
    max-width: 42%;
    text-align: center;
    margin: 10px auto;
}
.newsletter p{
    margin-bottom:35px;
    color:#284066;
}
.newsletter-form{
    display:flex;
    justify-content:center;
    gap:15px;
}
.newsletter-form input{
    width:380px;
    height:55px;
    border:none;
    border-radius:30px;
    padding:0 20px;
}
.newsletter-form button{
    background:#292c6e;
    color:#fff;
    border:none;
    padding:0 30px;
    border-radius:30px;
    cursor:pointer;
}
/* =========================
   FOOTER
========================= */
.container.copyright {
    border-top: 1px solid #292c6ebf;
    padding: 25px 0px 0px;
    margin-top: 40px;
    text-align: center;
}
.footer-logo p {
    color: #7a8096;
}
.copyright-row p {
    color: #7a8096;
}
.footer{
    background:#f6f1e8;
    padding:50px 0 30px;
}
.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}
.footer h4{
    margin-bottom:20px;
    color:#292c6e;
	font-size: 22px;
}
.footer ul li{
    margin-bottom:12px;
}
.footer ul li a{
    color:#7a8096;
}
.footer-bottom{
    border-top:1px solid #ddd;
    margin-top:40px;
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    color:#999;
    font-size:14px;
}
/* =========================
   MOBILE MENU
========================= */

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){
.hero-grid,
.mission-grid,
.story-grid,
.footer-grid{
    grid-template-columns:1fr;
}
.pillar-grid{
    grid-template-columns:repeat(2,1fr);
}
.hero h1{
    font-size:52px;
}
.mission-section h2,
.governance-box h2,
.newsletter h2{
    font-size:40px;
}
.governance-box{
    flex-direction:column;
    text-align:center;
}
}

/* =========================
   MOBILE
========================= */

@media(max-width:767px){
.site-header .container{
    flex-direction:column;
    gap:20px;
}
.site-header nav ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}
.hero{
    padding:60px 0;
}
.hero-grid{
    gap:40px;
}
.hero h1{
    font-size:42px;
}
.pillars h2,
.stories h2,
.newsletter h2{
    font-size:34px;
}
.pillar-grid{
    grid-template-columns:1fr;
}
.newsletter-form{
    flex-direction:column;
}
.newsletter-form input{
    width:100%;
}
.footer-bottom{
    flex-direction:column;
    gap:10px;
    text-align:center;
}
.governance-box{
    padding:40px 25px;
}
}