:root {
    --default-font: "DM Sans", sans-serif;
    --heading-font: "Newsreader", serif;
    --nav-font: "Plus Jakarta Sans", sans-serif;
}

:root {
    --background-color: #a00000;
    /* Background color for the entire website, including individual sections */
    --default-color: #666161;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #a00000;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #1acc8d;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #2b2d33;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --subheading-color: #000;
}

* {
    margin: 0;
    padding: 0;
}

/* html, body {
height: 100%;
margin: 0;
} */
body {
    background: linear-gradient(178deg, #fdf1f1 37%, #FFFCF7 100%) repeat;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    line-height: 22px;
    color: var(--default-color);
}

.h100 {
    height: 100%;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #ad0731 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 16px;
}

*::-webkit-scrollbar-track {
    background: #ffffff;
}

*::-webkit-scrollbar-thumb {
    background-color: #ad0731;
    border-radius: 10px;
    border: 3px solid #ffffff;
}

::-moz-selection {
    /* Code for Firefox */
    color: #b3353d;
    background: #ecccce;
}

::selection {
    color: #b3353d;
    background: #ecccce;
}

.mt-10 {
    margin-top: 100px;
}

h5 {
    font-weight: 700;
}

.mb-10 {
    margin-bottom: 100px;
}

main {
    background-color: #fff;
}

.pl0 {
    padding-left: 0;
}

.width80 {
    width: 80%;
    margin: auto;
}

.width90 {
    width: 92%;
    margin: auto;
}

.mt-8 {
    margin-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Newsreader", serif;
}

.btn-donate {
    display: inline-block;
    background: #a00000;
    color: #fff;
    padding: 12px 36px;
    border-radius: 40px;
    font-size: 16px;
    text-decoration: none;
    transition: all linear 0.2s;
    border:none;
}

header {
    background: #fff;
    border-radius: 70px;
    margin-bottom: 30px !important;
    margin-top: 30px !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

header .navbar {
    position: relative;
    z-index: 99;
    padding: 14px 38px;
}

/* ======================
TOGGLE ICON
====================== */
.menu-toggle {
    width: 45px;
    height: 45px;
    border: none;
    background: #990303;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1100;
    padding: 14px 14px;
    border-radius: 18px;
}

.menu-toggle .bar {
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Close icon */
.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.nav-item a{
	text-transform:capitalize;
}
/* ======================
DESKTOP MENU
====================== */
@media (min-width: 1199px) {
    .menu-overlay {
        display: flex !important;
    }

    .has-submenu {
        position: relative;
    }

    .submenu {
        position: absolute;
        top: 100%;
        right: -50px;
        min-width: 220px;
        background: #fff;
        padding: 10px 0;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s ease;
    }

    .has-submenu:hover>.submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Third level */
    .submenu .submenu {
        top: 0;
        right: 100%;
    }

    .nav-item a {
        color: #000;
    }

    .nav-item a:hover {
        color: var(--heading-color);
    }

    .submenu a {
        display: block;
        padding: 10px 22px;
        color: #000000;
        text-decoration: none;
    }

    .menualign {
        justify-content: right;
    }

    .submenu a:hover {
        background: #f5f5f5;
    }
}

/* ======================
MOBILE OVERLAY MENU
====================== */
@media (max-width: 1199px) {
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.95);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition:
            opacity 0.35s ease,
            transform 0.35s ease,
            visibility 0.35s ease;
        z-index: 1050;
    }

    .menu-overlay.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link,
    .submenu a {
        color: #fff !important;
        font-size: 24px;
        padding: 10px 0;
    }

    .submenu {
        display: none;
        padding-left: 15px;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
    }
}

.topmenu li {
    list-style: none;
}

.topmenu li a {
    font-weight: 600;
    font-size: 16px;
}

.topmenu .nav-item {
    padding: 0 10px;
}

header .navbar .btn-donate {
    padding: 8px 20px;
    transition: all linear 0.2s;
}

header .navbar .btn-donate:hover {
    box-shadow: #dfdfdf 0px 1px 6px 6px;
}

header .navbar .btn-donate:hover i {
    margin-left: 8px;
}

header .navbar .btn-donate i {
    margin-left: 5px;
    position: relative;
    top: 2px;
    transition: all linear 0.2s;
}

.active {
    color: #a00000 !important;
}

/*BannerSection*/
.homeBanner {
    position: relative;
}

.homeBanner:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(97deg, #000000ab, #4b0d0d00);
    border-radius: 70px;
}

.homeBanner img {
    border-radius: 70px;
    width: 100%;
}

.bannertext {
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    top: 60%;
    bottom: 0;
    transform: translateY(-60%);
    color: #fff;
    width: 80%;
}

.bannertext h1 {
    font-size: 48px;
    font-weight: 400;
}

.bannerarrowcontainer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    z-index: 9;
    text-align: center;
}

.bannerarrowcontainer i {
    color: #fff;
    font-size: 32px;
}

@-moz-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.arrow {
    position: absolute;
    bottom: 50px;
    left: 50%;
    margin-left: -20px;
    width: 38px;
    height:38px;
    background-image: url(../images/angledown.png);
    background-size: contain;
    z-index: 9;
}

.bounce {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

/***Home Certified Section***/
.homecertified-section {
    background: #fff;
    padding: 50px 0;
    margin: 50px 0;
}

.gptw-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.gptwbadge img {
    width: 180px;
}

.gptwcontent {
    text-align: center;
}

.gptwcontent h1 {
    font-size: 48px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #000;
}

.career-btn {
    display: inline-block;
    background: #a00000;
    color: #fff;
    padding: 12px 36px;
    border-radius: 40px;
    font-size: 16px;
    text-decoration: none;
    transition: all linear 0.2s;
}

.career-btn:hover {
    background: #b90303;
    box-shadow: 0px 2px 19px rgb(241 141 141);
}

/*HomeQuote Section*/
.quote-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.quote-box {
    text-align: center;
    position: relative;
}

.quote-box h1 {
    font-size: 48px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 54px;
    width: 75%;
    margin: auto;
}

.highlight {
    color: var(--heading-color);
    font-style: italic;
}

/* Holistic Section */
.impact-section {
    padding: 80px 0;
}

.impact-card {
    background: #f9f1ee;
    border-radius: 70px;
    padding: 60px;
    box-shadow: inset #f9ebe6 1px 2px 20px 8px;
}

.impact-img {
    width: 100%;
    max-width: 820px;
    border-radius: 50px;
}

.impact-content {
    padding-right: 170px;
    padding-left: 80px;
}

.impact-content h2 {
    font-size: 55px;
    line-height: 55px;
    color: #111;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.impact-content h2 em {
    font-style: italic;
    font-weight: 500;
}

.impact-content p {
    margin-bottom: 30px;
}

.impact-content .btn-donate {
    font-size: 16px;
    padding: 16px 40px;
}

.impact-content .btn-donate i {
    margin-left: 8px;
    position: relative;
    top: 2px;
}

/*latest change*/
.subheading_white span {
    color: #ffffff;
    border-bottom: #ffffff 2px solid;
    display: inline;
    padding-left: 9px;
    padding-right: 9px;
    font-size: 20px;
}

/*latest change*/
.subheading_gray span {
    color: #474747;
    border-bottom: #838181 2px solid;
    display: inline;
    padding-left: 9px;
    padding-right: 9px;
    font-size: 20px;
}

.dark {
    background: #eacdce !important;
    border: #b98989a6 1px solid !important;
    color: #581f1f !important;
}

/* Home What we do  Section*/
.home-about-wrapper {
    padding: 80px 0;
    background: linear-gradient(135deg, #a52521, #380e0e);
    border-radius: 70px;
    padding: 100px 70px;
    color: #ffffff;
}

.impact-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 24px;
}

.impact-title em {
    font-style: italic;
    font-weight: 500;
}

.homeabout-text {
    line-height: 1.4;
    font-weight: 300;
    width: 80%;
    margin-top: 40px;
    font-size: 20px;
}

.home-donate-section {
    padding: 30px 0;
    background: #ffffff;
    border-radius: 70px;
    position: relative;
    margin: auto;
    margin-bottom: 90px;
    margin-top: 90px;
}

.whatwedo_section {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
}

.hero-title {
    font-size: 48px;
    font-weight: 500;
    color: #111;
    margin-bottom: 20px;
    line-height: 52px;
}

.hero-title em {
    font-style: italic;
}

.hero-text {
    color: #555;
    width: 80%;
    margin-bottom: 30px;
    line-height: 26px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.home-donate-section .btn-donate {
    background-color: var(--background-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all linear 0.2s;
}

.home-donate-section .btn-donate i {
    margin-left: 12px;
    position: relative;
    top: 2px;
}

.btn-donate:hover {
    background: #b90303;
    box-shadow: 0px 2px 19px rgb(241 141 141);
}

.btn-donate:active,
.btn-donate:focus {
    background: #b90303 !important;
    box-shadow: 0px 2px 19px rgb(241 141 141);
    color: #fff !important;
}

.btn-donate:hover i {
    margin-left: 15px;
    transition: all linear 0.2s;
}

.home-donate-image-card {
    margin-right: 15px;
}

.home-donate-image-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 60px;
    height: 600px;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 46px;
    background: var(--background-color);
    color: #fff;
    border-radius: 35px;
    line-height: 1.3;
    padding: 38px;
    text-align: center;
    font-family: "Newsreader", serif;
    font-size: 28px;
}


/* Home Program Section */
.programs-section {
    padding: 80px 0 140px 0;
    width: 100%;
    background: var(--background-color);
    border-radius: 70px;
}

.programs-heading {
    font-size: 48px;
    font-weight: 400;
    line-height: 52px;
    color: #fff;
}

.programs-heading em {
    font-style: italic;
    font-weight: 500;
}

.program-card {
    background: #ffffff;
    border-radius: 28px;
   /* padding: 52px 72px 90px 72px;*/
	padding:52px 72px 42px 72px;
    height: 100%;
    position: relative;
}

.program-card h3 {
    font-size: 48px;
    margin-bottom: 26px;
    font-style: italic;
    color: #000;
    line-height: 1;
}

.program-card p {
    color: var(--default-color);
    line-height: 1.4;
    margin-bottom: 30px;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.2px;
    min-height: 90px;
}

.program-tag {
    display: inline-block;
    background: #f3e1e2;
    color: #b21e1e;
    font-size: 12px;
    padding: 4px 18px 2px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: #99030342 1px solid;
    text-transform: uppercase;
}

.program-link {
    color: #111;
    text-decoration: none;
    font-weight: 600;
    position: absolute;
    bottom: 60px;
    font-size: 15px;
    transition: all linear 0.2s;
}

.program-link:hover {
    color: #990303;
}

.program-link i {
    margin-left: 5px;
    transition: all linear 0.2s;
}

.program-link:hover i {
    margin-left: 10px;
}



/*Community Reach Number*/
.community-reach-section {
    padding: 80px 0 150px;
}

.reach-heading {
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    color: #2f2b2b;
    letter-spacing: -0.3px;
}

.reach-heading em {
    font-style: italic;
    color: #000;
    font-weight: 500;
}

.reach-underline {
    display: inline-block;
    width: 150px;
    height: 5px;
    background: #990303;
    margin-top: 20px;
}

.reach-row {
    margin-top: 50px;
}
.reach-col{
	position:relative;
}
.reach-col:after {
    position: absolute;
    content: '';
    width: 1px;
    top: -20px;
    bottom: -20px;
    right: 50px;
    background: #a00000;
}
.reach-col-last:after {
    display:none;
}

.reach-number {
    font-size: 58px;
    font-weight: 500;
    margin-bottom: 0;
    color: #000;
    position: relative;
}

.reach-number:after {
    position: absolute;
    content: "+";
}

.reach-title {
    color: #a00000;
    font-style: italic;
    margin-bottom: 12px;
    margin-top: -5px;
    font-weight: 500;
}

.reach-text {
    font-size: 16px;
    color: var(--default-color);
    line-height: 19px;
    margin-bottom: 25px;
    width: 75%;
}

.reach-img {
    width: 100%;
    max-width: 260px;
    border-radius: 18px;
    object-fit: cover;
}


/*homedonation Section*/
.home-ngodonate-section {
    padding: 100px 0;
}

.home-ngodonate-section h1 {
    font-size: 60px;
    text-align: center;
    letter-spacing: -0.3px;
}

.home-ngodonate-section span {
    font-style: italic;
    color: #b7413f;
}

.home-ngodonate-section .btn-donate {
    padding: 16px 50px;
    box-shadow: 0px 1px 17px #d96e6e;
    font-size: 18px;
    border-radius: 55px;
    background-color: #a7251d;
    color: #fff;
    font-weight: 500;
}

/***********impacts Stories  slider HomePage***********/
/*Imapact Stories Section*/
.realimpactStories {
    padding: 0 0 100px 0;
}

.realimpactStories h1 {
    font-size: 48px;
    text-align: center;
    line-height: 1;
    letter-spacing: -0.2px;
    color: #000;
    font-weight: 400;
}

.story-section-img-container {
    position: absolute;
    left: 0;
    right: 0;
}

.realimpactStories em {
    color: var(--heading-color);
}

.story-section {
    padding: 50px 0;
}

.story-image {
    border-radius: 40px;
    position: relative;
    left: -30%;
}

.story-image img {
    height: 590px;
    display: block;
    border-radius: 45px;
    object-fit: cover;
    max-width: 800px;
}

.story-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 80px 50px 60px 50px;
    position: relative;
    z-index: 2;
    max-width: 550px;
    border: #d96e6e6b 1px solid;
    margin-left: 40px;
}
.story-card p{
	color: #555;
    line-height: 1.4;
    margin-bottom: 45px;
    font-size: 17px;
    padding-right: 25px;
}
.story-tag {
    display: inline-block;
    font-style: italic;
    color: #a00000;
    margin-bottom: 10px;
    font-family: "Newsreader", serif;
    font-size: 22px;
    font-weight: 500;
}

.story-title {
    font-size: 30px;
    margin-bottom: 20px;
    color: #111;
}

.story-quote {
    font-style: italic;
    color: #a00000;
    font-size: 24px;
    line-height: 1.2;
    margin: 20px 0;
    font-family: "Newsreader", serif;
    font-weight: 600;
}

.impactstory-text {
    color: #555;
    line-height: 1.4;
    margin-bottom: 45px;
    font-size: 17px;
    padding-right: 25px;
}

.impactstory-link {
    font-size: 15px;
    color: #b21e1e;
    text-decoration: none;
    font-weight: 600;
    transition: all linear 0.5s;
}

.impactstory-link i {
    margin-left: 4px;
    transition: all linear 0.5s;
    position: relative;
    top: 2px;
}

.impactstory-link:hover i {
    margin-left: 8px;
}

.impactstory-link:hover {
    color: #000;
}

.storyslider .owl-next i {
    box-shadow: #000000de 1px 9px 15px;
}

/************************accordion sdgs Home******************/
.sdgsSection {
    padding: 50px 0;
}

.goal1 {
    border: #e31e22 1px solid 1px solid !important;
    border-radius: 35px;
    color: #e31e22;
}

.goal2 {
    border: #dda83a 1px solid !important;
    border-radius: 35px;
    color: #dda83a;
}

.goal3 {
    border: #289c46 1px solid !important;
    border-radius: 35px;
    color: #289c46;
}

.goal4 {
    border: #c31f33 1px solid !important;
    border-radius: 35px;
    color: #c31f33;
}

.goal5 {
    border: #ff3a21 1px solid !important;
    border-radius: 35px;
    color: #ff3a21;
}

.goal6 {
    border: #e11485 1px solid !important;
    border-radius: 35px;
    color: #e11485;
}

.sdgsSection h1 {
    font-size: 48px;
    text-align: center;
    line-height: 1;
    letter-spacing: -0.2px;
    color: #000;
    font-weight: 400;
}

.sdgsSection em {
    color: var(--heading-color);
}

.shc-collapse {
    display: flex;
    gap: 8px;
    min-height: 360px;
    width: 80%;
    margin: auto;
}

.shc-panel {
    position: relative;
    flex: 1 1 0;
    min-width: 85px;
    border: 1px solid #e6d7c3;
    background: #fff;
    padding: 24px 22px;
    text-align: left;
    cursor: pointer;
    transition:
        flex 280ms ease,
        transform 280ms ease,
        border-color 280ms ease;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 8px;
    font-family: "Newsreader", serif;
    margin-top: 30px;
}

.shc-panel__title {
    font-size: 26px;
    letter-spacing: -0.2px;
    font-weight: 500;
}

.shc-panel__body {
    font-size: 14px;
    color: var(--muted);
    overflow: hidden;
    display: block;
}

.shc-panel__body p {
    font-size: 16px;
    width: 60%;
    font-family: var(--default-font);
}

.shc-panel.is-active {
    flex: 1 1 75%;
    border-color: rgba(234, 95, 44, 0.55);
    justify-content: initial;
    cursor: unset;
    padding: 65px 15px 15px 65px;
}

.shc-panel.is-active .shc-panel__title {
    font-size: 40px;
    font-style: italic;
    word-wrap: normal;
    width: 40%;
    line-height: 40px;
}

.shc-panel.is-active::after {
    opacity: 1;
}

.shc-panel:not(.is-active) .shc-panel__body {
    display: none;
}

.sdgimg-tab img {
    float: right;
}

.shc-panel:not(.is-active) .shc-panel__title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    align-self: center;
    text-align: center;
    font-style: italic;
}

.shc-panel:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

@media (max-width: 991px) {
    .shc-collapse {
        height: auto;
        flex-direction: column;
    }

    .shc-panel.is-active {
        transform: none;
    }

    .shc-panel:not(.is-active) .shc-panel__body {
        display: none;
    }

    .shc-panel:not(.is-active) .shc-panel__title {
        writing-mode: horizontal-tb;
        transform: none;
        align-self: flex-start;
        text-align: left;
        letter-spacing: normal;
    }
}

/***********Award Section****************/
.award_section {
    background: #f9f5ed;
    border-radius: 80px 80px 0 0;
    padding: 80px 0px 60px 0;
}
.homeawards{
	padding: 80px 0px 150px 0 !important;
}
.awardbox {
    background: #fff;
    padding: 35px 25px;
    border-radius: 25px;
    min-height: 290px;
}

.awardslider {
    padding-left: 50px;
    padding-right: 50px;
}

.awardslider .item {
    margin: 12px;
    text-align: center;
}

.awardslider .item img {
    width: auto;
    margin: auto;
}

.awardslider .item p {
    font-size: 17px;
    margin-top: 20px;
    min-height: 100px;
    color: #3f3d3d;
}

.owl-nav {
    position: absolute;
    top: 45%;
    display: block !important;
    left: 0;
    right: 0;
}

.owl-nav i {
    background: #fff;
    border: #d96e6e 1px solid;
    width: 40px;
    height: 40px;
    line-height: 38px;
    border-radius: 50%;
    font-size: 16px;
    color: #a00000;
    box-shadow: #00000026 1px 9px 15px;
    transition: all linear 0.5s;
}

button.owl-next:hover i,
button.owl-prev:hover i {
    background: #a00000;
    color: #fff;
}

button.owl-prev {
    left: -20px;
    position: absolute;
}

button.owl-next {
    right: -20px;
    position: absolute;
}

.award_section h1 {
    color: #000;
    font-size: 48px;
    letter-spacing: -0.2px;
    color: #000;
    font-weight: 400;
}

.award_section h1 em {
    color: #a00000;
}

/*jointhemovementSection*/
.jointhemovementSection {
    background: #a00000;
    background-size: 100% 100%;
    border-radius: 70px;
    position: relative;
    margin-top: -100px;
}

.holdinghandsimg {
    width: 100%;
}

.joinmovementInnerContainer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
}

.newslettercontainer {
    padding: 100px 0;
}

.jointhemovementSection h1 {
    font-style: italic;
    font-size: 48px;
    line-height: 48px;
}

.newslettertext {
    width: 50%;
    font-style: italic;
    font-family: "Newsreader", serif;
    font-size: 20px;
    letter-spacing: 0.2px;
}

.newsletterform {
    width: 50%;
    margin-top: 50px;
}

.newsletterform .form-control {
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: #fff 2px solid;
    color: #fff;
}

.newsletterform .form-control:focus {
    box-shadow: none;
}

.newsletterform .form-control::placeholder {
    color: #ddcfcf;
}

.newsletterform .form-control::-webkit-input-placeholder {
    color: #ddcfcf;
}

.newsletterform .form-control::-moz-placeholder {
    color: #ddcfcf;
}

.newsletterform .form-control:-ms-input-placeholder {
    color: #ddcfcf;
}

.newsletterform .form-control:-moz-placeholder {
    color: #ddcfcf;
}

.newslettersubmitbtn {
    background: #fff;
    border-radius: 80px;
    border: #fff 1px solid;
    padding: 12px 30px;
    margin-top: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all linear 0.5s;
    box-shadow: #56050669 5px 5px 5px;
    color: #a00000;
}

.newslettersubmitbtn i {
    margin-left: 15px;
    transition: all linear 0.5s;
}

.newslettersubmitbtn:hover {
    background: transparent;
    border: #ffffffbb 2px solid;
    box-shadow: none;
}

.newslettersubmitbtn:focus {
    background: transparent !important;
    border: #ffffffbb 2px solid !important;
    box-shadow: none;
    color: #fff;
}

.newslettersubmitbtn:active {
    background: transparent !important;
    border: #ffffffbb 2px solid !important;
    box-shadow: none;
    color: #fff;
}

.newslettersubmitbtn:hover i {
    margin-left: 20px;
}

.support-section {
    padding: 100px 0;
}

.support-section h1 {
    line-height: 38px;
    text-align: center;
    font-style: italic;
    width: 75%;
    margin: auto;
    line-height: 45px;
    color: #000;
    margin-top: 30px;
}

.support-section h1 span {
    color: #c02033;
}

.btn-outline-involved {
    border: 1px solid #d96e6e;
    background-color: #fff;
    color: #990303;
    padding: 14px 22px 13px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: #f7b2b252 1px 2px 5px 3px;
    letter-spacing: 0;
    text-decoration: none;
}

.support-section .btn-donate {
    padding: 16px 38px 13px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    background: #990303;
    margin-right: 10px;
}

.support-actions .btn {
    margin-right: 10px;
}
.support-actions{
	margin-top:20px !Important;
}
/*Footer*/
footer {
    background: url(../images/footerbg.png) no-repeat;
    color: #fff;
    padding: 80px 0 10px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    position: relative;
	z-index:9;
}
footer:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #a00000ef;
}

.footercontainer {
    z-index: 99;
    color: #fff;
}

.footer-left-text {
    font-size: 20px;
    line-height: 1.3;
    max-width: 450px;
    margin-bottom: 30px;
    font-family: "Newsreader", serif;
    color: #e3d7d7;
}

.footer-left-text span {
    font-style: italic;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 18px;
    font-family: "DM Sans", sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: #e2cdcd;
    text-decoration: none;
    font-size: 15px;
    transition: all linear 0.2s;
}

.footer-links li a:hover {
    margin-left: 5px;
    color: #fff;
}

.footer-cta-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
}

.footerDonate {
    background: #990303;
    color: #fff;
    border: 1px solid #edadadd4;
    padding: 12px 30px 10px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all linear 0.5s;
}

.footerDonate:hover {
    background: #ffffff;
    box-shadow: #ffffff42 5px 5px 5px;
    color: #a00000;
}

.footer-note {
    font-size: 15px;
    letter-spacing: 0.2px;
    color: #cdcdcd;
}

.footer-legal {
    font-weight: 500;
    color: #e9e9e9ab;
    font-size: 16px;
    transition: all linear 0.5s;
}

span.divider {
    color: #e9e9e9ab;
    padding-left: 12px;
    padding-right: 12px;
}

.footer-legal:hover {
    color: #fff;
}

.footerbottomContainer {
    margin-top: 40px;
    position: relative;
    z-index: 99;
    border-top: #a46767 1px solid;
    padding-top: 33px;
}

.footer-copy {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.2px;
    text-align: right;
}

.footer-copy a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all linear 0.2px;
}

.footer-copy a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 80px;
}

.socialicon_footer a {
    margin-right: 15px;
    color: #fff;
    position: relative;
    top: 0;
    transition: all linear 0.2s;
}

.socialicon_footer a:hover {
    position: relative;
    top: -5px;
}

/*****floating donate button***********/
.btn-floating:hover img {
    margin-bottom: -3px
}

.donatenow img {
    width: 20px;
    height: 20px;
}

.btn-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: 45px;
    height: 45px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .2s;
}

.btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
}

.btn-floating span {
    font-size: 14px;
    margin-left: 5px;
    transition: .2s;
    line-height: 0px;
    display: none;
    font-weight: 600;
}

.btn-floating:hover span {
    display: inline-block;
}

.btn-floating.donatenow {
    background-color: #ab0b09;
    bottom: 25px;
    box-shadow: 5px 5px 15px #6d1312;
    border: #ff232382 1px solid;
}

.btn-floating.donatenow:hover {
    background-color: #ab0b09;
}

/*************inner banner**************/
.innerbanner {
    position: relative;
}

.innerbanner:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(97deg, #000000ab, #0000007a);
    border-radius: 70px;
}

.innerbanner img {
    border-radius: 70px;
    width: 100%;
    height: 579px;
    object-fit: cover;
}

.bannertext {
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    top: 60%;
    bottom: 0;
    transform: translateY(-60%);
    color: #fff;
    width: 80%;
}

.aboutbannertext h1 {
    font-size: 48px;
    font-weight: 400;
}

/*********About us Page Css**************/
.about-impact-section {
    padding: 80px 0;
}

.aboutinnercontainer {
    width: 80%;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin: auto;
}

.about-impact-left-text {
    font-size: 32px;
    font-family: var(--heading-font);
    color: #2F2B2B;
    line-height: 38px;
    flex: 4;
    padding-right: 145px;
}

.about-impact-right {
    flex: 1;
}

.aboutstat-number h2 {
    font-weight: 600;
    font-size: 48px;
    font-style: italic;
    color: #000;
    margin-bottom: 0;
    line-height: 40px;
}

.statdivider {
    width: 230px;
    height: 2px;
    background: #333;
    margin: 30px -40px;
}

.stat span {
    font-size: 16px;
    color: #353434;
}

.aboutvideo-section {
    background: #fff;
    padding: 50px 0;
    margin: 50px 0;
    margin-top: 0;
}

.aboutvideo-section iframe {
    width: 640px;
    height: 387px;
    margin: auto;
    border-radius: 44px;
}

.timeline-section h1 {
    font-size: 48px;
    font-weight: normal;
    text-align: center;
    line-height: 54px;
}

.timelinepara {
    width: 80%;
    text-align: center;
    font-weight: 300;
    margin: auto;
    color: #EFEFEF;
    margin-bottom: 100px;
    margin-top: 10px;
    letter-spacing: 0.1px;
}

.timeline-section {
    padding: 80px 0 140px 0;
    width: 100%;
    background: var(--background-color);
    border-radius: 70px;
    color: #fff;
}

.timeline {
    position: relative;
    padding-left: 90px;
    max-width: 850px;
    margin: auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 28px;
    top: -30px;
    width: 1px;
    bottom: -50px;
    background: #fff;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-icon {
    position: absolute;
    left: -88px;
    top: 0px;
    width: 51px;
    height: 51px;
    border-radius: 50%;
    background: #b30000;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.year {
    font-size: 15px;
    opacity: .8;
    font-family: "Newsreader", serif;
    font-weight: 600;
}

.timeline-content h3 {
    margin: 2px 0;
    font-size: 32px;
    font-weight: 300;
}

.timeline-content p {
    max-width: 850px;
    font-size: 16px;
    line-height: 23px;
    font-weight: 200;
    letter-spacing: 0.5px;
    color: #e1dfdf;
}

.missionvisionContainer {
    margin: 80px 0;
}

.missionvisionbox {
    display: flex;
    max-width: 1160px;
    background: #fff;
    padding: 100px;
    margin: auto;
    border-radius: 70px;
    position: relative;
    color: #454343;
    box-shadow: rgb(0 0 0 / 5%) 1px 4px 13px 3px;
}

.missionvisionbox:after {
    position: absolute;
    content: '';
    top: 80px;
    bottom: 80px;
    width: 2px;
    background: #a00000;
    left: 0;
    right: 0;
    margin: auto;
}

.missionvisionbox h1 {
    color: #A00000;
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 20px;
}

.missionvisionbox {
    line-height: 25px;
}

.visiontext p {
    padding-right: 114px;
}

.whereweWork_section {
    margin-bottom: 80px;
}

.workbox {
    background: #fff;
    border: #696969 1px solid;
    padding: 42px 38px;
    border-radius: 32px;
    font-size: 17px;
    min-height: 300px;
    position: relative;
    box-shadow: #d5838363 1px 4px 5px 0px;
}

.workbox img {
    position: absolute;
    top: 40px;
    right: 10px;
}

.workbox p {
    margin-top: 30px;
    line-height: 24px;
}

.workbox h2 {
    font-style: italic;
    color: #000;
    margin-top: 30px;
}

.whereweWork_section h1 {
    color: #000;
    letter-spacing: -0.2px;
    font-size: 48px;
}

.whereweWork_section h1 em {
    color: #a00000;
    font-weight: 600;
}

.aboutquote {
    margin: 80px 0;
}

.aboutquote h2 {
    width: 80%;
    font-size: 40px;
    margin: auto;
    text-align: center;
    color: #000000;
    font-style: italic;
}

.quoteauthor {
    font-weight: 700;
    color: #000;
    position: relative;
}

.quoteauthor:after {
    position: absolute;
    content: '';
    width: 25px;
    height: 2px;
    background: #000;
    left: -36px;
    top: 12px;
}

/****founderContainer-About*****/
.founder-container {
    display: flex;
    gap: 20px;
    align-items: stretch;
    /* keeps equal height */
    width: 80%;
    margin: auto;
    flex-wrap: wrap;
}

.founder-text {
    flex: 7;
    background: #fff;
    padding: 50px;
    border-radius: 40px;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-text h3 {
    font-size: 32px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #000;
}

.founder-text p {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.founder-image {
    flex: 3;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
}

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

.founder-container h2 {
    color: #a00000;
    font-style: italic;
    font-size: 48px;
    margin-bottom: 0px;
    width: 100%
}

/***responsive director tab****/
.commitee_Section {
    padding: 80px 0 140px 0;
    width: 100%;
    background: var(--background-color);
    border-radius: 70px;
    margin-top: 80px;
}

.responsive-tabs {
    position: relative;
}

.responsive-tabs {
    position: relative;
}

.responsive-tabs::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100px;
    width: 70%;
    height: 2px;
    background: #fff;
    margin: auto;
}

/* Tab buttons */
.responsive-tabs .ttab {
    padding: 22px 22px 16px;
    cursor: pointer;
    font-size: 30px;
    font-style: italic;
    color: #fff;
    font-family: var(--heading-font);
    border-radius: 47px;
    font-weight: 500;
    margin: 25px;
    display: inline-block;
    transition: 0.3s;
}

.responsive-tabs .ttab.active {
    background: #ffffff;
    color: #a00000;
}

.responsive-tabs .ttabcontent {
    display: none;
    padding: 20px 0;
}

.ttabcontent h3 {
    font-style: italic;
    font-size: 38px;
    text-align: center;
    color: #fff;
    margin-top: 30px;
}

/* ---------- DESKTOP ---------- */
@media (min-width:768px) {
    .responsive-tabs {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .responsive-tabs .ttab {
        float: none;
    }

    .responsive-tabs .ttabcontent {
        width: 100%;
        order: 10;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width:767px) {
    .responsive-tabs {
        display: block;
    }

    .responsive-tabs::after {
        display: none;
    }

    .responsive-tabs .ttab {
        display: block;
        margin: 0;
        border-radius: 0;
        border-bottom: 1px solid #ccc;
        background: #eee;
        color: #333;
        font-size: 20px;
        padding: 15px;
    }

    .responsive-tabs .ttab.active {
        background: #fff;
        color: #000;
    }

    .responsive-tabs .ttabcontent {
        padding: 15px;
    }
}

.team-slider {
    padding: 25px 105px;
}

.teamcard {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    min-height: 430px;
	text-align:center;
}

.teamcard h3 {
    color: #000;
    font-size: 28px;
    font-style: italic;
    width: 80%;
    line-height: 30px;
	margin: auto;
	margin-top: 14px;
    text-align: center;
 
}

.teamcard h6 {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #464646;
}

.profileimg {
    width: 150px !important;
    height: 150px !important;
    object-fit: cover;
	margin:0 auto;
	border-radius:50%;
}

.teamcard p {
    width: 80%;
	margin: auto;
    margin-top: 14px!important;
    color: #3f3d3d !important;
}

.team-slider .owl-nav i {
    width: 55px;
    height: 55px;
    line-height: 55px;
}

/*partnersection*/
.ourPartner_section {
    margin: 80px;
    position: relative;
}

.ourPartner_section:after {
    position: absolute;
    content: '';
    width: 80%;
    height: 2px;
    background: #000;
    margin: auto;
    left: 0;
    right: 0;
    bottom: -80px;
}

.ourPartner_section h1 {
    width: 70%;
    margin: auto;
    text-align: center;
    font-size: 48px;
    letter-spacing: -0.2px;
    color: #000;
    font-weight: 400;
    line-height: 48px;
	margin-top:30px !important;
}

.ourPartner_section h1 em {
    color: #a00000;
}

.partners-wrap {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.partner-card {
    width: 210px;
    height: 170px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #796060;
    box-shadow: #d5838363 1px 4px 5px 0px;
    transition: 0.3s;
}

.partner-card img {
    max-width: 160px;
    max-height: 100px;
    object-fit: contain;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}





/****Why we Care Section********/
.whywecare-arithmetic-section {
    margin: 50px 0;
    background: #fff;
    padding: 50px;
}

.whywecare-arithmetic-section h2 {
    font-style: italic;
    color: #a00000;
    font-size: 48px;
}

.arithmeticbox {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    max-width: 1000px;
    margin: auto;
}

.arithmeticitem {
    flex: 1;
    text-align: center;
}

.arithmeticitem h4 {
    padding: 10px 20px;
    text-align: center;
    font-size: 32px;
    color: #000;
    font-weight: 400;
}

.arithmeticitem:not(:last-child) {
    border-right: 2px solid #333;
}

.humanTraffickingContent {
    margin: 80px 0;
}

.humanTraffickingContent p {
    line-height: 27px;
    text-align: center;
    max-width: 1050px;
    text-align: center;
    font-size: 18px;
    margin: auto;
    color: #414141;
}

.l-text {
    font-size: 40px;
    color: #a00000;
    font-style: italic;
    font-family: var(--heading-font);
    font-weight: 500;

}

.lifeBegins_section {
    display: flex;
    max-width: 1160px;
    background: #fff;
    padding: 100px 50px;
    margin: 80px auto;
    border-radius: 70px;
    position: relative;
    color: #454343;
    box-shadow: rgb(0 0 0 / 5%) 1px 4px 13px 3px;
    text-align: center;
    line-height: 24px;
}


section.truestory_section {
    margin: 150px 0;
}

.truestory_section h2 {
    font-size: 42px;
    color: #000;
}

.truestory_section em {
    color: #a00000;
}

.impacttext-left {
    padding-right: 190px;
}
.impacttext-left p{
	text-align:justify;
}
.impactChildren_section {
    margin: 80px auto;
    padding: 100px 0;
    background: #f3eee5;
    border-radius: 70px;
}

.truestorytext-left {
    padding-right: 150px;
}

.truestorytext-left p{
	text-align:justify;
}
.truestoryimgright_holder img {
    border-radius: 24px;
    border: #fff 6px solid;
    box-shadow: rgb(0 0 0 / 5%) 1px 4px 13px 3px
}

.impactChildren_section h2 {
    font-size: 42px;
    color: #000;
    line-height: 42px;
}

.impactChildren_section em {
    color: #a00000;
}

.impactimgright_holder img {
    border-radius: 24px;
    border: #fff 6px solid;
    box-shadow: rgb(0 0 0 / 5%) 1px 4px 13px 3px
}

.impactimgright_holder {
    position: relative;
}

.impactimgright_holder:after {
    position: absolute;
    content: '';
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: var(--background-color);
    left: 40px;
    top: -100px;
}

.impactimgright_holder img {
    position: relative;
}

.impactimgright_holder:before {
    position: absolute;
    content: url(../images/small-logo.png);
    width: 70px;
    height: 70px;
    background: #fff;
    z-index: 99;
    border-radius: 50%;
    right: 25%;
    top: 40%;
    line-height: 96px;
    text-align: center;
    box-shadow: #500606b8 1px 1px 15px;
	display:none;
}

.impactimgright_holder img {
    position: relative;
    z-index: 9;
}

.whyexit_section {
    margin: 100px 0;
}

.whyexittext-right h2 {
    font-size: 42px;
    font-weight: 500px;
    color: #000;
}

.whyexittext-right em {
    color: #a00000;
}

.whyexitimg_holder img {
    border-radius: 24px;
    border: #fff 6px solid;
    box-shadow: rgb(0 0 0 / 5%) 1px 4px 13px 3px
}

.whyexittext-right {
    padding-left: 40px;
}

.whyexittext-right p strong {
    color: #000;
}
.whyexittext-right p{
text-align:justify;
}
.howaawcreponds_section {
    padding: 80px 0;
    width: 100%;
    background: var(--background-color);
    border-radius: 70px;
    margin-top: 80px;
}

.whyrespond_textleft {
    color: #fff;
    font-weight: 300;
    padding-right: 150px;
    font-size: 18px;
    line-height: 25px;
}
.whyrespond_textleft p{
	text-align:justify;
}
.respondimg-holder img {
    border-radius: 24px;
}

.howaawcreponds_section h2 {
    color: #fff;
    font-weight: 400;
    font-size: 42px;
}




/************resources*************/
.resource-quote {
    background-color: #fff;
    padding: 100px;
    text-align: center;
    color: #3D393A;
    margin-top: 40px;
    margin-bottom: 40px;
}

.resource-quote h2 {
    font-size: 48px;
    line-height: 52px;

}

.annual-impact {
    padding: 90px 0;
}

.annual-impact h2 {
    color: #000;
    font-family: "Newsreader", serif;
    font-size: 48px;
    letter-spacing: -0.3px;
}

.annual-impact h2 span {
    color: #b30000;
    font-style: italic;
}

.annual-impact h4 {
    color: #b30000;
    font-style: italic;
    font-size: 36px;
    font-weight: 600;
    padding-left: 6px;
}

.annualsubtext {
    color: #000 !important;
}

.annual-impact p {
    color: #626262;
    line-height: 1.2;
    padding: 3px 15px 3px 3px;
    font-size: 18px;
}

.annual-impact-image img {
    width: 100%;
    border-radius: 70px;
    display: block;
}

.annual-impact-content {
    padding-left: 40px;
}

.annual-impact-card,
.annual-impact-image {
    background: #fff;
    border: 1px solid #a00000;
    border-radius: 70px;
    overflow: hidden;
}

.annual-impact-card img {
    width: 100%;
    display: block;
}

.annual-impact-card-content {
    padding: 40px;
}

.annual-impact-card-content h5 {
    color: #b30000;
    font-style: italic;
}

.report-btn {
    display: inline-block;
    background: #b30000;
    color: #fff;
    padding: 10px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.report-btn:hover {
    background: #8e0000;
    color: #fff;
}

p.pdf-info {
    color: #000;
    font-size: 15px;
    font-weight: 600;
}


.newsletter_Section {
    padding: 100px 0 120px 0;
    width: 100%;
    background: var(--background-color);
    border-radius: 70px;
    margin-top: 80px;
}

.newslettertext_Download {
    color: #fff;
    font-size: 28px;
    font-style: italic;
}

.resourcestab .ttab {
    font-size: 22px;
    font-weight: 600;
    padding: 15px 22px 7px;
    letter-spacing: -0.4px;
    margin: 20px 10px;
}

.resourcestab::after {
    top: 0 !important;
}

.coverage-box {
    background: #b30000;
    padding: 80px 0;
    border-radius: 35px;
}

.coverage-content {
    color: #fff;
}

.media-coverage h2 {
    color: #000;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.2px;

}

.media-coverage h2 em {
    color: #a00000;
    font-weight: 500;
}

.coverageitem {
    margin-bottom: 80px;
}

.coverage-content p {
    letter-spacing: 200;
    letter-spacing: 0.1px;
}

.coverage-content h3 {
    font-size: 42px;
    font-style: italic;
    font-family: 'Newsreader', serif;
    margin-bottom: 0;
}

.coverage-content h5 {
    font-size: 36px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    line-height: 1;
    margin-bottom: 30px;
}

.coverage-box img {
    border-radius: 30px;
}

.law-legal_section {
    margin: 100px 0;
    position: relative;
}

.legal-box p {
    padding-right: 10px;
}

.lawheading h2 {
    color: #000;
    font-family: "Newsreader", serif;
    font-size: 48px;
    letter-spacing: -0.3px;
    line-height: 48px;
    font-weight: 400;
}

.lawheading em {
    color: #a00000;
}

.legalcontainer {
    margin-top: 60px;
}

.legal-box h4 {
    font-style: italic;
    font-weight: 500;
    margin-bottom: 14px;
    color: #000;
    font-size: 24px;
}

.legal-box p {
    font-size: 16px;
    line-height: 1.4;
    color: #000;
}

.legal-box a {
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    color: #000;
    transition: all linear 0.2s;
}

.legal-box a:hover {
    color: #a00000;
}

.law-legal_section:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    margin: auto;
    left: 0;
    right: 0;
    bottom: -80px;
}

.newsletter-card {
    background: #FFEEEE;
    border-radius: 25px;
    overflow: hidden;
    text-align: center;
    height: 100%;
}

.card-img img {
    width: 100%;
    display: block;
}

.card-content {
    padding: 22px;
}

.card-content h5 {
    margin-bottom: 10px;
    font-weight: 600;
    color: #000;
    font-family: "Newsreader", serif;
    font-style: italic;
}

.card-content p {
    font-size: 14px;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.download-btn {
    display: inline-block;
    background: #b30000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}

.download-btn:hover {
    background: #8e0000;
}


/*************Our Programm*******************/
.our-programContent {
    background: #fff;
    margin: 70px 0;
    padding: 80px 0;
    text-align: center;
}

.our-programContent h2 {
    font-size: 48px;
    line-height: 52px;
    font-weight: 400;
    color: #000000;
}

.our-programContent em {
    color: #a00000;
}

.our-programContent p {
    width: 70%;
    margin: auto;
    margin-top: 20px;
}

.ourprogram_Section {
    background: linear-gradient(178deg, #f5f1e8 37%, #FEFDF9 100%) repeat;
    border-radius: 70px 70px 0 0;
    padding: 20px 0 100px 0;
    box-shadow: #f1ece9 0px 11px 20px 3px;
    position: relative;
}

.ourprogram_Section:after {
    position: absolute;
    content: '';
    left: -36px;
    width: 50px;
    background: #c00000;
    top: 65px;
    bottom: 65px;
    border-radius: 50px;
}

.umeedcontainer img {
    border-radius: 70px;
}

.umeedcontent_right {
    padding-left: 68px;
    padding-right: 100px;
    font-size: 18px;
    line-height: 24px;
    padding-top: 50px;
}
.umeedcontent_right p{
	text-align:justify;
}
.umeedcontent_right h2 {
    font-size: 48px;
    font-style: italic;
    color: #000;
}

.umeedcontent_right h2 span {
    color: #a00000;
}

.programimgholder {
    position: relative;
}

.programcontentbox {
    background: #fff;
    border-radius: 45px;
    padding: 28px 36px 10px 39px;
    position: absolute;
    bottom: 25px;
    width: 70%;
    left: 25px;
    font-size: 16px;
}

.ourprogramtab .ttab {
    color: #a00000;
    font-weight: 400;
    padding: 12px 26px 8px 26px;
}

.ourprogramtab::after {
    display: none;
}

.ourprogramtab .ttab.active {
    background: #a00000;
    color: #fff !important;
}

.ourprogram_Section h2 {
    font-size: 48px;
    color: #000;
    font-weight: 400;
    line-height: 52px;
}

.ourprogram_Section h2 em {
    color: #a00000;
}

.program-hline {
    width: 70%;
    margin: auto;
    opacity: 1;
}

.accordion {
    max-width: 600px;
}

.acc-item {
    border-bottom: 1px solid #333;
}

.acc-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 25px;
    cursor: pointer;
    color: #222;
    font-family: var(--heading-font);
}

.icon {
    font-size: 39px;
}

.acc-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.acc-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.4;
    padding-right: 80px;
}

.acc-item.active .acc-content {
    display: block;
    margin-bottom: 20px;
}

.ourprogramright_imageholder:after {
    position: absolute;
    content: '';
    width: 490px;
    height: 490px;
    border-radius: 50%;
    background: var(--background-color);
    left: 90px;
    top: -80px;
    z-index: 9;
}

.ourprogramright_imageholder {
    margin-top: 80px;
    position: relative;
    padding-left: 50px;

}

.ourprogramright_imageholder img {
    border-radius: 24px;
    border: #fff 6px solid;
    box-shadow: rgb(0 0 0 / 5%) 1px 4px 13px 3px;
    position: relative;
    z-index: 99;
    max-width: 440px;
    height: 321px;
    object-fit: cover;
}

.ourprogramright_imageholder:before {
    position: absolute;
    content: url(../images/small-logo.png);
    width: 70px;
    height: 70px;
    background: #fff;
    z-index: 991;
    border-radius: 50%;
    right: 16%;
    top: 40%;
    line-height: 96px;
    text-align: center;
    box-shadow: #500606b8 1px 1px 15px;
	display:none;
}

.accordion-top-heading {
    font-size: 32px;
    margin-top: 100px;
    border-bottom: #111 2px solid;
    display: inline-block;
}




/***************program_realstoriesSection************/
.program_realstoriesSection {
    margin: 100px 0;
}

.program_realstoriesSection h2 {
    font-size: 48px;
    color: #000;
    line-height: 48px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.program_realstoriesSection h2 em {
    color: #a00000;
}

.fixedcontentStories {
    margin-top: 80px;
}

.fixedtop_section {
    position: sticky;
    top: 25px;
    margin-bottom: 100px;
}

.fixedcontentStories h2 {
    font-size: 42px;
    font-style: italic;
    color: #a00000;
    font-weight: 500;
    line-height: 40px;
    position: relative;

}

.fixedcontentStories h2::after {
    position: absolute;
    content: '';
    width: 100px;
    left: 0;
    background: #c00000;
    height: 3px;
    top: 100px
}

.storiescont h4 {
    font-size: 28px;
    color: #000;
}

.storiescont p {
	text-align:justify;
    color: #676767;
    max-width: 630px;
    font-size: 18px;
    line-height: 25px;
}

.name_user {
    color: #a00000;
    font-style: italic;
}

.storiescont {
    margin-bottom: 60px;
}

.ourprogramhr hr {
    width: 80%;
    margin: auto;
    opacity: 1;
    border-color: #000;
}

.programimpactnumber_section{
    padding: 80px 0 20px 0;
    width: 100%;
    background: var(--background-color);
    border-radius: 70px;
    margin-top: 80px;
}

.programtitle h1{
	color: #fff !important;
	text-align: center !important;
	font-weight: 400 !important;
	font-size: 48px;
	line-height: 44px;
	position: relative;
	margin-bottom: 30px;
}
.programtitle h1:after{
	position: absolute;
	content: '';
	width: 70%;
	height: 2px;
	background: #fff;
	left: 0;
	right: 0;
	margin: auto;
	bottom: -20px;
}

.impactImagecontainer {
    display: flex;
    gap: 20px;
    margin: auto;
    justify-content: center;
}

.impactImagecontainer img {
    max-width: 445px;
    height: 380px;
    border-radius: 30px;
    object-fit: cover;
}

.bImpacttab .ttab {
    padding: 18px 24px 10px 24px;
    font-size: 32px;
}

.bImpacttab::after {
    display: none;
}

.bImpacttab .ttab.active {
    color:#a00000 !important;
}

.impactNumbercontent {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 880px;
    margin: 50px auto;
    color: #fff;
}
.space{
	margin-top:90px!important;
}
.impactNumberheadingleft,
.impactNumberheadingright {
    width: 50%;
}

.impact_headingtop {
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    display: inline-block;
    margin-bottom: 10px;
}

.impactNumberheadingleft h3 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
    text-align: left;
    font-style: normal;
}

.impactNumberheadingleft h3 em {
    font-weight: 600;
    font-style: italic;
}

.impactNumberheadingright ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    line-height: 1.6;
}

.impactNumberheadingright ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.impactNumberheadingright ul li:after {
    position: absolute;
    content: "_";
    left: 0;
    top: -6px;
}
/***************Get Involved*************/
.gelinvolvedtext h2 {
    font-weight: 400;
    letter-spacing: -0.5px;
    width: 75%;
    margin: auto;
}

.gelinvolvedtext .highlight {
    font-weight: 500;
}

.volunteertestimonial_Section {
    background: #A00000;
    border-radius: 70px;
    padding: 100px 0;
}

.volunteertestimonial_Section h2 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 400;
    line-height: 52px;
    font-weight: 400;
}

.testimonialcontentbox {
    background: #fff;
    padding: 87px 65px 30px 65px;
    border-radius: 25px;
    min-height: 440px;
    margin: 20px;
}

.testimonialcontentbox p {
    color: #413F3F;
    font-size: 16px;
    min-height: 250px;
}

.testimonialcontentbox h6 {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;

}

.testimonialcontentbox .t-subname {
    color: #333333;
}

.involvedpartnerSection h1 {
    width: 75%;
    line-height: 48px;
}

.involvedPartnertext {
    width: 65%;
    margin: auto;
    text-align: center;
}

.involvedpartnerSection::after {
    display: none;
}

.respondimg-holder img {
    height: 290px;
    width: 70%;
    object-fit: cover;
}

.sendupmessageSection {
    padding: 100px 0;
}

.sendupmessageSection h1 {
    line-height: 42px;
    color: #000;
    margin-bottom: 20px;
	font-size:42px;
}

.sendupmessageSection h1 em {
    color: #a00000;
}

.form-container {
    margin: auto 50px;
    padding-left: 100px;
}
.wpcf7-not-valid-tip {
    font-size: 14px !important;
}

.formrow {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 2px;
    font-weight: 700;
    font-size: 14px;
    color: #000;
}
.formrow .form-group p span input{
	width:100%;
}
.form-group p{
	margin-bottom:0px;
}
.checkbox p{
	margin-bottom:0px;
}
input,
select,
textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
}

textarea {
    resize: none;
	width:100%;
    height: 120px;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select select {
    width: 100%;
    padding: 12px 40px 12px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background-color: #fff;
    font-size: 14px;
    color: #6b7280;
    appearance: none;
    /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    cursor: pointer;
}

/* custom arrow */
.custom-select::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("../images/select.png") no-repeat center;
    background-size: auto;
    pointer-events: none;
}

/* focus effect */
.custom-select select:focus {
    border-color: #ccc;
    background-color: #fff;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    font-size: 14px;
}

input[type=checkbox] {
    accent-color: #a00000;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #a00000;
    color: #a00000;
    display: inline-block;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}
.wpcf7-list-item {
    margin: 0;
}
.sendmessage {
    background: #a00000;
    box-shadow: none!important;
    padding: 12px 25px;
    color: #fff!important;
    border: #a00000 1px solid;
    border-radius: 28px;
    margin-top: 30px;
    transition: all linear 0.3s;
	font-size:16px;
}

.sendmessage:hover {
    background: #fff;
    color: #000 !important;
    border: #000 1px solid;
    box-shadow: 0px 2px 19px rgb(241 141 141);
}

.reachout_Section {
    background: #A00000;
    border-radius: 70px;
    padding: 100px 0;
}

.contactcard {
    background: #fff;
    margin-bottom: 30px;
    border-radius: 28px;
    padding: 28px;
}

.contactcard h4 {
    margin-top: 14px;
    color: #000;
    font-size: 28px;
    font-weight: 400;
}

.contactcard p {
    color: #292929;
    font-size: 16px;
    line-height: 22px;
}
.contactcard p a{
    color: #292929;
    font-size: 16px;
    line-height: 22px;
	text-decoration:none;
}
.reachoutcardsection {
    width: 90%;
    margin: auto;
}

.locationtext {
    width: 85%;
}

.officeimg {
    width: 100%;
    border-radius: 15px;
}

.contactcardright {
    padding: 15px;
    min-height: 517px;
}

.contactcontentbtm {
    padding: 20px 30px;
}

.contactcardright span {
    color: #a00000;
}

.reachoutcardsection h2 {
    font-size: 42px;
    line-height: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.whitetext {
    width: 70%;
    margin: auto;
    color: #fff;
    text-align: center;
    font-size: 19px;
    font-weight: 300;
}

.faqsSection {
    margin: 80px 0;
    position: relative;
}

.faqsSection .accordion {
    max-width: 800px;
    margin: auto;
}

.faqsSection h2 {
    line-height: 42px;
    color: #000;
    margin-bottom: 20px;
    font-size: 48px;
}

.faqsSection h2 em {
    color: #a00000;
}

.blacktext {
    width: 70%;
    margin: auto;
    color: #000;
    text-align: center;
    font-size: 19px;
    font-weight: 300;
}

.faqsSection .acc-item {
    background: #F2F2F2;
    margin-bottom: 10px;
    border-bottom: none;
    padding: 10px 25px;
    border-radius: 15px;
}

.faqsSection .acc-title {
    padding: 12px 0;
    font-size: 24px;
}


.defaultContent {
    background: #fff;
    margin: 70px 0;
    padding: 80px 0;
}
.storiescont br{
	display:none;
}
.footer-bottom {
    margin-top: 20px;
}
.navbar-collapse.menu-overlay.menualign.open ul li a {
    font-weight: 900;
}

.ourcareer_section {
    text-align: center;
    padding: 80px 15px 0;
	width:70%;
	position:relative;
	margin:auto;
}
.ourcareer_section h2{
	font-size:48px;
	color:#000;
	line-height:44px;
	margin-bottom: 20px;
}
.ourcareer_section h2 em{
	color:#a00000;
}
.ourcareer_section h4{
	color:#000;
}
.ourcareer_section h4 a{
	color:#a00000;
}
.careercontainer {
    background: #fff;
    padding: 100px 80px;
    border-radius: 70px;
	box-shadow: rgb(0 0 0 / 5%) 1px 4px 13px 3px;
}
.careercontainer p {
    width:90%;
    margin: auto;
    margin-bottom: 16px;
}
.program-link{
	display:none;
}

/*-------------------umeed udaan logo----------------------*/
.p-logo-name {
	display: flex;
	gap: 20px;
}

.programlogo img {
	width: 44px;
	height:auto;
}

.programlogo.udaanlogo img {
	width: 40px;
}

.ourprogramtab .ttab img {
	filter: brightness(0) saturate(100%) invert(12%) sepia(100%) saturate(6500%) hue-rotate(-5deg) brightness(70%) contrast(110%);
	position: relative;
	top: -5px;
}

.ourprogramtab .ttab.active img {
	filter: none;
}

.headingiconummeed {
	width: 60px;
	float: left;
}

.bImpacttab .ttab img {
	position: relative;
	top: -5px;
}

.bImpacttab .ttab.active img {
	filter: brightness(0) saturate(100%) invert(12%) sepia(100%) saturate(6500%) hue-rotate(-5deg) brightness(70%) contrast(110%);
}
.footerbox2 h2{
	    font-size: 18px;
    margin-bottom: 18px;
    font-family: "DM Sans", sans-serif;
}
.footerbox2 ul{
	list-style-type:none;
	padding-left:0px;
}
.footerbox2 ul li a{
	    color: #e2cdcd;
    text-decoration: none;
    font-size: 15px;
    transition: all linear 0.2s;
}
.footerbox2 ul li a:hover{
	margin-left: 5px;
    color: #fff;
}
.footerbox2 ul li{
	margin-bottom:8px;
}
.footerbox2 ul .current-menu-item a {
    color: #e2cdcd !important;
}
.donatebox{
	text-align:center;
}
.donatebox img{
	margin-bottom:20px;
}


/*-----------------------ketto donate button-------------------------*/
