:root {
    --primary: #0d225a;
    --white: #fff;
    /* --dark: #e4e4e4; */
    --black: #000;
    --gray: gray;
    --light: #f8f8f8;
    --font-family: "Sora", sans-serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
    font-family: var(--font-family);
}
h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
    font-family: var(--font-family);
}
h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
    font-family: var(--font-family);
}
body {
    font-family: var(--font-family);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden !important;
}
p{
   text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-break: break-all;
}
a {
    text-decoration: none;
}
.bg-brown {
    background-color: var(--primary);
}
.border_white {
    border-bottom: 1px solid var(--white);
}
.common_border {
    border: 2px solid var(--primary) !important;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background-color: var(--primary);
    color: var(--white);
}
.back-to-top:hover {
    color: var(--white);
}
.common_text {
    color: var(--primary) !important;
    /* text-align: center; */
}
/*** Navbar ***/
.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--primary) !;
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: capitalize;
    outline: none;
    font-size: 15px !important;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}
@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
    .navbar .navbar-nav {
        border-top: 1px solid var(--white);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .volunteer {
        width: 100% !important;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
@media (min-width:320px) {
     .event-gallery-item img {
        object-fit: contain !important;
    }
}
@media (max-width:320px) {
    .ourlatest_news_card {
        padding: 0px !important;
    }

    .volunteer {
        width: 100% !important;
    }

    .events_all .event {
        width: 100% !important;
        overflow-y: hidden;
    }
    .news .news_img{
        width: 100% !important;
    }

}

.navbar-light .navbar-toggler {
    border-color: transparent !important;
}

/*** social media iconsButton ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: var(--white);
    ;
}

.btn-square {
    width: 38px;
    height: 38px;

}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    border: 2px solid var(--white);
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-body:hover {
    color: var(--primary);
    background: var(--white);
    border-color: var(--primary);
}

.bg-light {
    background-color: #efefef !important;
}

/* *********btn socialmedia********* */
/* ***********button effect********* */

.common {
    overflow: hidden;
    position: relative;
    z-index: 0;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1em;
    min-width: 15ch;
    padding: 0.7em 1.15em;
    border-radius: 2em;
    transition: opacity 0.3s cubic-bezier(0.2, 0, 0.1, 1), transform 0.3s cubic-bezier(0.2, 0, 0.1, 1), box-shadow 0.5s ease, color 0.5s ease, background 0.5s ease;
    will-change: box-shadow, color, transform, opacity, background;
    background: var(--primary);
    border: 2px solid var(--white);
}

.common:hover {
    color: var(--white) !important;
}

.common.outlined {
    display: inline-flex;
    background: none;
    color: var(--white);
}

.common:after,
.common:before {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 0;
    right: -50%;
    left: -50%;
    height: 0;
    padding-bottom: 200%;
    border-radius: 39%;
    border: unset;
    transition: transform 0s cubic-bezier(0.2, 0, 0.1, 1) 0.5s, opacity 0.5s cubic-bezier(0.2, 0, 0.1, 1);
    opacity: 0;
}

.common:before {
    transform: translate3d(-10%, 4.8em, 0) rotate(330deg);
    background: linear-gradient(25deg, var(--primary), #86281c);
}

.common:after {
    transform: translate3d(10%, 4.8em, 0) rotate(0deg);
    background: linear-gradient(70deg, var(--primary), #86281c);
}

.common:hover,
.common:focus {
    transition: opacity 0.3s cubic-bezier(0.2, 0, 0.1, 1), transform 0.3s cubic-bezier(0.2, 0, 0.1, 1), box-shadow 2s ease, color 1.5s ease, background 1s ease 0.75s;
    background: var(--primary);
    /* box-shadow: inset 0 0 0 0.1em var(--primary), 0 0 1.75em  #86281c; */
}

.common:hover.outlined,
.common:focus.outlined {
    color: var(--white);
}

.common:hover:before,
.common:hover:after,
.common:focus:before,
.common:focus:after {
    transition: transform 2s ease 0s, opacity 0.2s ease;
    opacity: 1;
}

.common:hover:before,
.common:focus:before {
    transform: translate3d(-10%, -1em, 0) rotate(100deg);
}

.common:hover:after,
.common:focus:after {
    transform: translate3d(10%, -1em, 0) rotate(180deg);
}

/* *****common_white_btn******** */
.common_white_btn {
    overflow: hidden;
    position: relative;
    z-index: 0;
    text-decoration: none;
    color: var(--primary) !important;
    ;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1em;
    min-width: 15ch;
    padding: 0.7em 1.15em;
    border-radius: 2em;
    transition: opacity 0.3s cubic-bezier(0.2, 0, 0.1, 1), transform 0.3s cubic-bezier(0.2, 0, 0.1, 1), box-shadow 0.5s ease, color 0.5s ease, background 0.5s ease;
    will-change: box-shadow, color, transform, opacity, background;
    background: var(--white) !important;
    border: 2px solid var(--primary);
}

.common_white_btn:hover {
    color: var(--white) !important;
}

.common_white_btn.outlined {
    display: inline-flex;
    background: none;
    color: var(--white);
}

.common_white_btn:after,
.common_white_btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 0;
    right: -50%;
    left: -50%;
    height: 0;
    padding-bottom: 200%;
    border-radius: 39%;
    border: unset;
    transition: transform 0s cubic-bezier(0.2, 0, 0.1, 1) 0.5s, opacity 0.5s cubic-bezier(0.2, 0, 0.1, 1);
    opacity: 0;
}

.common_white_btn:before {
    transform: translate3d(-10%, 4.8em, 0) rotate(330deg);
    background: linear-gradient(25deg, var(--primary), #86281c);
}

.common_white_btn:after {
    transform: translate3d(10%, 4.8em, 0) rotate(0deg);
    background: linear-gradient(70deg, var(--primary), #86281c);
}

.common_white_btn:hover,
.common_white_btn:focus {
    transition: opacity 0.3s cubic-bezier(0.2, 0, 0.1, 1), transform 0.3s cubic-bezier(0.2, 0, 0.1, 1), box-shadow 2s ease, color 1.5s ease, background 1s ease 0.75s;
    background: var(--primary);
    /* box-shadow: inset 0 0 0 0.1em var(--primary), 0 0 1.75em  #86281c; */
}

.common_white_btn:hover.outlined,
.common_white_btn:focus.outlined {
    color: var(--white);
}

.common_white_btn:hover:before,
.common_white_btn:hover:after,
.common_white_btn:focus:before,
.common_white_btn:focus:after {
    transition: transform 2s ease 0s, opacity 0.2s ease;
    opacity: 1;
}

.common_white_btn:hover:before,
.common_white_btn:focus:before {
    transform: translate3d(-10%, -1em, 0) rotate(100deg);
}

.common_white_btn:hover:after,
.common_white_btn:focus:after {
    transform: translate3d(10%, -1em, 0) rotate(180deg);
}


/* ***********button effect********* */
/* *******who we are *********** */
.sss-about-section {
    position: relative;
    overflow: hidden;
    background: #f8f7f1;
}


/* Subtitle */

.sss-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #194826;
    position: relative;
    padding-left: 42px;
}

.sss-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #194826;
    transform: translateY(-50%);
}


/* Main Heading */

.sss-title {
    /* font-size: clamp(36px, 4vw, 58px); */
    line-height: 1.12;
    font-weight: 700;
    color: #18351f;
    margin-bottom: 20px;
}

.sss-title span {
    color: #194826;
    display: block;
}


/* Divider */

.sss-divider {
    width: 65px;
    height: 4px;
    background: #194826;
    border-radius: 10px;
    margin-bottom: 25px;
}


/* Paragraph */

.sss-intro {
    font-size: 16px;
    line-height: 1.75;
    color: #34453a;
    margin-bottom: 12px;
}

.sss-text {
    font-size: 16px;
    line-height: 1.8;
    color: #66736a;
}


/* =====================================
   Value Cards
===================================== */

.sss-value-card {
    height: 100%;
    padding: 22px 18px;
    background: #ffffff;
    border: 1px solid rgba(25, 72, 38, 0.08);
    border-radius: 14px;
    transition: all 0.35s ease;
}

.sss-value-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(25, 72, 38, 0.12);
    border-color: rgba(25, 72, 38, 0.2);
}


.sss-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e9f2e9;
    color: #194826;
    font-size: 20px;
    margin-bottom: 16px;
}


.sss-value-card h5 {
    font-size: 19px;
    font-weight: 700;
    color: #194826;
    margin-bottom: 8px;
}


.sss-value-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #727c75;
    margin: 0;
}


/* =====================================
   Right Story Box
===================================== */

.sss-story-box {
    position: relative;
    min-height: 469px;
    padding: 37px;
    overflow: hidden;
    background: #194826;
    display: flex;
    align-items: center;
}


/* Decorative Shapes */

.sss-story-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape-one {
    width: 280px;
    height: 280px;
    right: -100px;
    top: -90px;
    border: 45px solid rgba(255,255,255,0.07);
}

.shape-two {
    width: 220px;
    height: 220px;
    left: -110px;
    bottom: -100px;
    border: 35px solid rgba(255,255,255,0.06);
}


/* Story Content */

.sss-story-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
}


.sss-story-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c9e1c9;
}


.sss-story-content h3 {
    /* font-size: clamp(30px, 3vw, 44px); */
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    margin: 15px 0 22px;
}


.sss-story-content p {
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}
/* =====================================
   Responsive
===================================== */

@media (max-width: 991px) {

    .sss-title {
        font-size: 42px;
    }

    .sss-story-box {
        min-height: auto;
        padding: 45px 35px;
    }

}


@media (max-width: 767px) {

    .sss-about-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .sss-title {
        font-size: 36px;
    }

    .sss-intro {
        font-size: 17px;
    }

    .sss-story-box {
        padding: 40px 25px;
        border-radius: 22px;
    }

    .sss-story-content h3 {
        font-size: 30px;
    }

}

/* *********who we are*********** */
/* ***********donate now button blinking************* */
.blinking {
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}
.donate_button {
    background-color: #349dd5;
    color: var(--white);
    /* border-radius: 5%; */
    color: var(--white);
    border-radius: 6px;
}
.donate_button:hover {
    color: var(--white);
}

/* ***********donate now button blinking************* */
/* **********our story***********/
.premium-story-section {
    position: relative;
    overflow: hidden;
    /* padding: 110px 0; */
    background:
        linear-gradient(135deg, #f7faf5 0%, #ffffff 55%, #f5f8f1 100%);
}


/* ==========================================
   BACKGROUND SHAPES
========================================== */

.story-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape-1 {
    width: 500px;
    height: 500px;
    right: -250px;
    top: -180px;
    background: rgba(23, 101, 54, .035);
}

.shape-2 {
    width: 300px;
    height: 300px;
    left: -170px;
    bottom: -130px;
    background: rgba(225, 154, 0, .05);
}


/* ==========================================
   TOP HEADING
========================================== */
.top_header{
    height: 10vh;
}
.premium-story-label span {
    width: 32px;
    height: 2px;
    background:#e65c1e;
}
.premium-story-heading span {
    display: block;
    color:#e65c1e;
}
.premium-story-intro {
    max-width: 730px;
    margin: auto;
    font-size: 16px;
    line-height: 1.9;
}
/* ==========================================
   MAIN STORY
========================================== */

.story-main-area {
    position: relative;
    z-index: 2;
    margin-top: 70px;
    border-radius: 35px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(24, 60, 36, .09);
}


/* ==========================================
   LEFT VISUAL
========================================== */

.story-visual-wrapper {
    position: relative;
    min-height: 570px;
    height: 100%;
    padding: 40px;
}

.story-visual {
    position: relative;
    height: 490px;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            rgba(16, 70, 37, .95),
            rgba(34, 119, 66, .85)
        );
}


/* Organic Shape */

.story-visual::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    left: -120px;
    bottom: -160px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}

.story-visual::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
}


/* Visual Content */

.story-visual-content {
    position: absolute;
    z-index: 3;
    left: 45px;
    bottom: 45px;
    right: 35px;
}

.story-heart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    border-radius: 18px;
    background: #f4b400;
    color: #153b24;
    font-size: 23px;
}

.story-visual-content > span {
    color: rgba(255,255,255,.65);
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
}

.story-visual-content h3 {
    margin-top: 12px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.story-visual-content h3 strong {
    color: #f4b400;
}


/* ==========================================
   FLOATING CARD
========================================== */

.impact-floating-card {
    position: absolute;
    z-index: 5;
    right: 5px;
    top: 80px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 17px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    animation: floatingCard 3s ease-in-out infinite;
}

.impact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #fff3cd;
    color:#e65c1e;
}

.impact-floating-card strong {
    display: block;
    color: #153b24;
    font-size: 12px;
}

.impact-floating-card small {
    display: block;
    margin-top: 3px;
    color: #89918b;
    font-size: 9px;
}

@keyframes floatingCard {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* ==========================================
   DOT PATTERN
========================================== */

.visual-dots {
    position: absolute;
    z-index: 1;
    top: 30px;
    left: 30px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(
        rgba(255,255,255,.4) 1.5px,
        transparent 1.5px
    );
    background-size: 14px 14px;
    opacity: .45;
}


/* ==========================================
   RIGHT CONTENT
========================================== */

.story-content-area {
    position: relative;
    padding: 65px 65px 65px 35px;
}

.content-number {
    position: absolute;
    top: 25px;
    right: 35px;
    color: rgba(21,59,36,.05);
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
}

.content-tag {
    display: inline-block;
    margin-bottom: 17px;
    color:#194826;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 800;
}

.story-content-area h3 {
    max-width: 550px;
    margin-bottom: 25px;
    color: #194826;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 750;
}

.story-content-area h3 span {
    color:#194826;
}


/* ==========================================
   QUOTE
========================================== */

.story-quote {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    margin-bottom: 25px;
    border-radius: 17px;
    background: #f4f8f2;
    border-left: 4px solid #176536;
}

.quote-mark {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: #176536;
    color: #ffffff;
    font-size: 22px;
}

.story-quote p {
    margin: 0;
    color: #314d3b;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
}


/* ==========================================
   PARAGRAPHS
========================================== */
.story-paragraph {
    margin-bottom: 17px;
    font-size: 14px;
    line-height: 1.9;
}
.story-paragraph strong {
    color: #176536;
}
/* ==========================================
   IMPACT STRIP
========================================== */

.story-impact-strip {
    position: relative;
    z-index: 3;
    padding: 35px 40px;
    margin-top: 25px;
    border-radius: 25px;
    background: #153b24;
    color: #ffffff;
}

.impact-intro span {
    color: #f4b400;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
}

.impact-intro h4 {
    max-width: 300px;
    margin: 7px 0 0;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}


/* Impact Items */

.impact-items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.impact-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    color: #f4b400;
    font-size: 25px;
    font-weight: 800;
}

.impact-item strong {
    display: block;
    font-size: 12px;
}

.impact-item small {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.55);
    font-size: 9px;
}
.impact-arrow {
    color: #f4b400;
    font-size: 17px;
}
/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1200px) {
    .premium-story-section {
        /* padding: 130px 0; */
        padding: 13px 0;

    }
    .story-main-area {
        margin-top: 80px;
    }
}
/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .premium-story-section {
        padding: 80px 0;
    }

    /* .premium-story-heading {
        font-size: 42px;
    } */

    .story-main-area {
        margin-top: 55px;
    }

    .story-visual-wrapper {
        min-height: auto;
        padding: 30px;
    }

    .story-visual {
        height: 450px;
    }

    .story-content-area {
        padding: 45px 35px 50px;
    }

    .impact-items {
        justify-content: flex-start;
        margin-top: 25px;
    }

}
/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
    .premium-story-section {
        padding: 60px 0;
    }
    .premium-story-intro {
        font-size: 14px;
    }
    .story-main-area {
        margin-top: 40px;
        border-radius: 25px;
    }
    .story-visual-wrapper {
        padding: 18px;
    }
    .story-visual {
        height: 400px;
        border-radius: 22px;
    }
    .story-visual-content {
        left: 28px;
        bottom: 30px;
    }
    .story-visual-content h3 {
        font-size: 30px;
    }
    .impact-floating-card {
        right: 0;
        top: 50px;
    }
    .story-content-area {
        padding: 40px 22px;
    }
    .story-content-area h3 {
        font-size: 30px;
    }
    .content-number {
        right: 20px;
        top: 20px;
        font-size: 75px;
    }
    .story-quote {
        padding: 18px;
    }
    .story-quote p {
        font-size: 14px;
    }
    .story-paragraph {
        font-size: 13px;
    }
    .story-impact-strip {
        padding: 28px 22px;
        border-radius: 20px;
    }
    .impact-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .impact-arrow {
        display: none;
    }

}
/* **********our approach************* */
.impact-blocks {
  background: #fff;
}

.impact-mini {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #71925e;
}

.impact-blocks h2 {
  font-size: clamp(35px, 5vw, 0px);
  color: #194826;
  line-height: 1.05;
  margin-top: 12px;
}

.impact-blocks h2 strong {
  font-weight: 700;
  color: #194826;
}

.impact-blocks .row p {
  /* color: #fff; */
  line-height: 1.8;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #dce3db;
  border-left: 1px solid #dce3db;
}

.impact-box {
  min-height: 250px;
  padding: 30px 24px;
  border-right: 1px solid #dce3db;
  border-bottom: 1px solid #dce3db;
  transition: .35s ease;
}

.impact-box span {
  font-size: 40px;
  color: #78986a;
  font-weight: 700;
}

.impact-box h3 {
  margin-top: 37px;
  color: #193c27;
  font-size: 22px;
}

.impact-box p {
  color: #737b75;
  font-size: 13px;
  line-height: 1.7;
}

.impact-box:hover {
  background: #193c27;
  transform: translateY(-8px);
}

.impact-box:hover h3,
.impact-box:hover p,
.impact-box:hover span {
  color: #fff;
}

@media(max-width: 991px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 575px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-box {
    min-height: 230px;
  }

  .impact-box h3 {
    margin-top: 50px;
  }
}
/* ***********our approach************* */

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {
    .story-visual {
        height: 360px;
    }
    .story-visual-content h3 {
        font-size: 27px;
    }
    .story-heart {
        width: 50px;
        height: 50px;
    }
    .impact-floating-card {
        padding: 10px 12px;
    }
    .impact-icon {
        width: 36px;
        height: 36px;
    }
    .impact-floating-card strong {
        font-size: 10px;
    }
    .story-content-area h3 {
        font-size: 27px;
    }
    .story-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .story-primary-btn,
    .story-secondary-btn {
        justify-content: center;
        text-align: center;
    }
}
/* *********our story************/
/* *********our value**********/
.pillars-section {
    padding: 110px 0;
    background: #153b24;
}

.pillars-heading {
    margin-bottom: 65px;
}

.pillars-heading span {
    color: #f4b400;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.pillars-heading h2 {
    margin-top: 15px;
    color: #fff;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
}

.pillars-heading strong {
    color: #f4b400;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.15);
}

.pillar {
    display: grid;
    grid-template-columns: 50px 55px 1fr;
    align-items: center;
    gap: 18px;
    min-height: 150px;
    padding: 25px;
    background: #153b24;
    transition: .35s;
}

.pillar:hover {
    background: #1c4a2d;
}

.pillar-no {
    color: rgba(255,255,255,.3);
    font-size: 13px;
    font-weight: 800;
}

.pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(244,180,0,.12);
    color: #f4b400;
    font-size: 20px;
}

.pillar h4 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.pillar p {
    margin: 0;
    color: rgba(255,255,255,.55);
    font-size: 12px;
    line-height: 1.6;
}

@media(max-width:767px) {

    .pillars-section {
        padding: 65px 0;
    }

    .pillars-heading h2 {
        font-size: 34px;
    }

    .pillars {
        grid-template-columns: 1fr;
    }

    .pillar {
        grid-template-columns: 35px 50px 1fr;
        padding: 20px 15px;
    }
}
/* *********our value**********/
/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    /* letter-spacing: 5px; */

}

/* ********our programmes end********** */

.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 5px;
}

.service-item .service-text {
    background: #f8f8f8;
    transition: .5s;
    box-shadow: 1px 1px 10px 1px var(--primary);
    border-radius: 5px;

}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .3);

}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: var(--white);

}

.service-item:hover {
    background-color: #0e2258db;
}

.service-item .btn {

    display: inline-flex;
    align-items: center;
    color: var(--primary);
    background: var(--white);
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
    border: 2px solid var(--primary);
}

.service-text {
    width: 100%;
}

.service-text ul {
    width: 100%;
    text-align: justify;
    word-break: break-all;
}

.icon_color {
    color: var(--primary);
}

.fa-plus:before {
    color: var(--primary);
}

.service-text i {
    color: var(--primary);
}

.service-text h5 {
    color: var(--primary);
}

.common_text li {
    font-size: 1rem;
    line-height: 1.9;
}

/* ********our programmes end********** */
/* ************************ */
/*** About & Feature ***/

.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #184a25, #1a4d28, #1c4c28);
    ;
    transform: skew(20deg);
    z-index: 1;
}
/* *********Team member***************/
.team-section {
    background: #f6f8f3;
    overflow: hidden;
}


/* Heading */

.team-heading span {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #6e9360;
    margin-bottom: 10px;
}

.team-heading h2 {
    font-size: clamp(35px, 5vw, 58px);
    line-height: 1.1;
    color: #183b25;
    font-weight: 700;
}

.team-heading h2 strong {
    color: #71965f;
}

.team-heading p {
    max-width: 600px;
    margin: 15px auto 0;
    color: #6d766f;
    line-height: 1.8;
}


/* ==============================
   CARD
============================== */

.team-card {
    position: relative;
    transition: .4s ease;
}

.team-image {
    position: relative;
    height: 390px;
    overflow: hidden;
    border-radius: 22px;
    background: #dfe7dc;
}


/* Image */

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.8,.2,1);
}


/* Image zoom */

.team-card:hover .team-image img {
    transform: scale(1.08);
}


/* ==============================
   NUMBER
============================== */

.team-number {
    position: absolute;
    top: 18px;
    left: 18px;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: rgba(255,255,255,.9);
    color: #193c27;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 700;

    z-index: 3;

    transition: .4s ease;
}

.team-card:hover .team-number {
    background: #193c27;
    color: #fff;
    transform: rotate(360deg);
}


/* ==============================
   OVERLAY
============================== */

.team-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 35px 25px 25px;

    color: #fff;

    background: linear-gradient(
        transparent,
        rgba(12,35,20,.9)
    );

    transform: translateY(20px);
    opacity: 0;

    transition: .45s ease;
}

.team-card:hover .team-overlay {
    transform: translateY(0);
    opacity: 1;
}

.team-overlay span {
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;
}

.team-overlay h3 {
    margin: 8px 0 4px;
    font-size: 22px;
}

.team-overlay p {
    margin: 0;
    font-size: 13px;
    opacity: .85;
}


/* ==============================
   BOTTOM INFO
============================== */

.team-info {
    padding: 17px 5px;
}

.team-info h3 {
    color: #193c27;
    font-size: 19px;
    margin: 0 0 4px;
    font-weight: 700;
}

.team-info p {
    margin: 0;
    color: #718078;
    font-size: 13px;
}


/* Hide bottom info on hover */

.team-card:hover .team-info {
    opacity: .5;
    transition: .3s ease;
}


/* ==============================
   CARD FLOAT
============================== */

.team-card:hover {
    transform: translateY(-8px);
}


/* ==============================
   TABLET
============================== */

@media (max-width: 991px) {
    .team-image {
        height: 350px;
    }
}
/* ==============================
   MOBILE
============================== */

@media (max-width: 767px) {
    .team-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    .team-heading {
        margin-bottom: 35px !important;
    }
    .team-heading h2 {
        font-size: 36px;
    }
    .team-heading p {
        font-size: 14px;
    }
    .team-image {
        height: 390px;
        border-radius: 18px;
    }
    .team-overlay {
        transform: translateY(0);
        opacity: 1;
    }
}
/* ==============================
   SMALL MOBILE
============================== */
@media (max-width: 480px) {

    .team-image {
        height: 380px;
    }
    .team-info h3 {
        font-size: 18px;
    }
}
/* **********Team member**************/
/* *********volenteer************** */
.volunteer-section {
  background: #f7f8f5;
}

.volunteer-box {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  overflow: hidden;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0,0,0,.08);
}

/* LEFT */
.volunteer-info {
  padding: 60px 45px;
  background: #173b32;
  color: #fff;
}

.small-title {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}

.volunteer-info h2 {
  font-size: clamp(32px,4vw,52px);
  line-height: 1.08;
  margin: 20px 0;
}

.volunteer-info h2 span {
  opacity: .65;
}

.volunteer-info p {
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 430px;
}

.volunteer-points {
  margin-top: 35px;
}

.volunteer-points div {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.volunteer-points i {
  margin-right: 10px;
}

/* FORM */
.volunteer-form {
  padding: 55px;
}

.volunteer-form h3 {
  font-size: 30px;
  margin-bottom: 5px;
}

.volunteer-form > p {
  color: #777;
  margin-bottom: 28px;
}

.volunteer-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
}

.volunteer-form .form-control,
.volunteer-form .form-select {
  min-height: 52px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  box-shadow: none;
}

.volunteer-form textarea.form-control {
  height: auto;
  resize: vertical;
}

.volunteer-form .form-control:focus,
.volunteer-form .form-select:focus {
  border-color: #173b32;
  box-shadow: 0 0 0 3px rgba(23,59,50,.08);
}

.volunteer-btn {
  width: 100%;
  border: 0;
  padding: 15px 20px;
  border-radius: 10px;
  background: #173b32;
  color: #fff;
  font-weight: 600;
  transition: .3s;
}

.volunteer-btn i {
  margin-left: 8px;
  transition: .3s;
}

.volunteer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(23,59,50,.2);
}

.volunteer-btn:hover i {
  transform: translate(3px,-3px);
}

/* TABLET */
@media (max-width: 991px) {
  .volunteer-box {
    grid-template-columns: 1fr;
  }

  .volunteer-info {
    padding: 45px 35px;
  }

  .volunteer-form {
    padding: 40px 35px;
  }
}

/* MOBILE */
@media (max-width: 575px) {
  .volunteer-box {
    border-radius: 18px;
  }

  .volunteer-info,
  .volunteer-form {
    padding: 30px 20px;
  }

  .volunteer-info h2 {
    font-size: 34px;
  }

  .volunteer-form h3 {
    font-size: 25px;
  }

  .volunteer-form .form-control,
  .volunteer-form .form-select {
    min-height: 48px;
  }
}
/* **********voluneteer************** */
/* ************our imapact************* */
.our-impact {
    position: relative;
    height: 200px;
    padding: 30px 25px;
    background: #FFFFFF;

    transition: .5s;
}

.our-impact:hover {
    background: var(--primary);
}

.our-impact .our-impact-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url('../img/ourimpact_brown.png') center center no-repeat;
    transition: .5s;
}

.our-impact:hover .our-impact-icon {
    color: var(--primary);
    background: url('../img/ourimpact_white.png');
}

.our-impact h5,
.our-impact p {
    transition: .5s;
}

.our-impact:hover h5,
.our-impact:hover p {
    color: var(--light);
}

.our-impact a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.our-impact:hover a.btn {
    color: var(--primary);
}

.our-impact a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: #DDDDDD;
    transition: .5s;
    z-index: -1;
}

.our-impact:hover a.btn::before {
    width: 100%;
    background: var(--light);
}

.custom-border {
    border-top: 5px solid var(--primary);
    border-right: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    border-left: 1px solid var(--primary);
}

/* ***********latest event********************** */
/* *******home page focus area section css**************** */
.focus-section {
    position: relative;
    padding: 100px 0;
    background: #f8f7f1;
    overflow: hidden;
}


/* ------------------------------------------
   Heading
------------------------------------------ */

.focus-heading {
    max-width: 850px;
    margin: 0 auto 70px;
}

.focus-heading h2 {
    /* font-size: clamp(36px, 5vw, 58px); */
    line-height: 1.12;
    font-weight: 700;
    color: #18351f;
    margin-bottom: 22px;
}

.focus-heading h2 span {
    /* display: block; */
    color: #194826;
}


.focus-heading p {
    max-width: 760px;
    margin: auto;

    font-size: 16px;
    line-height: 1.8;
    color: #68746c;
}


/* ==========================================
   FOCUS GRID
========================================== */

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 55px 35px;
}


/* ==========================================
   FOCUS ITEM
========================================== */

.focus-item {
    position: relative;
    text-align: center;
}


/* ==========================================
   CIRCLE
========================================== */

.focus-circle {
    width: 150px;
    height: 150px;

    margin: 0 auto 25px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid rgba(25, 72, 38, 0.15);

    box-shadow:
        0 10px 30px rgba(25, 72, 38, 0.08);

    transition: all 0.4s ease;
}


/* Outer circle */

.focus-circle::before {
    content: "";

    position: absolute;

    inset: -9px;

    border-radius: 50%;

    border: 1px dashed rgba(25, 72, 38, 0.25);

    transition: all 0.4s ease;
}


/* Inner circle */

.focus-circle::after {
    content: "";

    position: absolute;

    inset: 13px;

    border-radius: 50%;

    background: #eef5ee;

    z-index: 0;

    transition: all 0.4s ease;
}


/* ==========================================
   ICON
========================================== */

.focus-icon {
    position: relative;
    z-index: 2;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #194826;

    color: #ffffff;

    font-size: 27px;

    transition: all 0.4s ease;
}


/* ==========================================
   NUMBER
========================================== */

.focus-number {
    position: absolute;

    right: 2px;
    top: 2px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #194826;

    border: 1px solid rgba(25, 72, 38, 0.15);

    font-size: 11px;
    font-weight: 700;

    z-index: 3;
}
/* ***********buttons css effect******************/
.custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 7px 22px;
    background: #194826;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    justify-content: center;
    transition: .3s;
}

.custom-btn i {
    transition: .3s;
}

.custom-btn:hover {
    background: #0e1f53;
    color: #fff;
    box-shadow: 0 8px 20px rgba(25,72,38,.2);
    transform: translateY(-3px);
}

.custom-btn:hover i {
    transform: translateX(6px);
}
/* ************buttons css effects****************/
/* ==========================================
   CONTENT
========================================== */

.focus-content {
    max-width: 250px;
    margin: auto;
}
.focus-content h4 {
    font-size: 16px;
    font-weight: 700;

    color: #194826;

    margin-bottom: 10px;
}


.focus-content p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;

    color: #707b73;
}


/* ==========================================
   HOVER EFFECT
========================================== */

.focus-item:hover .focus-circle {
    transform: translateY(-8px);

    background: #194826;

    border-color: #194826;

    box-shadow:
        0 18px 40px rgba(25, 72, 38, 0.20);
}


.focus-item:hover .focus-circle::before {
    transform: rotate(25deg) scale(1.08);

    border-color: rgba(25, 72, 38, 0.45);
}


.focus-item:hover .focus-circle::after {
    background: rgba(255, 255, 255, 0.08);
}


.focus-item:hover .focus-icon {
    background: #ffffff;
    color: #194826;
}


.focus-item:hover .focus-number {
    background: #194826;
    color: #ffffff;
}


.focus-item:hover .focus-content h4 {
    color: #194826;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1199px) {

    .focus-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 55px 25px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
    .focus-section {
        padding: 70px 0;
    }
    .focus-heading {
        margin-bottom: 55px;
    }
    .focus-heading h2 {
        font-size: 36px;
    }
    .focus-heading p {
        font-size: 15px;
        padding: 0 10px;
    }
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 15px;
    }
    .focus-circle {
        width: 125px;
        height: 125px;
    }
    .focus-icon {
        width: 55px;
        height: 55px;
        font-size: 23px;
    }
    .focus-content h4 {
        font-size: 17px;
    }
    .focus-content p {
        font-size: 13px;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    .focus-circle {
        width: 140px;
        height: 140px;
    }  
    .focus-content {
        max-width: 290px;
    }
}
/* ********home page focus are section css***************** */
/* ***************latest event end****************** */
/*** gallery Start ***/
.gallery {
    columns: 3;
    column-gap: 1.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .gallery {
        columns: 2;
    }
}

@media (max-width: 480px) {
    .gallery {
        columns: 1;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: calc(var(--delay) * 0.2s);
}

.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--primary), transparent);
    padding: 2rem 1.5rem;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.overlay h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

.photo-credit {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: white;
    font-size: 0.8rem;
    opacity: 0.8;
    text-decoration: none;
}

.photo-credit:hover {
    opacity: 1;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: #00A89D;
    z-index: 1000;
    transition: width 0.3s ease;
}

/*** gallery End ***/
/**************testimonials****************** */
.testi-one {
    padding: 90px 0;
    background: #f7f8f4;
}

.testi-title {
    text-align: center;
    margin-bottom: 60px;
}

.testi-title span {
    color: #194826;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.testi-title h2 {
    font-size: 45px;
    color: #18351f;
    margin-top: 10px;
}

.testi-title b {
    color: #194826;
}

.t1-card {
    position: relative;
    padding: 55px 30px 30px;
    background: #fff;
    border-radius: 25px;
    text-align: center;
    border: 1px solid #e6ebe6;
    transition: .4s;
}

.t1-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(25,72,38,.13);
}

.t1-card.active {
    background: #194826;
    color: #fff;
}

.t1-img {
    width: 65px;
    height: 65px;
    margin: -88px auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #194826;
    color: #fff;
    border: 5px solid #f7f8f4;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
}

.active .t1-img {
    background: #fff;
    color: #194826;
}

.t1-quote {
    position: absolute;
    right: 25px;
    top: 15px;
    font: 70px Georgia;
    color: #dfeade;
}

.active .t1-quote {
    color: rgba(255,255,255,.15);
}

.t1-card p {
    color: #6b756d;
    line-height: 1.8;
}

.active p {
    color: rgba(255,255,255,.75);
}

.t1-card h5 {
    color: #194826;
    margin: 20px 0 3px;
}

.active h5 {
    color: #fff;
}

.t1-card small {
    color: #8a938c;
}

@media(max-width:767px) {
    .testi-one {
        padding: 65px 0;
    }

    .testi-title h2 {
        font-size: 34px;
    }

    .t1-card {
        margin-top: 20px;
    }
}
/* ************testimonials***************** */

/* *******patners******** */

/* ********about us page****************** */
.image-header {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.text-overlay {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    padding: 0 25px;

    text-align: left;
}

.text-overlay h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 5vw, 58px);
    font-weight: 700;

    line-height: 1.15;
    letter-spacing: -0.5px;
}

.breadcrumb-overlay {
    padding-top: 12px;
}

.breadcrumb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    background: transparent;
}
.breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
}
.breadcrumb-item a {
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
}
.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.75);
}
/* Bootstrap breadcrumb separator */
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}
/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {

    .text-overlay {
        padding: 0 30px;
    }

    .text-overlay h1 {
        font-size: 44px;
    }

    .breadcrumb-item {
        font-size: 13px;
    }
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {

    .text-overlay {
        padding: 0 20px;
    }

    .text-overlay h1 {
        font-size: 34px;
    }

    .breadcrumb-overlay {
        padding-top: 8px;
    }

    .breadcrumb-item {
        font-size: 12px;
    }
}


/* =====================================
   SMALL MOBILE - 320px
===================================== */

@media (max-width: 400px) {

    .text-overlay {
        padding: 0 15px;
    }

    .text-overlay h1 {
        font-size: 29px;
    }

    .breadcrumb-item {
        font-size: 11px;
    }
}

/* .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.breadcrumb-overlay {
    position: absolute;
    top: 20px;
    z-index: 2;
    width: max-content;
} */

.about-banner {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
/* Banner Image */

.about-banner > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Image Overlay */

.banner-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.48); */
    z-index: 1;
}
/* Text */
.about-banner .container {
    position: relative;
    z-index: 2;
}
.text-overlay {
    text-align: left;
    padding: 80px 0;
}
.text-overlay h1 {
    margin: 0 0 12px;
    color: #0d225a;
    font-size: clamp(36px, 5vw, 40px);
    font-weight: 700;
    line-height: 1.1;
}
/* Breadcrumb */
.text-overlay .breadcrumb {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
}
.text-overlay .breadcrumb-item {
    color: #0d225a;
    font-size: 14px;
}
.text-overlay .breadcrumb-item a {
    color: #0d225a;
    text-decoration: none;
}
.text-overlay .breadcrumb-item a:hover {
    color: #0d225a;
}
.text-overlay .breadcrumb-item + .breadcrumb-item::before {
    color:#0d225a;
}
/* =================================
   TABLET
================================= */
@media (max-width: 991px) {
    .about-banner {
        min-height: 360px;
    }
    .text-overlay {
        padding: 60px 20px;
    }
    .text-overlay h1 {
        font-size: 44px;
    }
}
/* =================================
   MOBILE
================================= */

@media (max-width: 767px) {
    .about-banner {
        min-height: 300px;
    }
    .text-overlay {
        padding: 50px 15px;
    }
    .text-overlay h1 {
        font-size: 34px;
    }
    .text-overlay .breadcrumb-item {
        font-size: 12px;
    }
}
/* =================================
   SMALL MOBILE
================================= */
@media (max-width: 400px) {
    .about-banner {
        min-height: 270px;
    }
    .text-overlay {
        padding: 40px 10px;
    }
    .text-overlay h1 {
        font-size: 30px;
    }
}
/* ********about us page end****************** */
/* **************who we are section********************/
.who_we_are {
    border: 12px solid var(--primary);
    border-radius: 6px;
}
/* *********ourfocus**************/
.our_focus {
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}
.our_focus::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .9s;
}
.our_focus::after {
    border-color: transparent transparent var(--primary) transparent;
}
.our_focus p {
    text-align: justify;
    word-break: break-all;
}
.our_focus:hover::after {
    opacity: 0;
}
/* ************ourfocus end*******/

/* *********our team start************* */
/*** Team Start ***/
.team .team-item {
    position: relative;
    padding: 0 25px 25px 25px;
    border-radius: 10px;
    transition: 0.5s;
}

.team .team-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: #ebebeb;
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
    border: 2px solid var(--primary);
}

.team .team-item:hover::before {
    height: 0;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team .team-item .team-img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: relative;
    margin-top: 50%;
    transform: translateY(-50%);
    margin-bottom: -50%;
    display: flex;
    justify-content: center;
    border: 4px solid var(--primary);
    border-style: dotted;
    padding: 4px;
    background: var(--white);
    transition: 0.5s;
}

.team .team-item:hover .team-img {
    border: 4px solid var(--white);
    border-style: dotted;
    background: 0;
}

.team .team-item .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: 0.5s;
}

.team .team-item .team-title {
    padding: 25px 0 25px 0;
    text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
    transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
    color: var(--white);
}

.team .team-item .team-icon {
    display: flex;
    justify-content: center;
}

.team .team-item .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-icon a {
    color: var(--primary);
    background: var(--white);
}

.team .team-item:hover .team-icon a:hover {
    color: var(--primary);
    background: var(--bs-dark);
}

.profile-card {
    text-align: center;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    border: 2px solid var(--primary);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: var(--primary);
    color: var(--white);
    border: 4px solid var(--white);
    border-style: dotted;
}

.profile-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-image:hover {
    border: 4px solid var(--white);
    border-style: dotted;
}

.section-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.ourteam_testimonial em {
    color: var(--primary);
}

/* Controls */
.ourteam_testimonial .carousel-control-next {
    margin: 0 3em;
}

.ourteam_testimonial i.fa-arrow-right,
.ourteam_testimonial i.fa-arrow-left {
    background: none;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px;
    border-radius: 100%;
    transition: background .6s ease;
}

.ourteam_testimonial i.fa-arrow-right:hover,
.ourteam_testimonial i.fa-arrow-left:hover {
    background: var(--primary);
    color: var(--white) !important;
}

/* Indicators */
.ourteam_testimonial .carousel-indicators {
    justify-content: flex-start;
    transform: translate(-40px, 50px);
}

.ourteam_testimonial .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 2px solid var(--primary);
}

.ourteam_testimonial .carousel-indicators .active {

    background-color: var(--primary);
}

/* Control buttons */
.ourteam_testimonial .control-btn {
    position: absolute;
    top: 8px;
    right: 10em;
}

.ourteam_testimonial .carousel-control-next,
.ourteam_testimonial .carousel-control-prev {
    top: 1em;
    left: 3em;
}

.ourteam_testimonial .testimonial-text {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 20px;
}

.ourteam_testimonial .wow {
    position: relative;
    grid-column: span 2;
}

.ourteam_testimonial .carousel-landmark {
    grid-column: span 3;
}

.border-primary {
    border-color: #7e2d22d1 !important;
}

.our-team-latestnews img {
    transition: .5s;
}

.our-team-latestnews:hover img {
    transform: scale(1.1);
}

.our-team-latestnews .share-wrapper:hover .social-icons {
    display: flex !important;
}

.our-team-latestnews .share-wrapper .social-icons {
    top: 100%;
    right: 0;
    z-index: 10;
    gap: 0.5rem;
}

.our-team-latestnews .shadow {
    box-shadow: #7e2d228c !important;
}

.latest_news_bg {
    background-color: #a714011a !important;
}

.image-container {
    height: 470px;
}

.object-fit-cover {
    object-fit: cover;
}

.cursor-pointer {
    cursor: pointer;
}

.social-icons {
    z-index: 1050;
    /* ensure dropdowns appear above */
}

@media screen and (max-width: 576px) {
    .ourteam_testimonial .testimonial-text {
        margin-top: 50px;
        row-gap: 50px;

    }

    .ourteam_testimonial .wow {
        grid-column: span 5;
    }

    .ourteam_testimonial .carousel-landmark {
        grid-column: span 5;
    }
}

/*** our Team End ***/
/* ****gallery **** */
.gallery_img {
    width: 80%;
    column-count: 4;
    margin: 0 auto;
}

.gallery_img .grid-item img {
    width: 100%;
    height: auto;
    margin: 1em;
}

@media only screen and (max-width: 768px) {
    .gallery_img {
        column-count: 3;
    }
}

@media only screen and (max-width: 450px) {
    .gallery_img {
        column-count: 1;
    }
}

/* *****gallery******* */

/* *************donate**************** */
.donate-card {
    max-width: 600px;
}

.donate-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donate-img-col {
    max-width: 200px;
}

/* *************donate**************** */
.horizontal-card {
    max-width: 100%;
}

.card-img-right {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.image-col {
    max-width: 300px;
}

@media (max-width: 768px) {
    .image-col {
        max-width: 100%;
    }

    .card-img-right {
        border-radius: 0 0 0.375rem 0.375rem;
    }
}

.donate_now_list ul li {
    list-style: none;
    position: relative;
    padding: 0 0 0 20px;
    line-height: 2.4;
    font-weight: 500;
}

.donate_now_list ul.square li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background-color: var(--primary);
}

/*** Contact ***/
.contact-section {
  background: #f7f8f5;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.contact-title {
  font-size: clamp(32px, 4vw, 50px);
  margin: 10px 0;
}

/* MAIN BOX */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,.08);
}

/* FORM */
.contact-form-box {
  padding: 50px;
}

.form-heading span {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
}

.form-heading h3 {
  font-size: 30px;
  margin: 8px 0 30px;
}

.contact-form-box label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
}

.contact-form-box label b {
  color: #d33;
}

.contact-form-box .form-control {
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 9px 15px;
  box-shadow: none;
}

.contact-form-box textarea {
  resize: vertical;
}

.contact-form-box .form-control:focus {
  border-color: #173b32;
  box-shadow: 0 0 0 3px rgba(23,59,50,.08);
}

/* BUTTON */
.send-btn {
  border: 0;
  background: #173b32;
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  transition: .3s;
}

.send-btn i {
  margin-left: 8px;
  transition: .3s;
}

.send-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.send-btn:hover i {
  transform: translate(3px,-3px);
}

/* MAP */
.map-box {
  min-height: 600px;
  position: relative;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: 0;
}

/* MAP CARD */
.map-card {
  position: absolute;
  left: 25px;
  bottom: 25px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

.map-card i {
  font-size: 24px;
}

.map-card p {
  margin: 3px 0 0;
  color: #777;
  font-size: 13px;
}

/* TABLET */
@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 40px;
  }

  .map-box,
  .map-box iframe {
    min-height: 450px;
  }
}

/* MOBILE */
@media (max-width: 575px) {
  .contact-form-box {
    padding: 30px 20px;
  }

  .form-heading h3 {
    font-size: 25px;
  }

  .contact-wrapper {
    border-radius: 18px;
  }

  .map-box,
  .map-box iframe {
    min-height: 350px;
  }

  .map-card {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .send-btn {
    width: 100%;
  }
}
/*** Contact ***/


/* ***********learn more*************** */

.news_images img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.common_learnmore_img img {
    width: 500px;
    max-height: 500px;
    object-fit: cover;
}

.common_learnmore_img p {
    text-align: justify;
    word-break: break-all;
}



/* ***********learn more*************** */

/* **********media query********** */
@media (max-width: 1062px) and (min-width: 652px) {
    .navbar .navbar-nav .nav-link {
        font-size: 13px;
    }
}
/* **********get involved************** */

.impact-cta-section {
    background: #ffffff;
    overflow: hidden;
}

/* MAIN CARD */

.impact-cta {
    position: relative;
    overflow: hidden;
    padding: 70px 75px;
    border-radius: 34px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(65, 132, 82, 0.10),
            transparent 30%
        ),
        #f4f7ef;

    border: 1px solid rgba(52, 116, 71, 0.10);

    box-shadow:
        0 25px 70px rgba(30, 60, 35, 0.10);
}

*** Blog Start ***/
.blog-carousel .owl-stage-outer {
    margin-top: 30px;
}

.blog-carousel .owl-nav .owl-prev,
.blog-carousel .owl-nav .owl-next {
    position: absolute;
    top: 1px;
    padding: 10px 35px;
    border: 1px solid var(--primary);
    color: var(--white);
    background: var(--primary);
    border-radius: 50px;
    transition: 0.5s;
}

.blog-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.blog-carousel .owl-nav .owl-next {
    right: 0;
}

.blog-carousel .owl-nav .owl-prev:hover,
.blog-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--primary) !important;
    color: var(--white) !important;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog-item {
    border: 2px solid var(--primary);
    border-radius: 5px;
}

.blog-img {
    height: 250px;
    /* Adjust to suit your design */
    overflow: hidden;
}
.blog-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.owl-stage-outer{
    padding-top: 15px !important;
}
/*** Blog End ***/
/* ==========================================
   TITLE
========================================== */
.impact-title {
    max-width: 720px;
    margin: 0;
    color: #194826;
    font-size: clamp(38px, 4.5vw, 39px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -2px;
}
.impact-title span {
    color: #194826;
}
.impact-title strong {
    display: block;
    font-weight: 700;
    color: #194826;
}

/* ==========================================
   DESCRIPTION
========================================== */

.impact-description {
    max-width: 680px;

    margin: 24px 0 0;

    color: #687169;

    font-size: 16px;
    line-height: 1.8;
}


/* ==========================================
   IMPACT POINTS
========================================== */

.impact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 25px;
}

.impact-point {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 14px;

    border-radius: 50px;

    background: #ffffff;

    color: #4e5951;

    font-size: 12px;
    font-weight: 600;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);

    transition: all 0.3s ease;
}

.impact-point i {
    color: #347447;
}

.impact-point:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 20px rgba(52, 116, 71, 0.12);
}


/* ==========================================
   RIGHT CTA CARD
========================================== */

.impact-action {
    position: relative;
    z-index: 3;

    margin-left: 25px;

    padding: 35px 28px;

    text-align: center;

    border-radius: 28px;

    background: #ffffff;

    border: 1px solid rgba(52, 116, 71, 0.10);

    box-shadow:
        0 18px 45px rgba(25, 55, 32, 0.10);
}


/* ==========================================
   ICON
========================================== */

.impact-icon-wrap {
    position: relative;

    width: 75px;
    height: 75px;

    margin: 0 auto 20px;
}

.impact-icon {
    position: relative;
    z-index: 2;

    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #347447;

    color: #ffffff;

    font-size: 28px;

    box-shadow:
        0 12px 28px rgba(52, 116, 71, 0.25);
}

.icon-ring {
    position: absolute;

    width: 92px;
    height: 92px;

    left: -9px;
    top: -9px;

    border: 1px dashed rgba(52, 116, 71, 0.35);

    border-radius: 50%;

    animation: rotateRing 12s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* ==========================================
   CTA TEXT
========================================== */

.impact-action h4 {
    margin: 0;

    color: #202820;

    font-size: 20px;
    font-weight: 700;
}

.impact-action p {
    margin: 9px auto 20px;

    max-width: 230px;

    color: #7a827c;

    font-size: 13px;
    line-height: 1.6;
}


/* ==========================================
   BUTTON
========================================== */

.impact-btn {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 7px 8px 7px 20px;

    border-radius: 60px;

    background: #347447;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    overflow: hidden;

    box-shadow:
        0 12px 25px rgba(52, 116, 71, 0.20);

    transition: all 0.35s ease;
}

.impact-btn span,
.impact-btn i {
    position: relative;
    z-index: 2;
}

.impact-btn i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #347447;

    font-size: 17px;

    transition: all 0.35s ease;
}

.impact-btn::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 100%;

    background: #225b34;

    transition: width 0.4s ease;
}

.impact-btn:hover::before {
    width: 100%;
}

.impact-btn:hover {
    color: #ffffff;

    transform: translateY(-4px);

    box-shadow:
        0 18px 35px rgba(52, 116, 71, 0.28);
}

.impact-btn:hover i {
    transform: rotate(45deg);
}


/* ==========================================
   DECORATIVE ORBITS
========================================== */

.cta-orbit {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.orbit-1 {
    width: 330px;
    height: 330px;

    right: -160px;
    top: -170px;

    border: 50px solid rgba(52, 116, 71, 0.055);
}

.orbit-2 {
    width: 180px;
    height: 180px;

    left: 43%;
    bottom: -130px;

    border: 25px solid rgba(52, 116, 71, 0.045);
}

.cta-dot {
    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #347447;
}

.dot-1 {
    top: 35px;
    right: 36%;
}

.dot-2 {
    bottom: 45px;
    left: 48%;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .impact-cta-section {
        padding: 65px 0;
    }

    .impact-cta {
        padding: 55px 45px;
    }

    .impact-title {
        font-size: 44px;
    }

    .impact-action {
        margin: 40px 0 0;
        max-width: 420px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .impact-cta-section {
        padding: 45px 0;
    }

    .impact-cta {
        padding: 38px 22px;

        border-radius: 24px;
    }

    .impact-label {
        font-size: 10px;
        letter-spacing: 1.7px;
    }

    .impact-line {
        width: 24px;
    }

    .impact-title {
        font-size: 32px;
        line-height: 1.15;

        letter-spacing: -1px;
    }

    .impact-description {
        margin-top: 17px;

        font-size: 14px;
        line-height: 1.7;
    }

    .impact-points {
        gap: 7px;
    }

    .impact-point {
        padding: 8px 11px;

        font-size: 10px;
    }

    .impact-action {
        margin-top: 30px;

        padding: 30px 20px;

        border-radius: 22px;
    }

    .impact-icon-wrap,
    .impact-icon {
        width: 65px;
        height: 65px;
    }

    .impact-icon {
        font-size: 23px;
    }

    .icon-ring {
        width: 80px;
        height: 80px;

        left: -7px;
        top: -7px;
    }

    .impact-action h4 {
        font-size: 18px;
    }

    .impact-action p {
        font-size: 12px;
    }

    .impact-btn {
        font-size: 13px;
    }

    .impact-btn i {
        width: 39px;
        height: 39px;
    }

    .orbit-1 {
        width: 190px;
        height: 190px;

        right: -100px;
        top: -90px;

        border-width: 28px;
    }

    .orbit-2 {
        width: 120px;
        height: 120px;

        left: auto;
        right: -50px;
        bottom: -80px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .impact-cta {
        padding: 32px 18px;
    }

    .impact-title {
        font-size: 28px;
    }

    .impact-description {
        font-size: 13px;
    }

    .impact-point {
        font-size: 9.5px;
    }

    .impact-action {
        padding: 27px 17px;
    }
}
/* ********get involved***************** */