/* =========================
GLOBAL CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f5f3;
    font-family:'Oswald', sans-serif;
    overflow-x:hidden;
}

/* =========================
HEADER
========================= */

.eco-header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(245,245,243,0.96);
    backdrop-filter:blur(10px);
    padding:20px 0;
    transition:.3s;
    border-bottom:1px solid rgba(0,0,0,0.05);
}

.eco-header.scrolled{
    padding:12px 0;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.eco-logo{
    width:110px;
}

.eco-navbar{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
}

.eco-navbar a{
    text-decoration:none;
    color:#555;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    position:relative;
    transition:.3s;
    font-family: "DM Sans", sans-serif;
}

.eco-navbar a:hover{
    color:#7da33d;
}

.eco-navbar a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:100%;
    height:2px;
    background:#7da33d;
}

.join-btn{
    background:#000;
    color:#fff;
    padding:15px 28px;
    text-decoration:none;
    font-size:12px;
    letter-spacing:2px;
    transition:.3s;
    display:inline-block;
}

.join-btn:hover{
    background:#7da33d;
    color:#fff;
}

.mobile-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}

/* =========================
HERO SECTION
========================= */

.hero-section{
    padding:60px 0 100px;
    position:relative;
}

.hero-subtitle{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:25px;
}

.hero-subtitle .line{
    width:35px;
    height:2px;
    background:#000;
}

.hero-subtitle p{
    margin:0;
    font-size:11px;
    letter-spacing:4px;
    color:#444;
    text-transform:uppercase;
}

.hero-title{
    line-height:.9;
}

.hero-title .big{
    display:block;
    font-size:120px;
    font-weight:700;
    color:#000;
}

.hero-title .italic{
    display:block;
    font-family:'Cormorant Garamond', serif;
    font-size:95px;
    font-style:italic;
    font-weight:400;
    color:#000;
}

.hero-title .home{
    display:inline-block;
    position:relative;
    z-index:1;
}

.hero-title .home::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:10px;
    background:#7da33d;
    z-index:-1;
}

.hero-desc{
    margin-top:30px;
    max-width:520px;
    font-family:'Cormorant Garamond', serif;
    font-size:22px;
    color:#555;
    line-height:1.4;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-dark-custom{
    background:#000;
    color:#fff;
    padding:18px 35px;
    text-decoration:none;
    font-size:12px;
    letter-spacing:2px;
    transition:.3s;
}

.btn-dark-custom:hover{
    background:#7da33d;
    color:#fff;
}

.btn-light-custom{
    border:1px solid #000;
    color:#000;
    padding:18px 35px;
    text-decoration:none;
    font-size:12px;
    letter-spacing:2px;
    transition:.3s;
}

.btn-light-custom:hover{
    background:#000;
    color:#fff;
}

/* =========================
IMAGE AREA
========================= */

.hero-image-wrap{
    position:relative;
}

.hero-image{
    width:100%;
    height:650px;
    object-fit:cover;
}

.stats-box{
    position:absolute;
    left:-50px;
    bottom:-30px;
    background:#8cab3d;
    padding:22px 35px;
    width:220px;
    box-shadow: 10px 10px #000;
}

.stats-box h2{
    font-size:30px;
    font-weight:700;
    margin:0;
}

.stats-box p{
    margin:0;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1199px){

    .hero-title .big{
        font-size:95px;
    }

    .hero-title .italic{
        font-size:78px;
    }

    .hero-image{
        height:580px;
    }

}

@media(max-width:991px){

    .eco-header{
        padding:15px 0;
    }

    .eco-logo{
        width:85px;
    }

    .mobile-toggle{
        display:block;
    }

    .eco-navbar{
        position:fixed;
        top:0;
        left:-100%;
        width:280px;
        height:100vh;
        background:#fff;
        flex-direction:column;
        justify-content:center;
        align-items:flex-start;
        padding-left:40px;
        gap:28px;
        transition:.4s ease;
        z-index:99999;
        box-shadow:0 0 30px rgba(0,0,0,0.1);
    }

    .eco-navbar.active{
        left:0;
    }

    .eco-navbar a{
        font-size:14px;
    }

    .hero-section{
        padding:40px 0 80px;
    }

    .hero-title .big{
        font-size:75px;
    }

    .hero-title .italic{
        font-size:62px;
    }

    .hero-desc{
        max-width:100%;
        font-size:20px;
    }

    .hero-image{
        height:520px;
        margin-top:30px;
    }

    .stats-box{
        left:20px;
        bottom:-20px;
        width:180px;
        padding:18px 25px;
    }

    .stats-box h2{
        font-size:42px;
    }

}

@media(max-width:767px){

    .hero-section{
        padding-top:20px;
    }

    .hero-subtitle p{
        font-size:9px;
        letter-spacing:2px;
    }

    .hero-title .big{
        font-size:58px;
    }

    .hero-title .italic{
        font-size:48px;
    }

    .hero-desc{
        margin-top:20px;
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-dark-custom,
    .btn-light-custom{
        width:100%;
        text-align:center;
        padding:16px 20px;
    }

    .hero-image{
        height:420px;
    }

}

@media(max-width:480px){

    .container{
        padding-left:18px;
        padding-right:18px;
    }

    .hero-title .big{
        font-size:48px;
    }

    .hero-title .italic{
        font-size:40px;
    }

    .hero-desc{
        font-size:17px;
    }

    .hero-image{
        height:340px;
    }

    .stats-box{
        width:140px;
        padding:15px 20px;
    }

    .stats-box h2{
        font-size:30px;
    }

}

/* =========================
MANIFESTO SECTION CSS
NO CONFLICT CSS
========================= */

.eco-manifesto-section{
    position:relative;
    padding:0 0 120px;
    background:#f5f5f3;
    overflow:visible;
}


/* =========================
TOP BAR
========================= */

.eco-topic-bar{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;
    flex-wrap:wrap;
    padding:18px 0;
    border-top:1px solid rgba(0,0,0,0.1);
    border-bottom:1px solid rgba(0,0,0,0.1);
}

@media(max-width:767px){
    .eco-topic-bar{
        flex-wrap:nowrap;
        justify-content:flex-start;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
    }
    .eco-topic-bar::-webkit-scrollbar{
        display:none;
    }
}


.eco-topic-item{
    font-size:12px;
    letter-spacing:3px;
    color:#222;
    text-transform:uppercase;
    font-family:'Oswald', sans-serif;
    white-space:nowrap;
}

.eco-topic-dot{
    color:#84b43a;
    font-size:14px;
}

.eco-green-line{
    width:100%;
    height:10px;
    background:#84b43a;
}

/* =========================
MAIN WRAPPER
========================= */

.eco-manifesto-wrapper{
    padding-top:110px;
}

/* =========================
LABEL
========================= */

.eco-manifesto-label{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:40px;
}

.eco-manifesto-line{
    width:38px;
    height:2px;
    background:#84b43a;
}

.eco-manifesto-label p{
    margin:0;
    font-size:11px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#666;
    font-family:'Oswald', sans-serif;
}

/* =========================
BIG TYPOGRAPHY
========================= */

.eco-manifesto-content{
    font-size:65px;
    line-height:1.05;
    color:#111;
    font-family:'Cormorant Garamond', serif;
    font-weight:400;
    letter-spacing:-2px;

    /* responsive text safety */
    max-width:100%;
    overflow-wrap:anywhere;
    word-break:break-word;
}

/* ===== MANIFESTO RESPONSIVE TYPE ===== */
@media(max-width:991px){
    .eco-manifesto-content{
        font-size:46px;
        letter-spacing:-1.5px;
        line-height:1.08;
    }
}

@media(max-width:767px){
    .eco-manifesto-content{
        font-size:36px;
        letter-spacing:-1.2px;
        line-height:1.12;
    }

    .eco-highlight{
        padding:0 12px 6px;
    }
}

@media(max-width:480px){
    .eco-manifesto-content{
        font-size:28px;
        letter-spacing:-0.8px;
        line-height:1.14;
    }

    .eco-highlight{
        padding:0 10px 5px;
    }
}

.eco-italic{
    font-style:italic;
}

.eco-highlight{
    background:#98c24d;
    padding:0 18px 8px;
    display:inline-block;
    line-height:1;
}
/* =========================
FEATURE GRID
========================= */

.eco-feature-grid{
    margin-top:90px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:38px;
}

/* =========================
FEATURE BOX
========================= */

.eco-feature-box{
    position:relative;
}

/* TOP LINE */

.eco-feature-line{
    width:100%;
    height:1px;
    background:#1f1f1f;
    margin-bottom:18px;
}

/* SMALL LABEL */

.eco-feature-label{
    display:block;
    margin-bottom:16px;
    font-size:11px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#646262;
    font-family:'Oswald', sans-serif;
}

/* TITLE */

.eco-feature-title{
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    color: #0A0A0A;
    font-family: 'Cormorant Garamond', serif;
}

/* DESCRIPTION */

.eco-feature-desc{
    margin:0;
    font-size:15px;
    line-height:1.625;
    color:#666;
    font-family:'Montserrat', sans-serif;
    font-weight:400;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1199px){

    .eco-feature-title{
        font-size:44px;
    }

}

@media(max-width:991px){

    .eco-feature-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .eco-feature-title{
        font-size:40px;
    }

    .eco-feature-desc{
        max-width:100%;
    }

}

@media(max-width:576px){

    .eco-feature-grid{
        margin-top:60px;
    }

    .eco-feature-label{
        font-size:10px;
        letter-spacing:3px;
    }

    .eco-feature-title{
        font-size:34px;
    }

    .eco-feature-desc{
        font-size:15px;
        line-height:1.7;
    }

}

/* =========================
SEVEN VERTICALS SECTION
========================= */

.eco-verticals-section{
    position:relative;
    padding:100px 0;
    background:#050505;
    overflow:hidden;
}

/* =========================
TOP AREA
========================= */

.eco-vertical-title h2{
    margin:0;
    color:#fff;
    font-size:72px;
    line-height:.9;
    font-weight:700;
    text-transform:uppercase;
    font-family:'Oswald', sans-serif;
}

.eco-vertical-text{
    margin:0;
    color:#bdbdbd;
    font-size:15px;
    line-height:1.8;
    max-width:420px;
    margin-left:auto;
}

.eco-vertical-text span{
   -webkit-text-stroke: 1.5px #fafafa;
    color: #0000;
}

/* =========================
GRID
========================= */

.eco-vertical-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

/* =========================
CARD
========================= */

.eco-card{
    position:relative;
    height:250px;
    overflow:hidden;
    cursor:pointer;
    background:#111;
}

/* BIG CARD */

.eco-card-big{
    grid-column:span 2;
    grid-row:span 2;
    min-height:460px;
}

/* WIDE CARD */

.eco-card-wide{
    grid-column:span 3;
}

/* IMAGE */

.eco-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s ease;
}

/* OVERLAY */

.eco-card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,0.88),
    rgba(83,125,33,0.55));
}

/* CONTENT */

.eco-card-content{
    position:absolute;
    left:25px;
    bottom:25px;
    z-index:2;
}

.eco-card-content h3{
    margin:0 0 12px;
    color:#fff;
    font-size:28px;
    line-height:1.1;
    max-width:320px;
    font-family:'Cormorant Garamond', serif;
}

.eco-card-content a{
    color:#d8ff95;
    text-decoration:none;
    font-size:11px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-family:'Oswald', sans-serif;
}

.eco-card-content p{
    color: #ffffff;
    font-size: 14px;

}

/* HOVER */

.eco-card:hover img{
    transform:scale(1.08);
}

.eco-card:hover .eco-card-overlay{
    background:linear-gradient(to top,
    rgba(0,0,0,0.92),
    rgba(111,168,41,0.7));
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .eco-vertical-title h2{
        font-size:58px;
    }

    .eco-vertical-grid{
        grid-template-columns:1fr 1fr;
    }

    .eco-card-big{
        grid-column:span 2;
    }

    .eco-card-wide{
        grid-column:span 2;
    }

}

@media(max-width:767px){

    .eco-verticals-section{
        padding:80px 0;
    }

    .eco-vertical-title h2{
        font-size:44px;
    }

    .eco-vertical-grid{
        grid-template-columns:1fr;
    }

    .eco-card-big,
    .eco-card-wide{
        grid-column:span 1;
        min-height:320px;
    }

    .eco-card{
        min-height:280px;
    }

    .eco-card-content h3{
        font-size:24px;
    }

}

@media(max-width:480px){

    .eco-vertical-title h2{
        font-size:36px;
    }

    .eco-card-content{
        left:18px;
        bottom:18px;
    }

    .eco-card-content h3{
        font-size:22px;
    }

}

.green{
    color: #7da33d !important;
}

/* =========================
CONTACT SECTION
========================= */

.eco-contact-section{
    position:relative;
    padding:40px 0;
    overflow:hidden;
}

/* =========================
LEFT CONTENT
========================= */

.eco-contact-subtitle{
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#7d7d7d;
    margin-bottom:18px;
}

.eco-contact-title{
    font-size:120px;
    line-height:.9;
    margin-bottom:30px;
    color:#111;
    font-weight:400;
    font-family:'Cormorant Garamond', serif;
}

.eco-contact-desc{
    max-width:520px;
    font-size:20px;
    line-height:1.8;
    color:#5f5f5f;
    margin-bottom:55px;
    font-family:'Cormorant Garamond', serif;
}

/* =========================
INFO BOX
========================= */

.eco-info-box{
    margin-bottom: 42px;
    border: 1px solid #000;
    padding: 20px;
    height: 340px;
}

.eco-info-box h5{
    margin-bottom:14px;
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#777;
}

.eco-info-box p,
.eco-info-box a{
    margin:0;
    display:block;
    text-decoration:none;
    color:#111;
    font-size:26px;
    line-height:1.6;
    font-family:'Cormorant Garamond', serif;
}

.eco-info-box a:hover{
    color:#84b43a;
}

/* =========================
SOCIAL
========================= */

.eco-social-links{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:15px;
}

.eco-social-links a{
    width:48px;
    height:48px;
    border:1px solid rgba(0,0,0,0.1);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    text-decoration:none;
    transition:.3s;
}

.eco-social-links a:hover{
    background:#84b43a;
    color:#fff;
    border-color:#84b43a;
}

/* =========================
MAP BUTTON
========================= */

.eco-map-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:15px;
    text-decoration:none;
    color:#111;
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    transition:.3s;
}

.eco-map-btn:hover{
    color:#84b43a;
}

/* =========================
FORM BOX
========================= */

.eco-contact-form{
    background:#fff;
    padding:60px;
    border:1px solid rgba(0,0,0,0.06);
}

.eco-form-title{
    font-size:62px;
    line-height:1;
    margin-bottom:40px;
    font-weight:400;
    font-family:'Cormorant Garamond', serif;
}

.eco-input-group{
    margin-bottom:28px;
}

.eco-input-group label{
    display:block;
    margin-bottom:12px;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#777;
}

.eco-input{
    width:100%;
    border:none;
    border-bottom:1px solid rgba(0,0,0,0.2);
    background:transparent;
    padding:14px 0;
    font-size:18px;
    color:#111;
    outline:none;
    transition:.3s;
    font-family:'Cormorant Garamond', serif;
}

.eco-input:focus{
    border-color:#84b43a;
}

textarea.eco-input{
    resize:none;
    min-height:140px;
}

.eco-submit-btn{
    border:none;
    background:#111;
    color:#fff;
    padding:18px 45px;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    transition:.3s;
}

.eco-submit-btn:hover{
    background:#84b43a;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1199px){

    .eco-contact-title{
        font-size:95px;
    }

}

@media(max-width:991px){

    .eco-contact-section{
        padding:90px 0;
    }

    .eco-contact-title{
        font-size:72px;
    }

    .eco-contact-form{
        margin-top:60px;
    }

}

@media(max-width:767px){

    .eco-contact-title{
        font-size:56px;
    }

    .eco-contact-desc{
        font-size:18px;
    }

    .eco-info-box p,
    .eco-info-box a{
        font-size:22px;
    }

    .eco-contact-form{
        padding:40px 25px;
    }

    .eco-form-title{
        font-size:46px;
    }

}

@media(max-width:480px){

    .eco-contact-section{
        padding:70px 0;
    }

    .eco-contact-title{
        font-size:46px;
    }

    .eco-form-title{
        font-size:38px;
    }

    .eco-submit-btn{
        width:100%;
    }

}

/* Main Section */
.sdg-section{
    padding:60px 0;
}

/* Heading Area */
.sdg-heading h1{
    font-size:64px;
    font-weight:900;
    line-height:0.9;
    text-transform:uppercase;
    color:#000;
    margin-bottom:10px;
}

.sdg-heading h2{
    font-size:52px;
    font-family:Georgia, serif;
    font-style:italic;
    font-weight:400;
    color:#111;
}

.sdg-heading small{
    font-size:12px;
    letter-spacing:2px;
    color:#666;
    text-transform:uppercase;
}

.sdg-text{
    color: #666;
    font-size: 21px;
    line-height: 1.8;
    margin-top: 55px;
    position: relative;
    width: 100%;
    height: 165px;
}
.sdg-text p{
    position: absolute;
    bottom: 10px;
    left: 10px;
}

/* Grid */
.sdg-grid{
    margin-top:40px;
}

.sdg-card{
    position:relative;
    height:210px;
    padding:18px;
    overflow:hidden;
    transition:0.3s ease;
    cursor:pointer;
}

.sdg-card:hover{
    transform:translateY(-6px);
}

.sdg-card .top{
    font-size:14px;
    font-weight:700;
    color:#fff;
    text-transform:uppercase;
    margin-bottom:60px;
}

.sdg-card .number{
    font-size:48px;
    font-weight:900;
    color:#fff;
    line-height:1;
}

.sdg-card .title{
    font-size: 12px;
    /* font-weight: 700; */
    text-transform: uppercase;
    color: #fff;
    margin-top: 8px;
    /* max-width: 150px; */
    line-height: 1.3;
    font-family: sans-serif;
}

/* Colors */
.c1{background:#ef1740;}
.c2{background:#dba63a;}
.c3{background:#4ea534;}
.c4{background:#c41230;}
.c5{background:#ff3a24;}
.c6{background:#34add1;}
.c7{background:#f2c200;}
.c8{background:#a60f49;}
.c9{background:#ff6b22;}
.c10{background:#dd0d74;}
.c11{background:#f89d22;}
.c12{background:#c3922f;}
.c13{background:#4a8a46;}
.c14{background:#1b95d0;}
.c15{background:#55c425;}
.c16{background:#05679f;}
.c17{background:#1e4d73;}

/* Responsive */
@media(max-width:991px){

    .sdg-heading h1{
        font-size:48px;
    }

    .sdg-heading h2{
        font-size:40px;
    }

    .sdg-text{
        margin-top:20px;
    }
}

@media(max-width:576px){

    .sdg-card{
        height:175px;
    }

    .sdg-heading h1{
        font-size:38px;
    }

    .sdg-heading h2{
        font-size:32px;
    }

    .sdg-card .number{
        font-size:40px;
    }
}

/* =========================
SECTION
========================= */

.impact-section{
    position:relative;
    overflow:hidden;
    padding:110px 0 120px;
    background:
    radial-gradient(circle at center,
    #1e5d1f 0%,
    #143d16 45%,
    #0d2611 100%);
}

.impact-section1{
    position:relative;
    overflow:hidden;
    padding:110px 0 120px;
}

/* Glow */

.impact-section::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,
    rgba(90,255,90,.18) 0%,
    transparent 70%);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    pointer-events:none;
}

/* Container Width */

.impact-wrap{
    /* max-width:1150px; */
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================
TOP
========================= */

.section-tag{
    color:#88c540;
    font-size:11px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.main-title{
    color:#fff;
    font-size:65px;
    line-height:.95;
    font-weight:700;
    text-transform:uppercase;
}

.main-title span{
    display:block;
    font-family:'Cormorant Garamond', serif;
    font-style:italic;
    font-weight:400;
    text-transform:none;
    margin-top:8px;
}

.top-text{
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.6;
    max-width: 470px;
    margin-top: 35px;
}

/* =========================
NUMBERS GRID
========================= */

.stats-row{
    margin-top:70px!important;
    border-top:1px solid rgb(255 255 255 / 75%);
    border-bottom:1px solid rgb(255 255 255 / 75%);
}

.stats-row > div{
    padding:0;
}

.stat-box{
    position:relative;
    padding:35px 22px 28px;
    min-height:150px;
}

.stat-box::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:1px;
    height:100%;
    background:rgba(255,255,255,.75);
}

.stats-row > div:last-child .stat-box::after{
    display:none;
}

.stat-number{
    font-size:78px;
    line-height:1;
    color:#8cc63f;
    font-weight:600;
    margin-bottom:15px;
}

.stat-title{
    color:#e8e8e8;
    font-size:14px;
    line-height:1.6;
    letter-spacing:.5px;
    text-transform:uppercase;
    max-width:210px;
}

/* =========================
QUOTE
========================= */

.quote-area{
    margin-top:65px;
}

.quote-label{
    color:#88c540;
    font-size:11px;
    letter-spacing:5px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.quote-text{
    color:#fff;
    font-family:'Cormorant Garamond', serif;
    font-size:43px;
    line-height:1;
    font-style:italic;
    max-width:760px;
}

.quote-author{
    margin-top:25px;
    color:#bdbdbd;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .impact-section{
        padding:80px 20px;
    }

    .main-title{
        font-size:55px;
    }

    .top-text{
        margin-top:25px;
        font-size:24px;
    }

    .stats-row{
        margin-top:50px;
    }

    .stat-box{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.15);
    }

    .stat-box:last-child{
        border-bottom:none;
    }

    .quote-text{
        font-size:42px;
    }
}

@media(max-width:576px){

    .main-title{
        font-size:42px;
    }

    .top-text{
        font-size:20px;
    }

    .stat-number{
        font-size:60px;
    }

    .quote-text{
        font-size:34px;
        line-height:1.2;
    }
}

/* =========================
SECTION
========================= */

.story-section{
    padding:120px 0 80px;
    background:#ececec;
}

.story-container{
    max-width:1280px;
    margin:auto;
    padding:0 20px;
}

/* =========================
TOP LABEL
========================= */

.story-tag{
    font-size:12px;
    letter-spacing:5px;
    color:#666;
    text-transform:uppercase;
    margin-bottom:18px;
}

/* =========================
TITLE
========================= */

.story-title{
    font-size: 62px;
    line-height: .92;
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
    margin: 0;
    font-family: 'Oswald', sans-serif;
}

.story-title span{
    display:block;
    font-family:'Cormorant Garamond', serif;
    font-size:78px;
    font-style:italic;
    font-weight:400;
    text-transform:none;
    margin-top:8px;
}

/* =========================
BUTTON
========================= */

.story-btn-wrap{
    display:flex;
    justify-content:end;
    align-items:end;
    height:100%;
}

.story-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#111;
    text-decoration:none;
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;
    padding-bottom:12px;
    transition:.3s ease;
}

.story-btn::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:#111;
}

.story-btn:hover{
    color:#5e8d2d;
    text-decoration:none;
}

.story-btn i{
    font-size:16px;
}

/* =========================
LINE
========================= */

.story-line{
    width:100%;
    height:1px;
    background:#c9c9c9;
    margin-top:55px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .story-section{
        padding:90px 0 70px;
    }

    .story-title{
        font-size:68px;
    }

    .story-title span{
        font-size:58px;
    }

    .story-btn-wrap{
        justify-content:start;
        margin-top:40px;
    }
}

@media(max-width:576px){

    .story-title{
        font-size:48px;
    }

    .story-title span{
        font-size:42px;
    }

    .story-tag{
        letter-spacing:3px;
    }
}

/* =========================
SECTION
========================= */

.meet-section{
    background:#d9d6ce;
    /* padding: 80px 0; */
}

.meet-container{
    max-width:1280px;
    margin:auto;
    padding:0 20px;
}

/* =========================
LEFT
========================= */

.meet-tag{
    font-size:12px;
    letter-spacing:5px;
    text-transform:uppercase;
    color:#5c5c5c;
    margin-bottom:22px;
}

.meet-title{
    font-size:62px;
    line-height:.9;
    text-transform:uppercase;
    color:#000;
    font-weight:700;
}

.meet-title span{
    display:block;
    font-family:'Cormorant Garamond', serif;
    font-size:82px;
    font-style:italic;
    font-weight:400;
    text-transform:none;
    margin-top:14px;
}

/* =========================
RIGHT TEXT
========================= */

.meet-right{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:420px;
}

.meet-text{
    /* max-width:470px; */
    font-family:'Cormorant Garamond', serif;
    font-size:26px;
    line-height:1.5;
    color:#4a3324;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .meet-section{
        padding:90px 0;
    }

    .meet-title{
        font-size:68px;
    }

    .meet-title span{
        font-size:62px;
    }

    .meet-right{
        justify-content:flex-start;
        align-items:flex-start;
        min-height:auto;
        margin-top:60px;
    }

    .meet-text{
        font-size:28px;
    }
}

@media(max-width:576px){

    .meet-title{
        font-size:48px;
    }

    .meet-title span{
        font-size:46px;
    }

    .meet-text{
        font-size:22px;
        line-height:1.6;
    }

    .meet-tag{
        letter-spacing:3px;
    }
}
/* =========================
   WORK GALLERY SECTION
========================= */

.work-gallery-section{
    background:#f3f3f1;
    padding:90px 0 70px;
    overflow:hidden;
}

/* =========================
   TOP AREA
========================= */

.gallery-top{
    margin-bottom:55px;
}

.gallery-label{
    font-size:11px;
    letter-spacing:4px;
    color:#666;
    text-transform:uppercase;
    margin-bottom:18px;
}

.gallery-label i{
    margin-right:6px;
}

.gallery-heading h2{
    font-size:62px;
    line-height:.92;
    font-weight:800;
    letter-spacing:-3px;
    color:#000;
    margin:0;
    font-family:Arial,sans-serif;
}

.gallery-heading span{
    display:block;
    font-size:76px;
    line-height:1;
    font-style:italic;
    font-weight:400;
    margin-top:10px;
    color:#000;
    font-family:"Times New Roman",serif;
}

/* BUTTON */

.gallery-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#000;
    color:#fff !important;
    text-decoration:none !important;
    padding:16px 28px;
    margin-top:110px;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:.3s;
}

.gallery-btn:hover{
    background:#222;
}

/* =========================
   GRID
========================= */

.gallery-grid{
    margin-left:-5px;
    margin-right:-5px;
}

/* BIG IMAGES */

.gallery-big,
.gallery-tall{
    height:560px;
    overflow:hidden;
}

/* SMALL IMAGES */

.gallery-small{
    height:275px;
    overflow:hidden;
}

/* IMAGE STYLE */

.gallery-big img,
.gallery-tall img,
.gallery-small img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-big:hover img,
.gallery-tall:hover img,
.gallery-small:hover img{
    transform:scale(1.05);
}

/* BOTTOM TEXT */

.gallery-bottom-text{
    margin-top:18px;
    color:#666;
    font-size:15px;
    line-height:1.8;
    font-style:italic;
    font-family:"Times New Roman",serif;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

    .gallery-heading h2{
        font-size:70px;
    }

    .gallery-heading span{
        font-size:60px;
    }

}

@media(max-width:991px){

    .gallery-btn{
        margin-top:25px;
    }

    .gallery-big,
    .gallery-tall{
        height:420px;
        margin-bottom:10px;
    }

    .gallery-small{
        height:220px;
    }

    .gallery-heading h2{
        font-size:58px;
    }

    .gallery-heading span{
        font-size:48px;
    }

}

@media(max-width:576px){

    .work-gallery-section{
        padding:70px 0 50px;
    }

    .gallery-heading h2{
        font-size:42px;
        letter-spacing:-1px;
    }

    .gallery-heading span{
        font-size:38px;
    }

    .gallery-small{
        height:180px;
    }

    .gallery-big,
    .gallery-tall{
        height:300px;
    }

}

.newsletter-section{
      /* min-height:100vh; */
      display:flex;
      align-items:center;
      padding:80px 0;
      background:#f7f7f7;
    }

    .small-text{
      letter-spacing:4px;
      font-size:13px;
      color:#777;
      margin-bottom:25px;
      text-transform:uppercase;
    }

    .main-heading{
      font-family:'Oswald', sans-serif;
      font-size:62px;
      line-height:0.95;
      font-weight:600;
      text-transform:uppercase;
      color:#000;
    }

    .sub-heading{
      font-family:'Cormorant Garamond', serif;
      font-size:50px;
      font-style:italic;
      line-height:1;
      color:#000;
      margin-top:10px;
    }

    .subscribe-box{
      display:flex;
      width:100%;
      max-width:520px;
      margin-bottom:15px;
    }

    .subscribe-box input{
      flex:1;
      height:65px;
      border:1px solid #000;
      padding:0 20px;
      font-size:18px;
      outline:none;
      background:transparent;
    }

    .subscribe-btn{
      width:180px;
      border:none;
      background:#000;
      color:#fff;
      font-size:14px;
      letter-spacing:3px;
      text-transform:uppercase;
      transition:0.3s;
    }

    .subscribe-btn:hover{
      background:#222;
    }

    .bottom-text{
      color:#777;
      font-size:16px;
    }

    @media(max-width:992px){

      .main-heading{
        font-size:60px;
      }

      .sub-heading{
        font-size:50px;
      }

      .right-side{
        margin-top:50px;
      }
    }

    @media(max-width:576px){

      .main-heading{
        font-size:42px;
      }

      .sub-heading{
        font-size:34px;
      }

      .subscribe-box{
        flex-direction:column;
      }

      .subscribe-btn{
        width:100%;
        height:60px;
      }

      .subscribe-box input{
        width:100%;
      }
    }
    /* ================= FOOTER ================= */

    .footer-section{
      background:#000;
      padding: 80px 0;
      color:#fff;
    }

    .footer-logo img{
        width: 130px;
        margin-bottom: 40px;
        background: #fff;
        padding: 20px;
    }

    .footer-heading{
      font-family:'Oswald', sans-serif;
      font-size:36px;
      line-height:1;
      text-transform:uppercase;
      font-weight:500;
      margin-bottom:10px;
    }

    .footer-heading span{
      color:#78b833;
    }

    .footer-subtext{
      font-family:'Cormorant Garamond', serif;
      font-size:28px;
      font-style:italic;
      color:#d4d4d4;
      line-height:1.4;
      margin-bottom:35px;
      max-width:500px;
    }

    /* Subscribe */

    .subscribe-box{
      display:flex;
      width:100%;
      max-width:520px;
      /* margin-bottom:45px; */
    }

    .subscribe-box input{
      flex:1;
      height:60px;
      background:transparent;
      border:1px solid #333;
      color:#fff;
      padding:0 20px;
      outline:none;
      font-size:16px;
    }

    .subscribe-box input::placeholder{
      color:#999;
    }

    .subscribe-btn{
      width:170px;
      background:#78b833;
      border:none;
      color:#000;
      font-size:13px;
      letter-spacing:3px;
      text-transform:uppercase;
      font-weight:600;
      transition:.3s;
    }

    .subscribe-btn:hover{
      background:#8fd13f;
    }

    /* Contact */

    .footer-title{
      font-size:10px;
      letter-spacing:4px;
      color:#777;
      text-transform:uppercase;
      margin-bottom:18px;
      font-weight:600;
    }

    .footer-contact p{
      color:#d7d7d7;
      margin-bottom:12px;
      line-height:1.8;
      font-size:15px;
    }

    .footer-contact i{
      margin-right:10px;
      color:#78b833;
    }

    /* Navigation */

    .footer-nav-title{
      font-size:13px;
      letter-spacing:3px;
      color:#777;
      margin-bottom:30px;
      text-transform:uppercase;
      font-weight:600;
    }

    .footer-nav ul{
      list-style:none;
      padding:0;
    }

    .footer-nav ul li{
      margin-bottom:18px;
    }

    .footer-nav ul li a{
      color:#fff;
      text-decoration:none;
      font-family:'Oswald', sans-serif;
      text-transform:uppercase;
      font-size:16px;
      transition:.3s;
    }

    .footer-nav ul li a:hover{
      color:#78b833;
      padding-left:5px;
    }

    /* Social */

    .social-icons{
      display:flex;
      gap:15px;
      margin-top:30px;
    }

    .social-icons a{
      width:45px;
      height:45px;
      border:1px solid #444;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      text-decoration:none;
      transition:.3s;
    }

    .social-icons a:hover{
      background:#78b833;
      border-color:#78b833;
      color:#000;
    }

    /* Bottom */

    .footer-bottom{
      border-top:1px solid #222;
      margin-top:70px;
      padding-top:25px;
      text-align:center;
      color:#888;
      font-size:14px;
    }

    /* Responsive */

    @media(max-width:992px){

      .footer-heading{
        font-size:52px;
      }

      .footer-subtext{
        font-size:22px;
      }

      .footer-nav{
        margin-top:60px;
      }
    }

    @media(max-width:576px){

      .footer-heading{
        font-size:40px;
      }

      .footer-subtext{
        font-size:20px;
      }

      .subscribe-box{
        flex-direction:column;
      }

      .subscribe-btn{
        width:100%;
        height:58px;
      }

      .footer-nav ul li a{
        font-size:18px;
      }
    }

     /* ================= SECTION ================= */

    .about-section{
      padding:40px 0;
      background:#f3f3f3;
      display:flex;
      align-items:center;
    }

    .section-tag{
      font-size:13px;
      letter-spacing:5px;
      text-transform:uppercase;
      color:#777;
      margin-bottom:35px;
      font-weight:600;
    }

    .big-heading{
      font-family:'Oswald', sans-serif;
      font-size:170px;
      line-height:0.88;
      text-transform:uppercase;
      font-weight:600;
      color:#000;
      margin-bottom:20px;
    }

    .italic-text{
      font-family:'Cormorant Garamond', serif;
      font-size:110px;
      line-height:1;
      font-style:italic;
      color:#000;
    }

    .right-content{
      padding-left:60px;
      display:flex;
      align-items:flex-end;
      height:100%;
    }

    .description{
      font-family:'Cormorant Garamond', serif;
      font-size:28px;
      line-height:1.7;
      color:#5d5d5d;
      max-width:520px;
    }

    .description1{
      font-family:'Cormorant Garamond', serif;
      font-size:23px;
      color:#5d5d5d;
      margin-top: 25px;
    }

    /* ================= RESPONSIVE ================= */

    @media(max-width:1400px){

      .big-heading{
        font-size:95px;
      }

      .italic-text{
        font-size:90px;
      }
    }

    @media(max-width:1200px){

      .big-heading{
        font-size:110px;
      }

      .italic-text{
        font-size:75px;
      }

      .description{
        font-size:24px;
      }
    }

    @media(max-width:992px){

      .about-section{
        padding:80px 0;
      }

      .big-heading{
        font-size:82px;
      }

      .italic-text{
        font-size:58px;
      }

      .right-content{
        padding-left:0;
        margin-top:60px;
      }

      .description{
        max-width:100%;
      }
    }

    @media(max-width:768px){

      .big-heading{
        font-size:62px;
      }

      .italic-text{
        font-size:46px;
      }

      .description{
        font-size:20px;
        line-height:1.6;
      }
    }

    @media(max-width:576px){

      .big-heading{
        font-size:48px;
      }

      .italic-text{
        font-size:36px;
      }

      .section-tag{
        font-size:11px;
        letter-spacing:3px;
      }

      .description{
        font-size:18px;
      }
    }

.action{
        padding: 80px 0;
        width: 100%;
        height: 800px;
        position: relative;
    }

    .action img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display:block;
    }

    .action-caption{
        position: absolute;
        left: 40px;
        bottom: 92px;
        color: #fff;
        font-size: 14px;
        font-family: 'Oswald', sans-serif;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 5px;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    @media(max-width:767px){
        .action-caption{
            left:18px;
            bottom:18px;
            font-size:20px;
        }
    }

.vm-section{
    padding: 80px 0;
}

.vm-vm{
    border: 2px solid #000;
    padding: 40px;
    height: 500px;
    transition: .3s ease;
}

.vm-vm:hover{
    background: rgb(141, 192, 52);
}

.vm-vm h2{
    font-size: 48px;    
    margin-top: 40px;
    font-family: 'Cormorant Garamond', serif;
}

.vm-vm p{
    font-size: 18px;
    color: #0A0A0A;   
    margin-top: 40px;
    font-family: sans-serif;
}

.vm-vm small {
    font-size: 18px;
    color: #0A0A0A;
    letter-spacing: 3px;
}
/* ================= SECTION ================= */

    .commitment-section{
      background:#000;
      color:#fff;
      padding:110px 0 90px;
    }

    .section-label{
      color:#7dbb38;
      font-size:13px;
      letter-spacing:5px;
      text-transform:uppercase;
      margin-bottom:28px;
      font-weight:600;
    }

    /* Heading */

    .main-heading{
      /* margin-bottom:90px; */
    }

    .main-heading .solid{
      display:block;
      font-family:'Oswald', sans-serif;
      font-size:120px;
      line-height:0.9;
      text-transform:uppercase;
      font-weight:600;
      color:#fff;
    }

    .main-heading .outline{
      display:block;
      font-family:'Oswald', sans-serif;
      font-size:105px;
      line-height:0.95;
      text-transform:uppercase;
      font-weight:600;
      -webkit-text-stroke:2px #fff;
      color:transparent;
    }

    /* Card */

    .commitment-card{
      border-top:1px solid #505050;
      padding-top:35px;
      height:100%;
      transition:.3s;
    }

    .commitment-card:hover{
      transform:translateY(-8px);
    }

    .number{
      font-family:'Oswald', sans-serif;
      font-size:62px;
      color:#7dbb38;
      line-height:1;
      margin-bottom:22px;
    }

    .card-title{
      font-family:'Oswald', sans-serif;
      font-size:30px;
      line-height:1.1;
      text-transform:uppercase;
      margin-bottom:18px;
      color:#fff;
    }

    .card-text{
      color:#bcbcbc;
      font-size:20px;
      line-height:1.7;
      max-width:320px;
    }

    /* Responsive */

    @media(max-width:1400px){

      .main-heading .solid{
        font-size:95px;
      }

      .main-heading .outline{
        font-size:86px;
      }
    }

    @media(max-width:1200px){

      .main-heading .solid{
        font-size:82px;
      }

      .main-heading .outline{
        font-size:72px;
      }

      .card-title{
        font-size:24px;
      }

      .card-text{
        font-size:17px;
      }
    }

    @media(max-width:992px){

      .commitment-card{
        margin-bottom:45px;
      }

      .main-heading{
        margin-bottom:60px;
      }
    }

    @media(max-width:768px){

      .main-heading .solid{
        font-size:60px;
      }

      .main-heading .outline{
        font-size:54px;
      }

      .number{
        font-size:52px;
      }

      .card-title{
        font-size:22px;
      }

      .card-text{
        font-size:16px;
      }
    }

    @media(max-width:576px){

      .commitment-section{
        padding:80px 0 50px;
      }

      .main-heading .solid{
        font-size:44px;
      }

      .main-heading .outline{
        font-size:40px;
        -webkit-text-stroke:1px #fff;
      }

      .section-label{
        letter-spacing:3px;
        font-size:11px;
      }

      .card-title{
        font-size:20px;
      }
    }
/* ================= SECTION ================= */

    .intent-section{
      background:#d9d5cc;
      min-height:100vh;
      display:flex;
      align-items:center;
      padding:100px 0;
    }

    .left-content{
      padding-right:60px;
    }

    .section-label{
      font-size:12px;
      letter-spacing:5px;
      text-transform:uppercase;
      color:#6d6a64;
      margin-bottom:28px;
      font-weight:600;
    }

    .quote-text{
      font-family:'Cormorant Garamond', serif;
      font-size:48px;
      line-height:1.06;
      font-style:italic;
      color:#000;
      font-weight:400;
      margin-bottom:35px;
    }

    .quote-author{
      font-size:13px;
      letter-spacing:3px;
      text-transform:uppercase;
      color:#000;
      font-weight:600;
    }

    /* Image */

    .image-wrapper{
      width:100%;
      height:100%;
      display:flex;
      justify-content:flex-end;
    }

    .image-wrapper img{
      width:100%;
      max-width:560px;
      height:500px;
      object-fit:contain;
      /*border:2px solid rgba(0,0,0,0.2);*/
    }

    /* ================= RESPONSIVE ================= */

    @media(max-width:1400px){

      .quote-text{
        font-size: 43px;
        FONT-FAMILY: 'Cormorant Garamond', serif;
      }
    }

    @media(max-width:1200px){

      .quote-text{
        font-size:52px;
      }

      .image-wrapper img{
        height:620px;
      }
    }

    @media(max-width:992px){

      .intent-section{
        padding:80px 0;
      }

      .left-content{
        padding-right:0;
        margin-bottom:60px;
      }

      .quote-text{
        font-size:44px;
      }

      .image-wrapper{
        justify-content:center;
      }

      .image-wrapper img{
        max-width:100%;
        height:auto;
      }
    }

    @media(max-width:768px){

      .quote-text{
        font-size:36px;
        line-height:1.15;
      }
    }

    @media(max-width:576px){

      .intent-section{
        padding:60px 0;
      }

      .quote-text{
        font-size:28px;
      }

      .section-label{
        font-size:11px;
        letter-spacing:3px;
      }

      .quote-author{
        font-size:11px;
        line-height:1.7;
      }
    }

    .parent_institution{
        padding: 80px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .parent_institution p{
        font-size: 24px;
        font-family: 'Cormorant Garamond', serif;
    }
    .parent_institution small{
        font-size: 14px;
        color: #0A0A0A;
        letter-spacing:3px;
    }

    /* ================= PROGRAM SECTION ================= */

    .program-section{
      padding:100px 0;
    }

    .program-block{
      margin-bottom:120px;
    }

    .program-image{
      position:relative;
      overflow:visible;
    }

    .program-image img{
      width:100%;
      height:720px;
      object-fit:cover;
      transition:.4s;
    }

    .program-block:hover .program-image img{
      transform:scale(1.04);
    }

    /* Roman Number */

    .roman-box{
     position: absolute;
    left: -15px;
    bottom: 20px;
    width: 100px;
    height: 80px;
    background: #8dc63f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    color: #000;
    font-weight: 600;
    box-shadow: 8px 8px 0 #000;
    position: absolute;
    left: -30px;
    bottom: 20px;
    width: 100px;
    height: 80px;
    background: #8dc63f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #000;
    box-shadow: 8px 8px 0 #000;
    z-index: 2;
    }

    /* Content */

    .program-content{
      padding:40px 60px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      height:100%;
    }

    .program-label{
      font-size:12px;
      letter-spacing:5px;
      text-transform:uppercase;
      color:#777;
      margin-bottom:22px;
      font-weight:600;
    }

    .program-title{
      font-family:'Oswald', sans-serif;
      font-size:74px;
      line-height:0.95;
      text-transform:uppercase;
      margin-bottom:28px;
      color:#000;
    }

    .program-desc{
      font-family:'Cormorant Garamond', serif;
      font-size:20px;
      line-height:1.5;
      color:#555;
      margin-bottom:40px;
      max-width:700px;
    }

    /* SDG */

    .sdg-title{
      font-size:12px;
      letter-spacing:4px;
      text-transform:uppercase;
      color:#777;
      margin-bottom:20px;
      font-weight:600;
    }

    .sdg-tags{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:35px;
    }

    .sdg{
        padding: 3px 10px;
        color: #fff;
        font-size: 11px;
        text-transform: uppercase;
    }

    .yellow{ background:#c89a1d; }
    .green1{ background:#4d9b3f; }
    .red{ background:#d12c2c; }
    .orange{ background:#f26b1d; }
    .blue{ background:#2c5d7c; }
    .pink{ background:#e94a7d; }

    /* Button */

    .partner-btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background:#000;
      color:#fff;
      padding:9px 15px;
      text-decoration:none;
      text-transform:uppercase;
      letter-spacing:3px;
      font-size:13px;
      font-weight:600;
      transition:.3s;
      width:fit-content;
    }

    .partner-btn:hover{
      background:#8dc63f;
      color:#000;
    }

    .partner-btn-rev{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background:#8dc63f;
      color:#000;
      padding:9px 15px;
      text-decoration:none;
      text-transform:uppercase;
      letter-spacing:3px;
      font-size:13px;
      font-weight:600;
      transition:.3s;
      width:fit-content;
    }

    .partner-btn-rev:hover{
      background:#000;
      color:#fff;
    }

    /* Zig Zag */

    .reverse .row{
      flex-direction:row-reverse;
    }

    /* ================= FOOTER CTA ================= */

    .conversation-section{
      background:#000;
      color:#fff;
      padding:120px 0;
    }

    .conversation-title{
      font-family:'Oswald', sans-serif;
      font-size:110px;
      line-height:0.9;
      text-transform:uppercase;
      margin-bottom:20px;
    }

    .conversation-title span{
      color:#8dc63f;
    }

    .conversation-sub{
      font-family:'Cormorant Garamond', serif;
      font-size:34px;
      line-height:1.5;
      color:#cfcfcf;
      max-width:600px;
      margin-bottom:40px;
    }

    .subscribe-box{
      display:flex;
      max-width:550px;
    }

    .subscribe-box input{
      flex:1;
      height:65px;
      border:1px solid #333;
      background:transparent;
      color:#fff;
      padding:0 20px;
      outline:none;
    }

    .subscribe-btn{
      width:180px;
      border:none;
      background:#8dc63f;
      color:#000;
      text-transform:uppercase;
      letter-spacing:3px;
      font-size:13px;
      font-weight:700;
    }

    .footer-nav{
      /*margin-top:50px;*/
    }

    .footer-nav h5{
      font-size:12px;
      letter-spacing:4px;
      text-transform:uppercase;
      margin-bottom:20px;
      color:#777;
    }

    .footer-nav ul{
      list-style:none;
      padding:0;
    }

    .footer-nav ul li{
      margin-bottom:15px;
    }

    .footer-nav ul li a{
      color:#fff;
      text-decoration:none;
      font-family:'Oswald', sans-serif;
      font-size:26px;
      text-transform:uppercase;
    }

    .footer-nav ul li a:hover{
      color:#8dc63f;
    }

    /* ================= RESPONSIVE ================= */

    @media(max-width:1400px){

      .program-title{
        font-size:58px;
      }

      .conversation-title{
        font-size:80px;
      }
    }

    @media(max-width:992px){

      .program-image img{
        height:500px;
      }

      .program-content{
        padding:50px 0 0;
      }

      .reverse .row{
        flex-direction:column;
      }

      .program-title{
        font-size:50px;
      }

      .conversation-title{
        font-size:60px;
      }
    }

    @media(max-width:768px){

      .program-title{
        font-size:40px;
      }

      .program-desc{
        font-size:24px;
      }

      .conversation-title{
        font-size:46px;
      }

      .conversation-sub{
        font-size:24px;
      }

      .subscribe-box{
        flex-direction:column;
      }

      .subscribe-btn{
        width:100%;
        height:60px;
      }
    }

    @media(max-width:576px){

      .program-section{
        padding:60px 0;
      }

      .program-block{
        margin-bottom:80px;
      }

      .program-image img{
        height:350px;
      }

      .program-title{
        font-size:32px;
      }

      .program-desc{
        font-size:20px;
      }

      .conversation-title{
        font-size:34px;
      }
    }

/* ================= TEAM SECTION ================= */

    .team-section{
      padding:100px 0;
    }

    /* Header */

    .team-header{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      margin-bottom:35px;
      border-bottom:1px solid #cfcfcf;
      padding-bottom:18px;
    }

    .team-title{
      font-family:'Oswald', sans-serif;
      font-size:90px;
      line-height:1;
      text-transform:uppercase;
      color:#000;
      margin:0;
    }

    .team-small{
      font-size:12px;
      letter-spacing:5px;
      text-transform:uppercase;
      color:#8a6c3b;
      font-weight:600;
    }

    /* ================= CARD ================= */

    .team-card{
      margin-bottom:60px;
      transition:.4s;
    }

    .team-card:hover{
      transform:translateY(-8px);
    }

    .team-img{
      overflow:hidden;
      margin-bottom:18px;
      background:#ddd;
    }

    .team-img img{
      width:100%;
      height:420px;
      object-fit:cover;
      filter:grayscale(100%);
      transition:.4s;
    }

    .team-card:hover .team-img img{
      transform:scale(1.05);
      filter:grayscale(0%);
    }

    /* Designation */

    .team-role{
      font-size:11px;
      letter-spacing:4px;
      text-transform:uppercase;
      color:#9a7a45;
      margin-bottom:12px;
      font-weight:600;
    }

    /* Name */

    .team-name{
      font-family:'Cormorant Garamond', serif;
      font-size:40px;
      line-height:1.1;
      margin-bottom:10px;
      color:#111;
      font-weight:500;
    }

    /* Position */

    .team-position{
      font-size:18px;
      color:#444;
      line-height:1.6;
    }

    /* ================= RESPONSIVE ================= */

    @media(max-width:1400px){

      .team-title{
        font-size:70px;
      }

      .team-name{
        font-size:34px;
      }
    }

    @media(max-width:1200px){

      .team-img img{
        height:360px;
      }

      .team-title{
        font-size:60px;
      }
    }

    @media(max-width:992px){

      .team-title{
        font-size:50px;
      }

      .team-img img{
        height:420px;
      }
    }

    @media(max-width:768px){

      .team-title{
        font-size:42px;
      }

      .team-name{
        font-size:30px;
      }

      .team-position{
        font-size:16px;
      }
    }

    @media(max-width:576px){

      .team-section{
        padding:70px 0;
      }

      .team-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
      }

      .team-title{
        font-size:34px;
      }

      .team-img img{
        height:350px;
      }

      .team-name{
        font-size:26px;
      }

      .team-role{
        letter-spacing:2px;
      }
    }

    
  /* ================= DARK TEAM SECTION ================= */

  .dark-team-section{
    background:#000;
    padding:110px 0;
    overflow:hidden;
  }

  /* Header */

  .dark-team-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    border-bottom:1px solid rgba(255,255,255,0.12);
    padding-bottom:20px;
    margin-bottom:50px;
  }

  .dark-team-title{
    font-family:'Oswald', sans-serif;
    font-size:90px;
    line-height:1;
    text-transform:uppercase;
    color:#fff;
    margin:0;
  }

  .dark-team-small{
    font-size:12px;
    letter-spacing:5px;
    text-transform:uppercase;
    color:#8dc63f;
    font-weight:600;
  }

  /* Card */

  .dark-team-card{
    transition:.4s;
  }

  .dark-team-card:hover{
    transform:translateY(-10px);
  }

  /* Image */

  .dark-team-img{
    overflow:hidden;
    margin-bottom:20px;
    background:#111;
  }

  .dark-team-img img{
    width:100%;
    height:420px;
    object-fit:cover;
    filter:grayscale(100%);
    transition:.5s;
  }

  .dark-team-card:hover .dark-team-img img{
    transform:scale(1.05);
    filter:grayscale(0%);
  }

  /* Role */

  .dark-team-role{
    font-size:11px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#8dc63f;
    margin-bottom:12px;
    font-weight:600;
  }

  /* Name */

  .dark-team-name{
    font-family:'Cormorant Garamond', serif;
    font-size:40px;
    line-height:1.1;
    color:#fff;
    margin-bottom:10px;
    font-weight:500;
  }

  /* Position */

  .dark-team-position{
    color:#bdbdbd;
    font-size:18px;
    line-height:1.7;
    margin:0;
  }

  /* Hover */

  .dark-team-card:hover .dark-team-name{
    color:#8dc63f;
  }

  /* ================= RESPONSIVE ================= */

  @media(max-width:1400px){

    .dark-team-title{
      font-size:70px;
    }

    .dark-team-name{
      font-size:34px;
    }
  }

  @media(max-width:1200px){

    .dark-team-img img{
      height:360px;
    }

    .dark-team-title{
      font-size:60px;
    }
  }

  @media(max-width:992px){

    .dark-team-title{
      font-size:52px;
    }

    .dark-team-img img{
      height:420px;
    }
  }

  @media(max-width:768px){

    .dark-team-section{
      padding:80px 0;
    }

    .dark-team-header{
      flex-direction:column;
      align-items:flex-start;
      gap:15px;
    }

    .dark-team-title{
      font-size:42px;
    }

    .dark-team-name{
      font-size:30px;
    }

    .dark-team-position{
      font-size:16px;
    }
  }

  @media(max-width:576px){

    .dark-team-title{
      font-size:34px;
    }

    .dark-team-img img{
      height:350px;
    }

    .dark-team-name{
      font-size:26px;
    }

    .dark-team-role{
      letter-spacing:2px;
    }
  }

   /* ================= DARK ADVISORS SECTION ================= */

  .dark-advisors-section{
    background:#000;
    padding:120px 0;
    overflow:hidden;
  }

  /* Header */

  .dark-advisors-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    border-bottom:1px solid rgba(255,255,255,0.12);
    padding-bottom:22px;
    margin-bottom:45px;
  }

  .dark-advisors-title{
    font-family:'Oswald', sans-serif;
    font-size:90px;
    line-height:1;
    text-transform:uppercase;
    color:#fff;
    margin:0;
  }

  .dark-advisors-small{
    font-size:12px;
    letter-spacing:5px;
    text-transform:uppercase;
    color:#8dc63f;
    font-weight:600;
  }

  /* Intro */

  .dark-advisors-intro{
    font-family:'Cormorant Garamond', serif;
    font-size:34px;
    line-height:1.7;
    color:#bcbcbc;
    margin:0;
  }

  /* Card */

  .dark-advisor-card{
    height:100%;
    padding-top:25px;
    transition:.4s ease;
  }

  .dark-advisor-card:hover{
    transform:translateY(-8px);
  }

  .dark-advisor-line{
    width:100%;
    height:1px;
    background:rgba(255,255,255,0.12);
    margin-bottom:28px;
  }

  /* Name */

  .dark-advisor-name{
    font-family:'Cormorant Garamond', serif;
    font-size:38px;
    line-height:1.2;
    color:#fff;
    margin-bottom:14px;
    transition:.3s;
  }

  /* Role */

  .dark-advisor-role{
    color:#bcbcbc;
    font-size:17px;
    line-height:1.9;
    margin:0;
  }

  /* Hover */

  .dark-advisor-card:hover .dark-advisor-name{
    color:#8dc63f;
  }

  /* ================= RESPONSIVE ================= */

  @media(max-width:1400px){

    .dark-advisors-title{
      font-size:72px;
    }

    .dark-advisor-name{
      font-size:32px;
    }
  }

  @media(max-width:1200px){

    .dark-advisors-intro{
      font-size:28px;
    }

    .dark-advisor-name{
      font-size:28px;
    }
  }

  @media(max-width:992px){

    .dark-advisors-title{
      font-size:54px;
    }

    .dark-advisors-intro{
      font-size:24px;
    }
  }

  @media(max-width:768px){

    .dark-advisors-section{
      padding:80px 0;
    }

    .dark-advisors-header{
      flex-direction:column;
      align-items:flex-start;
      gap:15px;
    }

    .dark-advisors-title{
      font-size:42px;
    }

    .dark-advisors-intro{
      font-size:21px;
    }

    .dark-advisor-name{
      font-size:24px;
    }

    .dark-advisor-role{
      font-size:15px;
    }
  }

  @media(max-width:576px){

    .dark-advisors-title{
      font-size:34px;
    }

    .dark-advisors-small{
      letter-spacing:3px;
      font-size:11px;
    }

    .dark-advisors-intro{
      font-size:19px;
    }
  }
.dark-advisors-section{
  background:#000;
  padding:120px 0;
  overflow:hidden;
}

/* Header */

.dark-advisors-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  border-bottom:1px solid rgba(255,255,255,0.12);
  padding-bottom:22px;
  margin-bottom:45px;
}

.dark-advisors-title{
  font-family:'Oswald', sans-serif;
  font-size:90px;
  line-height:1;
  text-transform:uppercase;
  color:#fff;
  margin:0;
}

.dark-advisors-small{
  font-size:12px;
  letter-spacing:5px;
  text-transform:uppercase;
  color:#8dc63f;
  font-weight:600;
}

/* Intro */

.dark-advisors-intro{
  font-family:'Cormorant Garamond', serif;
  font-size:34px;
  line-height:1.7;
  color:#bcbcbc;
  margin:0;
}

/* Card */

.dark-advisor-card{
  transition:.4s ease;
}

.dark-advisor-card:hover{
  transform:translateY(-10px);
}

/* Image */

.dark-advisor-img{
  overflow:hidden;
  margin-bottom:20px;
  background:#111;
}

.dark-advisor-img img{
  width:100%;
  height:420px;
  object-fit:cover;
  filter:grayscale(100%);
  transition:.5s;
}

.dark-advisor-card:hover .dark-advisor-img img{
  transform:scale(1.05);
  filter:grayscale(0%);
}

/* Line */

.dark-advisor-line{
  width:100%;
  height:1px;
  background:rgba(255,255,255,0.12);
  margin-bottom:25px;
}

/* Name */

.dark-advisor-name{
  font-family:'Cormorant Garamond', serif;
  font-size:34px;
  line-height:1.2;
  color:#fff;
  margin-bottom:14px;
  transition:.3s;
}

/* Role */

.dark-advisor-role{
  color:#bcbcbc;
  font-size:17px;
  line-height:1.8;
  margin:0;
}

/* Hover */

.dark-advisor-card:hover .dark-advisor-name{
  color:#8dc63f;
}

/* Responsive */

@media(max-width:1400px){

  .dark-advisors-title{
    font-size:70px;
  }

  .dark-advisor-name{
    font-size:30px;
  }
}

@media(max-width:1200px){

  .dark-advisors-intro{
    font-size:28px;
  }

  .dark-advisor-img img{
    height:360px;
  }
}

@media(max-width:992px){

  .dark-advisors-title{
    font-size:54px;
  }

  .dark-advisor-img img{
    height:420px;
  }
}

@media(max-width:768px){

  .dark-advisors-section{
    padding:80px 0;
  }

  .dark-advisors-header{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }

  .dark-advisors-title{
    font-size:42px;
  }

  .dark-advisors-intro{
    font-size:22px;
  }

  .dark-advisor-name{
    font-size:24px;
  }

  .dark-advisor-role{
    font-size:15px;
  }
}

@media(max-width:576px){

  .dark-advisors-title{
    font-size:34px;
  }

  .dark-advisors-small{
    letter-spacing:3px;
    font-size:11px;
  }

  .dark-advisors-intro{
    font-size:19px;
  }

  .dark-advisor-img img{
    height:320px;
  }
}

.parent_institution span {
    font-weight: bold;
    font-size: 49px;
    font-family: 'Cormorant Garamond', serif;
    width: 900px;
    text-align: center;
    line-height: 1;
    margin: 25px 0;
}

.field-notes-page{
    --bg:#f4f4f4;
    --text:#111;
    --green:#8bc34a;

    background:var(--bg);
    padding:40px 0;
    overflow:hidden;
}

.field-notes-page *{
    box-sizing:border-box;
}

/* =========================
   HERO
========================= */

.field-notes-page .small-heading{
    font-size:11px;
    letter-spacing:5px;
    text-transform:uppercase;
    color:#444;
    margin-bottom:18px;
    font-family:Arial, sans-serif;
}

.field-notes-page .big-title{
    font-family:'Oswald', sans-serif;
    font-size:95px;
    line-height:.9;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:30px;
    color:#000;
}

.field-notes-page .script-title{
    font-family:'Cormorant Garamond', serif;
    font-size:95px;
    line-height:1;
    font-style:italic;
    font-weight:400;
    margin-bottom:35px;
    color:#000;
}

.field-notes-page .hero-text{
    max-width:720px;
    font-family:'Cormorant Garamond', serif;
    font-size:22px;
    line-height:1.6;
    color:#444;
    margin-bottom:45px;
}

/* =========================
   FILTER BUTTONS
========================= */

.field-notes-page .filter-wrapper{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:70px;
}

.involve-image{
  width: 100%;
    height: 400px;
}
.involve-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.engage-section{
    background:#f3f3f3;
    /* padding:90px 0; */
    padding-bottom: 80px;
    overflow:hidden;

    --green:#8bc34a;
    --black:#050505;
    --text:#222;
    --muted:#666;
}

.engage-section *{
    box-sizing:border-box;
}

/* =========================
   LEFT CONTENT
========================= */

.engage-section .small-heading{
    font-size:11px;
    letter-spacing:5px;
    text-transform:uppercase;
    color:#555;
    margin-bottom:18px;
    font-family:Arial, sans-serif;
}

.engage-section .main-title{
    font-family:'Oswald', sans-serif;
    font-size:60px;
    line-height:.95;
    text-transform:uppercase;
    margin-bottom:10px;
    color:#000;
}

.engage-section .script-title{
    font-family:'Cormorant Garamond', serif;
    font-size:60px;
    font-style:italic;
    line-height:1;
    margin-bottom:55px;
    color:#000;
}

.engage-section .engage-item{
    display:flex;
    gap:14px;
    margin-bottom:20px;
}

.engage-section .engage-line{
    width:3px;
    min-width:3px;
    background:var(--green);
}

.engage-section .engage-content h4{
    font-family:'Oswald', sans-serif;
    font-size:18px;
    text-transform:uppercase;
    margin-bottom:8px;
    color:#000;
}

.engage-section .engage-content p{
    font-family:'Cormorant Garamond', serif;
    font-size:14px;
    line-height:1.5;
    color:#555;
    margin:0;
}

/* =========================
   FORM BOX
========================= */

.engage-section .form-box{
    background:#000;
    padding:60px;
    height:100%;
}

.engage-section .form-small{
    color:var(--green);
    font-size:11px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;
    font-family:Arial, sans-serif;
}

.engage-section .form-title{
    font-family:'Oswald', sans-serif;
    font-size:62px;
    line-height:.95;
    text-transform:uppercase;
    color:#fff;
    margin-bottom:50px;
}

.engage-section .custom-group{
    margin-bottom:35px;
}

.engage-section label{
    display:block;
    color:#8c8c8c;
    font-size:10px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
    font-family:Arial, sans-serif;
}

.engage-section .form-control,
.engage-section .form-select,
.engage-section textarea{
    background:transparent;
    border:none;
    border-bottom:1px solid #444;
    border-radius:0;
    padding:0 0 14px;
    color:#fff;
    font-size:16px;
    box-shadow:none !important;
}

.engage-section .form-control:focus,
.engage-section .form-select:focus,
.engage-section textarea:focus{
    border-color:var(--green);
    background:transparent;
    color:#fff;
}

.engage-section .form-select{
    background-color:transparent;
}

.engage-section textarea{
    resize:none;
    min-height:100px;
}

.engage-section .submit-btn{
    background:var(--green);
    border:none;
    padding:16px 34px;
    color:#000;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    transition:.3s;
    font-weight:600;
}

.engage-section .submit-btn:hover{
    background:#9fd35c;
    transform:translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .engage-section{
        padding:70px 0;
    }

    .engage-section .left-side{
        margin-bottom:50px;
    }

    .engage-section .main-title{
        font-size:54px;
    }

    .engage-section .script-title{
        font-size:58px;
    }

    .engage-section .form-title{
        font-size:48px;
    }

    .engage-section .form-box{
        padding:40px;
    }
}

@media(max-width:576px){

    .engage-section{
        padding:50px 0;
    }

    .engage-section .main-title{
        font-size:42px;
    }

    .engage-section .script-title{
        font-size:46px;
    }

    .engage-section .form-title{
        font-size:38px;
    }

    .engage-section .engage-content h4{
        font-size:20px;
    }

    .engage-section .engage-content p{
        font-size:18px;
    }

    .engage-section .form-box{
        padding:28px;
    }
}

.event-section{
    padding: 70px 0;
    background: #f5f7fa;
}

.event-card{
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.event-card:hover{
    transform: translateY(-5px);
}

.event-image img{
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.event-content{
    padding: 30px;
}

.event-title{
    font-size: 20px;
    font-weight: 700;
    color: #7da33d;
    margin-bottom: 20px;
    line-height: 1.4;
}

.event-details{
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.event-details p{
    margin-bottom: 10px;
}

.event-details strong{
    color: #222;
}

.btn-area{
    margin-top: 30px;
}

.btn-register{
    background: #000;
    color: #fff;
    padding: 12px 30px;
    /*font-weight: 600;*/
    border-radius: 6px;
}

.btn-register:hover{
    background: #7da33d;
    color: #fff;
}

.btn-download{
   /*background: #198754; */
    color: #000;
    padding: 12px 30px;
    /*font-weight: 600;*/
    border-radius: 6px;
    border: 2px solid #000;
}

.btn-download:hover{
    background: #000;
    color: #fff;
}

@media(max-width:768px){
    .event-title{
        font-size: 24px;
    }

    .event-image img{
        height: 250px;
    }

    .btn-area{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.event-card{
    position: relative;
    overflow: hidden;
}

.upcoming-badge {
    position: absolute;
    top: 20px;
    right: 0px;
    background: #dc3545;
    color: #fff;
    padding: 8px 40px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    /* transform: rotate(2deg); */
    z-index: 99;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}


story-detail-page{
  background:#f4f4f4;
  padding:30px 0 70px;
}

.story-hero{
    position: relative;
    height: 700px;
    overflow-y: auto;
    border-radius: 22px;
    margin-bottom: 45px;
    background: #ddd;
}

.story-hero-image{
  position:absolute;
  inset:0;
}

.story-hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.02);
}

.story-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgb(139 170 46) 0%, rgb(142 169 62 / 48%) 55%, rgb(203 210 181) 100%);
}

.story-hero-content{
  position:absolute;
  left:40px;
  right:40px;
  bottom:40px;
  color:#fff;
}

.story-meta-top{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.story-badge{
  background:rgba(255,255,255,0.16);
  border:1px solid rgba(255,255,255,0.25);
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:4px;
  text-transform:uppercase;
}

.story-meta{
  font-size:13px;
  letter-spacing:2px;
  opacity:0.95;
  text-transform:uppercase;
}

.story-title{
  font-family:'Cormorant Garamond', serif;
  font-size:54px;
  line-height:1.05;
  margin:0 0 18px;
  font-weight:400;
}

.story-lead{
  font-size:20px;
  line-height:1.8;
  color:rgba(255,255,255,0.92);
  max-width:720px;
  margin:0 0 20px;
  font-family:'Cormorant Garamond', serif;
}

.story-author{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.22);
  font-size:14px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.92);
}

.story-author i{
  color:#8bc34a;
}

.story-content-row{
  align-items:flex-start;
}

.story-article{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  padding:30px;
  margin-bottom:18px;
}

.story-section-title{
  font-family:'Oswald', sans-serif;
  font-size:28px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:#111;
  margin:0 0 14px;
}

.story-paragraph{
  margin:0;
  font-family:'Cormorant Garamond', serif;
  font-size:20px;
  line-height:1.85;
  color:#555;
}

.story-cta{
  background:#000;
  color:#fff;
  border-radius:18px;
  padding:26px 26px;
  margin-top:16px;
}

.story-cta-line{
  width:70px;
  height:3px;
  background:#8bc34a;
  margin-bottom:14px;
}

.story-cta-title{
  font-family:'Oswald', sans-serif;
  letter-spacing:2px;
  text-transform:uppercase;
  margin:0 0 12px;
  font-size:22px;
}

.story-cta-text{
  margin:0 0 18px;
  font-family:'Cormorant Garamond', serif;
  font-size:18px;
  line-height:1.8;
  color:rgba(255,255,255,0.9);
}

.story-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:1px solid rgba(255,255,255,0.3);
  color:#fff;
  padding:12px 18px;
  border-radius:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:12px;
}

.story-cta-btn:hover{
  background:#8bc34a;
  border-color:#8bc34a;
  color:#000;
}

.story-sidebar{
  position:sticky;
  top:110px;
}

.sidebar-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  padding:22px;
  margin-bottom:18px;
}

.sidebar-label{
  font-size:11px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#777;
  margin-bottom:14px;
  font-weight:700;
}

.sidebar-item{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
  border-top:1px dashed rgba(0,0,0,0.08);
}

.sidebar-item:first-of-type{
  border-top:none;
  padding-top:0;
}

.sidebar-key{
  color:#777;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
}

.sidebar-value{
  color:#111;
  font-family:'Cormorant Garamond', serif;
  font-size:18px;
  text-align:right;
}

.sidebar-related .related-link{
  display:block;
  text-decoration:none;
  color:#111;
  padding:14px 0;
  border-top:1px dashed rgba(0,0,0,0.1);
}

.sidebar-related .related-link:first-of-type{
  border-top:none;
  padding-top:0;
}

.related-title{
  font-family:'Cormorant Garamond', serif;
  font-size:18px;
  line-height:1.3;
  margin-bottom:6px;
}

.related-tag{
  font-size:11px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#7a7a7a;
}

.sidebar-related .sidebar-back{
  display:inline-flex;
  text-decoration:none;
  color:#111;
  margin-top:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:12px;
}

.sidebar-related .sidebar-back:hover{
  color:#8bc34a;
}

.story-404{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  padding:30px;
}

.story-404 .story-title{
  font-size:42px;
  margin-bottom:14px;
  color:#111;
}

.story-404 .story-lead{
  color:#555;
  max-width:650px;
  margin-bottom:18px;
}

.story-back-btn{
  display:inline-flex;
  text-decoration:none;
  color:#111;
  border:1px solid rgba(0,0,0,0.2);
  padding:12px 16px;
  border-radius:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:12px;
}

.story-back-btn:hover{
  background:#111;
  color:#fff;
  border-color:#111;
}

@media(max-width:991px){
  .story-hero{height:470px;}
  .story-hero-content{left:26px; right:26px; bottom:26px;}
  .story-title{font-size:44px;}
  .story-paragraph{font-size:18px;}
  .story-sidebar{position:static; top:auto; margin-top:20px;}
}

/*.eco-dropdown{*/
/*    position: relative!important;*/
/*    top: -3px!important;*/
/*}*/

