/* =========================================================
   VANDIMAI FOUNDATION
   MAIN FRONTEND STYLESHEET
========================================================= */

:root {
    --orange: #f26522;
    --orange-dark: #dc511b;

    --white: #ffffff;
    --black: #222222;
    --dark: #363636;

    --text: #555555;
    --muted: #777777;

    --border: #eeeeee;

    --transition: 0.25s ease;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;

    color: var(--text);
    background: var(--white);

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   NAVBAR
========================================================= */

.main-navbar {
    position: sticky;
    top: 0;

    z-index: 1000;

    height: 88px;

    padding: 0;

    background: var(--white);

    border-bottom: 1px solid var(--border);

    transition:
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.main-navbar.is-scrolled {
    box-shadow:
        0 8px 24px
        rgba(0, 0, 0, 0.10);

    background:
        rgba(255, 255, 255, 0.97);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-navbar .container {
    height: 88px;

    display: flex;
    align-items: center;
}


/* =========================================================
   TEMPORARY LOGO
========================================================= */

.charity-brand {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-right: 35px;
}

.charity-brand-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--orange);
    color: var(--white);

    font-size: 18px;
}

.charity-brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.charity-brand-text strong {
    color: #202020;

    font-size: 20px;
    font-weight: 700;
}

.charity-brand-text small {
    margin-top: 4px;

    color: #666666;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   NAV LINKS
========================================================= */

.main-navbar .navbar-nav {
    display: flex;
    align-items: center;

    gap: 5px;
}

.main-navbar .nav-link {
    padding: 34px 10px !important;

    color: #171717;

    font-size: 14px;
    font-weight: 400;

    line-height: 20px;

    text-transform: uppercase;

    transition: color var(--transition);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--orange);
}


/* =========================================================
   DROPDOWN
========================================================= */

.main-navbar .dropdown-menu {
    min-width: 175px;

    padding: 8px 0;
    margin-top: 0;

    border: 0;
    border-radius: 0;

    background: var(--white);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.13);
}

.main-navbar .dropdown-item {
    padding: 9px 18px;

    color: #555555;

    font-size: 12px;

    text-transform: uppercase;

    transition:
        color var(--transition),
        background-color var(--transition);
}

.main-navbar .dropdown-item:hover {
    color: var(--orange);
    background: #fafafa;
}


/* =========================================================
   SEARCH
========================================================= */

.nav-search-wrapper {
    position: relative;
}

.nav-search-button {
    width: 49px;
    height: 49px;

    margin-left: 12px;
    padding: 0;

    display: grid;
    place-items: center;

    border: 0;

    background: var(--dark);
    color: var(--white);

    font-size: 19px;

    cursor: pointer;

    transition: background-color var(--transition);
}

.nav-search-button:hover,
.nav-search-button.is-active {
    background: var(--orange);
}

.nav-search-panel {
    position: absolute;

    top: 49px;
    right: 0;

    width: 250px;

    background: var(--white);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-5px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);

    z-index: 1200;
}

.nav-search-panel.is-open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.nav-search-panel .form-control {
    height: 44px;

    border: 1px solid #dddddd;
    border-radius: 3px;

    box-shadow: none;
}

.nav-search-panel .form-control:focus {
    border-color: var(--orange);
}


/* =========================================================
   DONATE BUTTON
========================================================= */

.nav-donate-button {
    height: 49px;

    margin-left: 12px;
    padding: 0 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--orange);
    color: var(--white);

    font-size: 14px;
    font-weight: 500;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.nav-donate-button:hover {
    background: var(--orange-dark);
    color: var(--white);

    transform: translateY(-1px);
}


/* =========================================================
   HERO WRAPPER
========================================================= */

.home-hero {
    position: relative;

    overflow: hidden;

    background: #111111;
}

.hero-slider {
    position: relative;

    height: 645px;

    overflow: hidden;
}


/* =========================================================
   HERO SLIDES
========================================================= */

.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    visibility: hidden;

    z-index: 0;
}

.hero-slide-one {
    background-image: url('../images/hero/hero-1.jpg');
}

.hero-slide-two {
    background-image: url('../images/hero/hero-2.jpg');
}


/* =========================================================
   SLIDE STATES
========================================================= */

.hero-slide.is-active {
    visibility: visible;

    z-index: 2;
}

.hero-slide.is-previous {
    visibility: visible;

    z-index: 1;
}


/* =========================================================
   IMAGE TRANSITION
   TOP -> BOTTOM
========================================================= */

.hero-slide.is-image-entering {
    visibility: visible;

    z-index: 3;

    animation:
        heroImageWipe
        0.9s
        cubic-bezier(0.76, 0, 0.24, 1)
        forwards;
}

@keyframes heroImageWipe {

    from {
        clip-path: inset(0 0 100% 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }

}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.60) 0%,
            rgba(0, 0, 0, 0.36) 47%,
            rgba(0, 0, 0, 0.06) 100%
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-container {
    position: relative;

    z-index: 5;
}

.hero-content {
    width: min(100%, 850px);
}

.hero-content h5 {
    margin: 0 0 12px;

    color: var(--orange);

    font-size: 30px;
    font-weight: 700;

    line-height: 1.2;
}

.hero-content h1,
.hero-content h2 {
    margin: 0 0 15px;

    color: var(--white);

    font-size: clamp(55px, 5vw, 80px);
    font-weight: 700;

    line-height: 1.03;

    letter-spacing: -1px;
}

.hero-content h1 span,
.hero-content h2 span {
    color: var(--orange);
}

.hero-content p {
    max-width: 840px;

    margin: 0;

    color: rgba(255, 255, 255, 0.95);

    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   TEXT VISIBILITY DURING IMAGE WIPE
========================================================= */

.hero-slide.is-image-entering .hero-content {
    opacity: 0;
    visibility: hidden;
}

.hero-slide.is-active .hero-content {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   TEXT TRANSITION
   BOTTOM -> TOP
========================================================= */

.hero-slide.is-text-entering .hero-content {
    visibility: visible;

    animation:
        heroTextWipeUp
        0.72s
        cubic-bezier(0.16, 1, 0.3, 1)
        both;
}

@keyframes heroTextWipeUp {

    0% {
        opacity: 0;

        clip-path: inset(100% 0 0 0);

        transform: translateY(28px);
    }

    100% {
        opacity: 1;

        clip-path: inset(0 0 0 0);

        transform: translateY(0);
    }

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 27px;
}

.hero-cta {
    min-width: 132px;
    height: 48px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 25px;

    background: var(--orange);
    color: var(--white);

    font-size: 15px;
    font-weight: 500;

    line-height: 1;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.hero-cta:hover,
.hero-cta:focus {
    background: var(--orange-dark);
    color: var(--white);

    transform: translateY(-1px);
}


/* =========================================================
   HERO ARROWS
========================================================= */

.hero-arrow {
    position: absolute;

    top: 50%;

    width: 52px;
    height: 52px;

    padding: 0;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.58);
    color: var(--white);

    transform: translateY(-50%);

    cursor: pointer;

    z-index: 20;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.hero-arrow-left {
    left: 12px;
}

.hero-arrow-right {
    right: 12px;
}

.hero-arrow:hover {
    background: var(--orange);

    transform:
        translateY(-50%)
        scale(1.05);
}


/* =========================================================
   HERO PROGRESS
========================================================= */

.hero-progress {
    width: 100%;
    height: 4px;

    overflow: hidden;

    background: #222222;
}

.hero-progress-fill {
    display: block;

    width: 0;
    height: 100%;

    background: var(--orange);
}

.hero-progress-fill.is-running {
    animation:
        heroProgress
        5s
        linear
        forwards;
}

@keyframes heroProgress {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}



/* =========================================================
   INTRO PANELS
========================================================= */

.intro-section {
    padding: 55px 0 20px;
    background: #ffffff;
}

.intro-panels {
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.intro-panel {
    min-height: 335px;
    height: 100%;

    padding: 38px 52px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-panel-orange {
    background: var(--orange);
    color: #ffffff;
}

.intro-panel-dark {
    position: relative;

    color: #ffffff;

    background:
        linear-gradient(
            rgba(18, 18, 18, 0.80),
            rgba(18, 18, 18, 0.80)
        ),
        url('../images/hero/hero-2.jpg')
        center / cover no-repeat;
}

.intro-kicker {
    display: block;

    margin-bottom: 8px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;
}

.intro-panel h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 28px;
    font-weight: 700;

    line-height: 1.25;
}

.intro-panel p {
    max-width: 600px;

    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CHARITY FUND PROGRESS
========================================================= */

.ngo-fund-box {
    width: 100%;

    margin: 0 0 23px;
}

.ngo-fund-stats {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 10px;
}

.ngo-fund-stats > div {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.ngo-fund-stats span {
    color: rgba(255, 255, 255, 0.8);

    font-size: 12px;
    font-weight: 400;
}

.ngo-fund-stats strong {
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

.ngo-fund-goal {
    text-align: right;
    align-items: flex-end;
}

.ngo-fund-progress-track {
    position: relative;

    width: 100%;
    height: 9px;

    overflow: hidden;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.28);
}

.ngo-fund-progress-fill {
    position: absolute;

    top: 0;
    left: 0;

    height: 100%;

    border-radius: inherit;

    background: var(--orange);
}


/* =========================================================
   INTRO BUTTONS
========================================================= */

.intro-link {
    width: max-content;

    min-width: 125px;
    height: 44px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 24px;

    background: #272727;
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.intro-link:hover {
    background: #111111;
    color: #ffffff;

    transform: translateY(-1px);
}

.intro-link-orange {
    background: var(--orange);
}

.intro-link-orange:hover {
    background: var(--orange-dark);
}


/* =========================================================
   ABOUT + SERVICES
========================================================= */

.about-services-section {
    padding: 75px 0 85px;
    background: #ffffff;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
}

.about-copy h2 {
    margin: 0 0 20px;
    color: #222222;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
}

.about-copy h2 span {
    color: var(--orange);
}

.about-copy p {
    margin-bottom: 22px;
    color: #777777;
    font-size: 14px;
    line-height: 1.7;
}

.about-points {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.about-points li {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #555555;
    font-size: 14px;
}

.about-points i {
    color: var(--orange);
    font-size: 14px;
}

.section-btn {
    min-width: 115px;
    height: 42px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: var(--orange);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    transition:
        background-color var(--transition),
        transform var(--transition);
}

.section-btn:hover {
    background: var(--orange-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

/* =========================================================
   ABOUT INNER PAGE
========================================================= */

.about-page-story {
    padding: 85px 0;

    background: #ffffff;
}

.about-page-image {
    position: relative;

    height: 470px;

    overflow: hidden;
}

.about-page-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.about-page-image:hover img {
    transform: scale(1.04);
}


/* IMAGE BADGE */

.about-page-image-badge {
    position: absolute;

    right: 25px;
    bottom: 25px;

    min-width: 165px;

    padding: 17px 20px;

    display: flex;
    align-items: center;

    gap: 13px;

    background: var(--orange);
    color: #ffffff;
}

.about-page-image-badge i {
    font-size: 27px;
}

.about-page-image-badge div {
    display: flex;
    flex-direction: column;
}

.about-page-image-badge strong {
    font-size: 18px;
    font-weight: 700;
}

.about-page-image-badge span {
    font-size: 12px;
}


/* COPY */

.about-page-copy h2,
.about-work-copy h2 {
    margin: 0 0 14px;

    color: #222222;

    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
}

.about-page-copy h2 span,
.about-work-copy h2 span {
    color: var(--orange);
}

.about-page-copy p,
.about-work-copy p {
    margin: 18px 0 0;

    color: #777777;

    font-size: 14px;
    line-height: 1.75;
}


/* POINTS */

.about-page-points {
    margin: 24px 0 28px;

    padding: 0;

    list-style: none;
}

.about-page-points li {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 11px;

    color: #555555;

    font-size: 14px;
}

.about-page-points i {
    color: var(--orange);

    font-size: 14px;
}


/* =========================================================
   MISSION / VISION / VALUES
========================================================= */

.about-purpose-section {
    padding: 80px 0;

    background: #f8f8f8;
}

.about-purpose-heading {
    max-width: 650px;

    margin: 0 auto 45px;
}

.about-purpose-heading h2 span {
    color: var(--orange);
}

.about-purpose-heading p {
    font-size: 14px;
}


/* CARD */

.about-purpose-card {
    height: 100%;

    padding: 35px 30px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #eeeeee;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.about-purpose-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 14px 35px
        rgba(0, 0, 0, 0.08);
}

.about-purpose-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(242, 101, 34, 0.10);
    color: var(--orange);

    font-size: 27px;
}

.about-purpose-card h3 {
    margin: 0 0 12px;

    color: #292929;

    font-size: 20px;
    font-weight: 600;
}

.about-purpose-card p {
    margin: 0;

    color: #777777;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   WHAT WE DO
========================================================= */

.about-work-section {
    padding: 85px 0;

    background: #ffffff;
}

.about-work-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}

.about-work-item {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    padding: 23px;

    border: 1px solid #eeeeee;

    background: #ffffff;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.about-work-item:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.07);
}

.about-work-item > i {
    width: 50px;
    min-width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--orange);
    color: #ffffff;

    font-size: 21px;
}

.about-work-item h4 {
    margin: 1px 0 6px;

    color: #292929;

    font-size: 17px;
    font-weight: 600;
}

.about-work-item p {
    margin: 0;

    color: #777777;

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   FAQ PAGE
========================================================= */

.faq-page {
    padding: 85px 0;

    background: #ffffff;
}

.faq-page-heading {
    max-width: 680px;

    margin: 0 auto 45px;
}

.faq-page-heading h2 span {
    color: var(--orange);
}

.faq-page-heading p {
    max-width: 620px;

    margin: 15px auto 0;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FAQ ACCORDION
========================================================= */

.faq-accordion .accordion-item {
    margin-bottom: 12px;

    overflow: hidden;

    border: 1px solid #eeeeee;
    border-radius: 0;

    background: #ffffff;
}

.faq-accordion .accordion-button {
    min-height: 62px;

    padding: 16px 20px;

    background: #ffffff;
    color: #292929;

    font-size: 15px;
    font-weight: 600;

    box-shadow: none;

    transition:
        background-color var(--transition),
        color var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--orange);
    color: #ffffff;

    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    border-color: transparent;

    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    width: 16px;
    height: 16px;

    background-size: 16px;
}

.faq-accordion
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
    padding: 19px 20px;

    color: #777777;

    font-size: 14px;
    line-height: 1.75;

    border-top: 1px solid #eeeeee;
}


/* =========================================================
   FAQ HELP BOX
========================================================= */

.faq-help-box {
    position: relative;

    padding: 38px 30px;

    overflow: hidden;

    background: #292929;
    color: #ffffff;

    text-align: center;
}

.faq-help-box::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -70px;
    right: -70px;

    border-radius: 50%;

    background: rgba(242, 101, 34, 0.12);
}

.faq-help-icon {
    width: 67px;
    height: 67px;

    margin: 0 auto 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--orange);
    color: #ffffff;

    font-size: 28px;
}

.faq-help-box > span {
    display: block;

    margin-bottom: 6px;

    color: var(--orange);

    font-size: 13px;
    font-weight: 600;
}

.faq-help-box h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 25px;
    font-weight: 700;
}

.faq-help-box h3 strong {
    color: var(--orange);

    font-weight: 700;
}

.faq-help-box p {
    margin: 0 0 23px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
    line-height: 1.7;
}

.faq-help-button {
    min-width: 120px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    border-radius: 22px;

    background: var(--orange);
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.faq-help-button:hover {
    background: var(--orange-dark);
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   SERVICE ITEMS
========================================================= */

.service-item {
    height: 100%;
    display: flex;
    gap: 18px;
    padding: 24px 20px;
    border: 1px solid #eeeeee;
    background: #ffffff;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: var(--orange);
    font-size: 31px;
}

.service-content h4 {
    margin: 2px 0 8px;
    color: #222222;
    font-size: 18px;
    font-weight: 600;
}

.service-content p {
    margin: 0;
    color: #888888;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   SERVICES INNER PAGE
========================================================= */

.services-page {
    padding: 85px 0;

    background: #ffffff;
}

.services-page-heading {
    max-width: 700px;

    margin: 0 auto 45px;
}

.services-page-heading h2 span {
    color: var(--orange);
}

.services-page-heading p {
    max-width: 650px;

    margin: 15px auto 0;

    color: #777777;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.services-page-card {
    position: relative;

    height: 100%;

    padding: 34px 29px;

    overflow: hidden;

    border: 1px solid #eeeeee;

    background: #ffffff;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.services-page-card::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: var(--orange);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}

.services-page-card:hover {
    border-color: transparent;

    transform: translateY(-6px);

    box-shadow:
        0 15px 38px
        rgba(0, 0, 0, 0.09);
}

.services-page-card:hover::before {
    transform: scaleX(1);
}


/* ICON */

.services-page-icon {
    width: 66px;
    height: 66px;

    margin-bottom: 21px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(242, 101, 34, 0.10);

    color: var(--orange);

    font-size: 28px;

    transition:
        background-color var(--transition),
        color var(--transition),
        transform var(--transition);
}

.services-page-card:hover
.services-page-icon {
    background: var(--orange);
    color: #ffffff;

    transform: rotateY(180deg);
}


/* TEXT */

.services-page-card h3 {
    margin: 0 0 12px;

    color: #292929;

    font-size: 19px;
    font-weight: 600;
}

.services-page-card p {
    margin: 0 0 19px;

    color: #777777;

    font-size: 14px;
    line-height: 1.7;
}

.services-page-card > a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;

    transition:
        gap var(--transition),
        color var(--transition);
}

.services-page-card > a:hover {
    gap: 11px;

    color: var(--orange-dark);
}


/* =========================================================
   SERVICES FEATURE SECTION
========================================================= */

.services-feature-section {
    padding: 85px 0;

    background: #f8f8f8;
}


/* IMAGE */

.services-feature-image {
    position: relative;

    height: 455px;

    overflow: hidden;
}

.services-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.services-feature-image:hover img {
    transform: scale(1.04);
}


/* IMAGE BADGE */

.services-feature-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    min-width: 170px;

    padding: 17px 20px;

    display: flex;
    align-items: center;

    gap: 13px;

    background: var(--orange);
    color: #ffffff;
}

.services-feature-badge > i {
    font-size: 27px;
}

.services-feature-badge > div {
    display: flex;
    flex-direction: column;
}

.services-feature-badge strong {
    font-size: 18px;
    font-weight: 700;
}

.services-feature-badge span {
    font-size: 12px;
}


/* COPY */

.services-feature-copy h2 {
    margin: 0 0 14px;

    color: #222222;

    font-size: 35px;
    font-weight: 700;

    line-height: 1.2;
}

.services-feature-copy h2 span {
    color: var(--orange);
}

.services-feature-copy > p {
    margin: 18px 0 0;

    color: #777777;

    font-size: 14px;
    line-height: 1.75;
}


/* LIST */

.services-feature-list {
    margin: 25px 0 28px;
}

.services-feature-list > div {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

    color: #555555;

    font-size: 14px;
}

.services-feature-list i {
    color: var(--orange);

    font-size: 14px;
}


/* =========================================================
   SERVICES CTA
========================================================= */

.services-page-cta {
    padding: 55px 0;

    background: var(--orange);
}

.services-page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.services-page-cta-inner > div > span {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(255, 255, 255, 0.84);

    font-size: 13px;
    font-weight: 600;
}

.services-page-cta h2 {
    margin: 0;

    color: #ffffff;

    font-size: 30px;
    font-weight: 700;
}

.services-page-cta h2 strong {
    color: #292929;

    font-weight: 700;
}

.services-page-cta-inner > a {
    min-width: 130px;
    height: 43px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 23px;

    background: #292929;
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    transition:
        background-color var(--transition),
        color var(--transition),
        transform var(--transition);
}

.services-page-cta-inner > a:hover {
    background: #ffffff;
    color: var(--orange);

    transform: translateY(-2px);
}


/* =========================================================
   GALLERY PAGE
========================================================= */

.gallery-page,
.portfolio-page,
.shop-page,
.blog-page,
.blog-list-page,
.blog-details-page,
.contact-page,
.causes-page,
.campaign-details-page,
.product-details-page {
    padding: 85px 0;
    background: #ffffff;
}

.gallery-page-heading,
.portfolio-heading,
.shop-heading,
.blog-heading,
.contact-page-heading,
.causes-page-heading {
    max-width: 680px;
    margin: 0 auto 45px;
}

.gallery-page-heading h2 span,
.portfolio-heading h2 span,
.shop-heading h2 span,
.blog-heading h2 span,
.contact-page-heading h2 span,
.causes-page-heading h2 span {
    color: var(--orange);
}

.gallery-page-heading p,
.portfolio-heading p,
.shop-heading p,
.contact-page-heading p,
.causes-page-heading p {
    font-size: 14px;
}


/* FILTERS */

.gallery-filters,
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 35px;
}

.gallery-filter,
.portfolio-filter {
    min-width: 90px;
    height: 38px;

    padding: 0 16px;

    border: 1px solid #eeeeee;

    background: #ffffff;
    color: #555555;

    font-size: 12px;

    transition:
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.gallery-filter.active,
.gallery-filter:hover,
.portfolio-filter.active,
.portfolio-filter:hover {
    border-color: var(--orange);

    background: var(--orange);
    color: #ffffff;
}


/* GALLERY */

.gallery-card,
.portfolio-card {
    position: relative;

    height: 300px;

    overflow: hidden;
}

.gallery-card img,
.portfolio-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.gallery-card:hover img,
.portfolio-card:hover img {
    transform: scale(1.06);
}

.gallery-card-overlay,
.portfolio-overlay {
    position: absolute;
    inset: 0;

    padding: 25px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    opacity: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.06)
        );

    transition: opacity var(--transition);
}

.gallery-card:hover .gallery-card-overlay,
.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.gallery-card-overlay span,
.portfolio-overlay span {
    display: block;

    margin-bottom: 4px;

    color: var(--orange);

    font-size: 12px;
}

.gallery-card-overlay h3,
.portfolio-overlay h3 {
    margin: 0;

    color: #ffffff;

    font-size: 19px;
}

.gallery-open {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border: 0;
    border-radius: 50%;

    background: var(--orange);
    color: #ffffff;
}

.gallery-item.is-hidden,
.portfolio-item.is-hidden {
    display: none;
}


/* MODAL */

.gallery-modal .modal-content {
    position: relative;

    padding: 8px;

    border: 0;
    border-radius: 0;

    background: #ffffff;
}

.gallery-modal .btn-close {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 5;

    padding: 9px;

    background-color: #ffffff;
}

.gallery-modal img {
    width: 100%;

    max-height: 75vh;

    object-fit: contain;
}


/* =========================================================
   CAUSES PAGE
========================================================= */

.cause-page-card {
    height: 100%;

    overflow: hidden;

    background: #ffffff;

    box-shadow:
        0 7px 28px
        rgba(0, 0, 0, 0.07);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.cause-page-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 16px 38px
        rgba(0, 0, 0, 0.10);
}

.cause-page-image {
    height: 245px;

    overflow: hidden;
}

.cause-page-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.cause-page-card:hover
.cause-page-image img {
    transform: scale(1.05);
}

.cause-page-content {
    padding: 26px;
}

.cause-page-content h3 {
    margin: 0 0 12px;

    color: #292929;

    font-size: 19px;
}

.cause-page-content p {
    color: #777777;

    font-size: 14px;
    line-height: 1.7;
}

.cause-page-progress-info,
.campaign-money {
    display: flex;
    justify-content: space-between;

    margin: 22px 0 10px;
}

.cause-page-progress-info span,
.campaign-money span {
    display: flex;
    flex-direction: column;

    color: #999999;

    font-size: 11px;
}

.cause-page-progress-info strong,
.campaign-money strong {
    color: #333333;

    font-size: 14px;
}

.cause-page-progress,
.campaign-progress {
    height: 7px;

    overflow: hidden;

    border-radius: 10px;

    background: #eeeeee;
}

.cause-page-progress span,
.campaign-progress span {
    display: block;

    height: 100%;

    background: var(--orange);
}

.cause-page-actions {
    display: flex;

    gap: 8px;

    margin-top: 22px;
}

.cause-page-actions a {
    min-width: 95px;
    height: 39px;

    padding: 0 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 21px;

    background: #292929;
    color: #ffffff;

    font-size: 11px;
}

.cause-page-actions
.cause-page-donate {
    background: var(--orange);
}


/* =========================================================
   CAMPAIGN DETAILS
========================================================= */

.campaign-main-image {
    height: 440px;

    overflow: hidden;
}

.campaign-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.campaign-content {
    padding-top: 30px;
}

.campaign-content h2 {
    margin: 0 0 15px;

    color: #222222;

    font-size: 32px;
}

.campaign-content h2 span {
    color: var(--orange);
}

.campaign-content p {
    margin: 18px 0 0;

    color: #777777;

    font-size: 14px;
    line-height: 1.8;
}

.campaign-content h3 {
    margin: 28px 0 15px;

    color: #292929;

    font-size: 20px;
}

.campaign-points {
    margin: 0;
    padding: 0;

    list-style: none;
}

.campaign-points li {
    margin-bottom: 10px;

    display: flex;
    align-items: center;

    gap: 9px;

    color: #555555;

    font-size: 14px;
}

.campaign-points i {
    color: var(--orange);
}

.campaign-sidebar {
    padding: 30px;

    border: 1px solid #eeeeee;
}

.campaign-sidebar h3 {
    margin: 0;

    color: #292929;

    font-size: 20px;
}

.campaign-percent {
    margin-top: 9px;

    color: #777777;

    font-size: 12px;
}

.campaign-donate-button {
    width: 100%;
    height: 43px;

    margin-top: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: var(--orange);
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
}

.campaign-quote {
    position: relative;

    margin: 28px 0;

    padding: 24px 25px;

    border-left: 4px solid var(--orange);

    background: #f8f8f8;
}

.campaign-quote > i {
    color: var(--orange);

    font-size: 25px;
}

.campaign-quote p {
    margin: 7px 0 0;

    color: #555555;

    font-size: 14px;
    line-height: 1.75;

    font-style: italic;
}


/* SHARE */

.campaign-share {
    margin-top: 30px;

    padding-top: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid #eeeeee;
}

.campaign-share strong {
    color: #333333;

    font-size: 14px;
}

.campaign-share > div {
    display: flex;

    gap: 7px;
}

.campaign-share a {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #f2f2f2;
    color: #555555;

    font-size: 12px;

    transition:
        background-color var(--transition),
        color var(--transition);
}

.campaign-share a:hover {
    background: var(--orange);
    color: #ffffff;
}


/* CAMPAIGN INFORMATION */

.campaign-information {
    margin-top: 28px;

    padding-top: 22px;

    border-top: 1px solid #eeeeee;
}

.campaign-information > div {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 10px 0;

    border-bottom: 1px solid #f0f0f0;
}

.campaign-information > div:last-child {
    border-bottom: 0;
}

.campaign-information i {
    width: 34px;

    color: var(--orange);

    font-size: 17px;
}

.campaign-information span {
    display: flex;
    flex-direction: column;

    color: #444444;

    font-size: 13px;
}

.campaign-information small {
    margin-bottom: 2px;

    color: #999999;

    font-size: 10px;

    text-transform: uppercase;
}


/* RELATED CAUSES */

.campaign-related {
    margin-top: 25px;
}

.campaign-related-item {
    display: flex;

    gap: 11px;

    padding: 14px 0;

    border-bottom: 1px solid #eeeeee;
}

.campaign-related-item:last-child {
    border-bottom: 0;
}

.campaign-related-item img {
    width: 80px;
    min-width: 80px;
    height: 67px;

    object-fit: cover;
}

.campaign-related-item div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.campaign-related-item span {
    margin-bottom: 3px;

    color: var(--orange);

    font-size: 10px;
}

.campaign-related-item strong {
    color: #444444;

    font-size: 12px;
    line-height: 1.4;

    transition: color var(--transition);
}

.campaign-related-item:hover strong {
    color: var(--orange);
}


/* =========================================================
   ERROR 404
========================================================= */

.error-page {
    min-height: 620px;

    display: flex;
    align-items: center;

    text-align: center;

    background: #f8f8f8;
}

.error-page-content {
    max-width: 620px;

    margin: 0 auto;
}

.error-page-content > span {
    display: block;

    color: var(--orange);

    font-size: 130px;
    font-weight: 700;
    line-height: 1;
}

.error-page-content h1 {
    margin: 15px 0;

    color: #292929;

    font-size: 36px;
}

.error-page-content h1 strong {
    color: var(--orange);
}

.error-page-content p {
    font-size: 14px;
}

.error-page-content a {
    min-width: 140px;
    height: 43px;

    margin-top: 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    border-radius: 22px;

    background: var(--orange);
    color: #ffffff;

    font-size: 12px;
}


/* =========================================================
   SHOP
========================================================= */

.product-card {
    height: 100%;

    background: #ffffff;

    border: 1px solid #eeeeee;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 34px
        rgba(0, 0, 0, 0.08);
}

.product-image {
    height: 270px;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.product-content {
    padding: 23px;

    text-align: center;
}

.product-content > span {
    color: var(--orange);

    font-size: 12px;
}

.product-content h3 {
    margin: 6px 0;

    color: #292929;

    font-size: 19px;
}

.product-content > strong {
    color: var(--orange);

    font-size: 18px;
}

.product-actions {
    margin-top: 17px;
}

.product-actions a,
.product-enquire {
    min-width: 115px;
    height: 39px;

    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 21px;

    background: var(--orange);
    color: #ffffff;

    font-size: 11px;
}


/* PRODUCT DETAILS */

.product-details-image {
    height: 470px;

    overflow: hidden;
}

.product-details-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.product-details-content > span {
    color: var(--orange);

    font-size: 13px;
}

.product-details-content h2 {
    margin: 7px 0 15px;

    color: #292929;

    font-size: 35px;
}

.product-details-content h2 strong {
    color: var(--orange);
}

.product-details-price {
    margin-bottom: 18px;

    color: var(--orange);

    font-size: 25px;
    font-weight: 700;
}

.product-details-content p {
    color: #777777;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   BLOG
========================================================= */

.blog-heading {
    margin-bottom: 45px;
}

.blog-card {
    height: 100%;

    border: 1px solid #eeeeee;

    background: #ffffff;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.08);
}

.blog-card-image {
    position: relative;

    height: 240px;

    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.blog-card-image > span {
    position: absolute;

    left: 18px;
    bottom: 0;

    padding: 10px 13px;

    background: var(--orange);
    color: #ffffff;

    font-size: 11px;
}

.blog-card-content {
    padding: 23px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 10px;

    color: #999999;

    font-size: 11px;
}

.blog-meta i {
    color: var(--orange);
}

.blog-card-content h3 {
    margin: 0 0 11px;

    color: #292929;

    font-size: 19px;
    line-height: 1.45;
}

.blog-card-content p {
    font-size: 14px;
}

.blog-card-content > a,
.blog-list-content > a {
    color: var(--orange);

    font-size: 11px;
    font-weight: 600;
}


/* BLOG LIST */

.blog-list-card {
    display: grid;

    grid-template-columns: 350px 1fr;

    margin-bottom: 30px;

    border: 1px solid #eeeeee;
}

.blog-list-image {
    height: 260px;
}

.blog-list-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.blog-list-content {
    padding: 30px;
}

.blog-list-content h2 {
    margin: 8px 0 12px;

    color: #292929;

    font-size: 24px;
}

.blog-list-content h2 span {
    color: var(--orange);
}

.blog-list-content p {
    font-size: 14px;
}


/* BLOG DETAILS */

.blog-details-image {
    width: 100%;
    height: 420px;

    margin-bottom: 25px;

    object-fit: cover;
}

.blog-details-main h2 {
    margin: 12px 0;

    color: #292929;

    font-size: 30px;
}

.blog-details-main h2 span {
    color: var(--orange);
}

.blog-details-main h3 {
    margin: 27px 0 12px;

    color: #292929;

    font-size: 20px;
}

.blog-details-main p {
    color: #777777;

    font-size: 14px;
    line-height: 1.8;
}

.blog-details-main blockquote {
    margin: 25px 0;

    padding: 22px 25px;

    border-left: 4px solid var(--orange);

    background: #f8f8f8;

    color: #555555;

    font-size: 14px;
    font-style: italic;
}

.blog-sidebar-box {
    padding: 25px;

    border: 1px solid #eeeeee;
}

.blog-sidebar-box > h3 {
    margin: 0 0 20px;

    color: #292929;

    font-size: 19px;
}

.blog-sidebar-post {
    display: flex;

    gap: 11px;

    padding: 12px 0;

    border-bottom: 1px solid #eeeeee;
}

.blog-sidebar-post img {
    width: 75px;
    height: 65px;

    object-fit: cover;
}

.blog-sidebar-post div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-sidebar-post span {
    color: var(--orange);

    font-size: 10px;
}

.blog-sidebar-post strong {
    color: #444444;

    font-size: 12px;
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-information {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.contact-info-item {
    display: flex;
    align-items: center;

    gap: 16px;

    padding: 23px;

    border: 1px solid #eeeeee;
}

.contact-info-item > i {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        rgba(242, 101, 34, 0.10);

    color: var(--orange);

    font-size: 21px;
}

.contact-info-item h3 {
    margin: 0 0 3px;

    color: #292929;

    font-size: 17px;
}

.contact-info-item p {
    margin: 0;

    font-size: 14px;
}

.contact-form-wrapper {
    padding: 32px;

    background: #f8f8f8;
}

.contact-form-wrapper h2 {
    margin: 0 0 23px;

    color: #292929;

    font-size: 28px;
}

.contact-form-wrapper h2 span {
    color: var(--orange);
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;

    padding: 12px 14px;

    border: 1px solid #dddddd;

    outline: 0;

    background: #ffffff;

    font-size: 13px;
}

.contact-form-wrapper input {
    height: 47px;
}

.contact-form-wrapper textarea {
    min-height: 145px;

    resize: vertical;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    border-color: var(--orange);
}

.contact-form-wrapper small {
    display: block;

    margin-top: 5px;

    color: #dc3545;

    font-size: 11px;
}

.contact-form-wrapper button {
    min-width: 130px;
    height: 43px;

    padding: 0 20px;

    border: 0;
    border-radius: 22px;

    background: var(--orange);
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
}

.contact-alert {
    margin-bottom: 18px;

    padding: 12px 14px;

    font-size: 13px;
}

.contact-alert.success {
    background: #e8f7ec;
    color: #287a3c;
}

.contact-alert.error {
    background: #fcebec;
    color: #a6313d;
}


/* =========================================================
   STATS / COUNTERS
========================================================= */

.stats-section {
    position: relative;

    padding: 52px 0;

    background-image:
        linear-gradient(
            rgba(20, 20, 20, 0.86),
            rgba(20, 20, 20, 0.86)
        ),
        url('../images/hero/hero-1.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.stat-item {
    min-height: 105px;

    padding: 20px 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    color: #ffffff;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-section .col-lg-3:last-child .stat-item {
    border-right: 0;
}

.stat-item i {
    color: var(--orange);
    font-size: 39px;
}

.stat-item > div {
    display: flex;
    flex-direction: column;
}

.stat-number {
    color: #ffffff;

    font-size: 32px;
    font-weight: 700;

    line-height: 1;
}

.stat-item span {
    margin-top: 7px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
}

/* =========================================================
   RECENT POSTS + EVENTS
========================================================= */

.updates-section {
    padding: 85px 0;
    background: #ffffff;
}

.updates-heading {
    position: relative;
    margin-bottom: 32px;
}

.updates-heading span {
    display: block;
    margin-bottom: 4px;

    color: var(--orange);

    font-size: 13px;
    font-weight: 600;
}

.updates-heading h2 {
    margin: 0;

    color: #222222;

    font-size: 34px;
    font-weight: 700;
}

.heading-line {
    width: 52px;
    height: 3px;

    margin-top: 12px;

    background: var(--orange);
}


/* =========================================================
   RECENT POSTS
========================================================= */

.recent-post {
    height: 100%;

    background: #ffffff;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.recent-post:hover {
    transform: translateY(-4px);

    box-shadow:
        0 16px 38px
        rgba(0, 0, 0, 0.08);
}

.recent-post-image {
    position: relative;

    height: 245px;

    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        0.5s ease;
}

.recent-post:hover .recent-post-image img {
    transform: scale(1.06);
}

.recent-post-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.26),
            transparent 48%
        );

    pointer-events: none;
}

.recent-post-date {
    position: absolute;

    top: 18px;
    left: 18px;

    width: 58px;
    height: 64px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--orange);
    color: #ffffff;

    z-index: 2;
}

.recent-post-date strong {
    font-size: 23px;
    font-weight: 700;

    line-height: 1;
}

.recent-post-date span {
    margin-top: 5px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.5px;
}

.recent-post-content {
    padding: 23px 4px 10px;
}

.recent-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 17px;

    margin-bottom: 11px;

    color: #999999;

    font-size: 12px;
}

.recent-post-meta span {
    display: inline-flex;
    align-items: center;

    gap: 5px;
}

.recent-post-meta i {
    color: var(--orange);
}

.recent-post-content h3 {
    margin: 0 0 11px;

    color: #252525;

    font-size: 19px;
    font-weight: 600;

    line-height: 1.45;

    transition:
        color
        var(--transition);
}

.recent-post:hover h3 {
    color: var(--orange);
}

.recent-post-content p {
    margin: 0 0 18px;

    color: #828282;

    font-size: 14px;
    line-height: 1.75;
}

.recent-post-btn {
    min-width: 108px;
    height: 39px;

    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: var(--orange);
    color: #ffffff;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.recent-post-btn:hover {
    background: var(--orange-dark);
    color: #ffffff;

    transform: translateY(-1px);
}


/* =========================================================
   EVENTS
========================================================= */

.event-list {
    position: relative;

    padding-left: 0;
}

.event-card {
    position: relative;

    min-height: 87px;

    display: flex;
    align-items: center;

    gap: 17px;

    padding: 13px 10px 13px 0;

    border-bottom:
        1px solid
        #eeeeee;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.event-card:first-child {
    border-top:
        1px solid
        #eeeeee;
}

.event-card:hover {
    background: #fff7f3;

    transform: translateX(4px);
}

.event-date-box {
    width: 60px;
    height: 64px;

    min-width: 60px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--orange);
    color: #ffffff;

    transition:
        background-color
        var(--transition);
}

.event-card:hover .event-date-box {
    background: #242424;
}

.event-date-box strong {
    font-size: 23px;
    font-weight: 700;

    line-height: 1;
}

.event-date-box span {
    margin-top: 4px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.8px;
}

.event-card-content {
    min-width: 0;
}

.event-card-content h4 {
    margin: 0 0 9px;

    color: #272727;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.4;

    transition:
        color
        var(--transition);
}

.event-card:hover h4 {
    color: var(--orange);
}

.event-meta {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.event-meta span {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #939393;

    font-size: 11px;
}

.event-meta i {
    color: var(--orange);
}

.all-events-btn {
    min-width: 125px;
    height: 40px;

    margin-top: 22px;

    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: var(--orange);
    color: #ffffff;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;
}

.all-events-btn:hover {
    background: var(--orange-dark);
    color: #ffffff;
}

/* =========================================================
   HOME CTA
========================================================= */

.home-cta {
    position: relative;
    padding: 52px 0;
    overflow: hidden;

    background-image:
        linear-gradient(
            rgba(242, 101, 34, 0.88),
            rgba(242, 101, 34, 0.88)
        ),
        url('../images/hero/hero-1.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.home-cta .container {
    position: relative;
    z-index: 2;
}

.home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.home-cta-copy span {
    display: block;
    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 13px;
    font-weight: 600;
}

.home-cta-copy h2 {
    max-width: 700px;
    margin: 0;

    color: #ffffff;

    font-size: 31px;
    font-weight: 700;
    line-height: 1.25;
}

.home-cta-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 11px;
}

.home-cta-btn {
    min-width: 125px;
    height: 43px;
    padding: 0 21px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 23px;

    font-size: 11px;
    font-weight: 700;

    transition:
        background-color var(--transition),
        color var(--transition),
        transform var(--transition);
}

.home-cta-btn:hover {
    transform: translateY(-2px);
}

.home-cta-btn-light {
    background: #ffffff;
    color: #242424;
}

.home-cta-btn-light:hover {
    background: #242424;
    color: #ffffff;
}

.home-cta-btn-dark {
    background: #242424;
    color: #ffffff;
}

.home-cta-btn-dark:hover {
    background: #ffffff;
    color: #242424;
}


/* =========================================================
   CHARITY CAUSES
========================================================= */

.causes-section {
    padding: 85px 0;
    background: #f8f8f8;
}

.causes-heading {
    max-width: 650px;
    margin: 0 auto 42px;
}

.causes-heading span {
    display: block;
    margin-bottom: 4px;

    color: var(--orange);

    font-size: 13px;
    font-weight: 600;
}

.causes-heading h2 {
    margin: 0;

    color: #222222;

    font-size: 35px;
    font-weight: 700;
}

.causes-heading p {
    margin: 15px 0 0;

    color: #808080;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   CAUSE CARD
========================================================= */

.cause-card {
    height: 100%;

    overflow: hidden;

    background: #ffffff;

    box-shadow:
        0 6px 24px
        rgba(0, 0, 0, 0.06);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.cause-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 16px 38px
        rgba(0, 0, 0, 0.10);
}


/* Image */

.cause-image {
    height: 235px;

    overflow: hidden;
}

.cause-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        0.5s ease;
}

.cause-card:hover .cause-image img {
    transform: scale(1.06);
}


/* Content */

.cause-content {
    padding: 25px;
}

.cause-content h3 {
    margin: 0 0 12px;

    color: #252525;

    font-size: 19px;
    font-weight: 600;

    line-height: 1.4;
}

.cause-content p {
    margin: 0 0 22px;

    color: #858585;

    font-size: 14px;
    line-height: 1.7;
}


/* Raised / Goal */

.cause-progress-info {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 9px;
}

.cause-progress-info span {
    display: flex;
    flex-direction: column;

    color: #999999;

    font-size: 11px;
}

.cause-progress-info span:last-child {
    text-align: right;
}

.cause-progress-info strong {
    margin-top: 2px;

    color: #333333;

    font-size: 14px;
    font-weight: 600;
}


/* Progress */

.cause-progress {
    position: relative;

    width: 100%;
    height: 7px;

    margin-bottom: 22px;

    overflow: hidden;

    border-radius: 10px;

    background: #eeeeee;
}

.cause-progress-fill {
    position: absolute;

    top: 0;
    left: 0;

    height: 100%;

    border-radius: inherit;

    background: var(--orange);
}


/* Donate */

.cause-donate-btn {
    min-width: 115px;
    height: 40px;

    padding: 0 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: var(--orange);
    color: #ffffff;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.cause-donate-btn:hover {
    background: var(--orange-dark);
    color: #ffffff;

    transform: translateY(-1px);
}



/* =========================================================
   DONATION SECTION
========================================================= */

.donation-section {
    position: relative;

    padding: 90px 0;

    background-image:
        linear-gradient(
            rgba(20, 20, 20, 0.18),
            rgba(20, 20, 20, 0.18)
        ),
        url('../images/hero/hero-1.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.donation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 600px;

    overflow: hidden;

    box-shadow:
        0 12px 42px
        rgba(0, 0, 0, 0.16);
}


/* =========================================================
   LEFT PANEL
========================================================= */

.donation-panel {
    padding: 60px 55px;

    background:
        rgba(30, 30, 30, 0.90);

    color: #ffffff;

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.donation-kicker {
    display: block;

    margin-bottom: 7px;

    color: var(--orange);

    font-size: 13px;
    font-weight: 600;
}

.donation-panel h2 {
    margin: 0 0 16px;

    color: #ffffff;

    font-size: 34px;
    font-weight: 700;
}

.donation-panel > p {
    max-width: 520px;

    margin: 0 0 28px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   DONATION AMOUNTS
========================================================= */

.donation-amounts {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 8px;

    margin-bottom: 14px;
}

.donation-amount {
    height: 42px;

    padding: 0;

    border:
        1px solid
        rgba(255, 255, 255, 0.18);

    background:
        rgba(48, 48, 48, 0.75);

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    transition:
        background-color var(--transition),
        border-color var(--transition);
}

.donation-amount:hover,
.donation-amount.active {
    border-color: var(--orange);

    background: var(--orange);
}


/* =========================================================
   DONATION FORM
========================================================= */

.donation-form {
    width: 100%;
}

.donation-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.donation-field {
    margin-bottom: 12px;
}

.donation-field input,
.donation-field select {
    width: 100%;
    height: 47px;

    padding: 0 15px;

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    border-radius: 0;

    outline: 0;

    background:
        rgba(48, 48, 48, 0.82);

    color: #ffffff;

    font-size: 13px;

    transition:
        border-color var(--transition),
        background-color var(--transition);
}

.donation-field input::placeholder {
    color:
        rgba(255, 255, 255, 0.50);
}

.donation-field input:focus,
.donation-field select:focus {
    border-color: var(--orange);

    background:
        rgba(55, 55, 55, 0.92);
}

.donation-field select {
    color:
        rgba(255, 255, 255, 0.72);
}

.donation-field select option {
    background: #303030;
    color: #ffffff;
}


/* =========================================================
   DONATE BUTTON
========================================================= */

.donation-submit {
    min-width: 135px;
    height: 44px;

    margin-top: 4px;

    padding: 0 24px;

    border: 0;
    border-radius: 23px;

    background: var(--orange);
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.donation-submit:hover {
    background: var(--orange-dark);

    transform: translateY(-1px);
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.donation-image {
    position: relative;

    min-height: 600px;

    overflow: hidden;
}

.donation-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        0.65s ease;
}

.donation-wrapper:hover
.donation-image img {
    transform: scale(1.025);
}


/* =========================================================
   TEAM
========================================================= */

.team-section {
    padding: 80px 0 70px;

    background: #ffffff;
}

.team-section .section-heading {
    margin-bottom: 45px;
}

.team-member {
    display: flex;
    align-items: center;

    gap: 24px;

    min-height: 190px;
}


/* Photo */

.team-photo {
    width: 175px;
    min-width: 175px;
    height: 180px;

    overflow: hidden;

    background: #eeeeee;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    color: #c8c8c8;

    font-size: 85px;
}


/* Details */

.team-details {
    flex: 1;
}

.team-details h3 {
    margin: 0 0 4px;

    color: #292929;

    font-size: 18px;
    font-weight: 600;
}

.team-details > span {
    display: block;

    margin-bottom: 13px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 600;
}

.team-details p {
    margin: 0 0 14px;

    color: #888888;

    font-size: 13px;
    line-height: 1.65;
}


/* Social */

.team-social {
    display: flex;

    gap: 6px;
}

.team-social a {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #eeeeee;
    color: #555555;

    font-size: 11px;

    transition:
        background-color var(--transition),
        color var(--transition);
}

.team-social a:hover {
    background: var(--orange);
    color: #ffffff;
}


/* Controls */

.team-controls {
    display: flex;
    justify-content: center;

    gap: 5px;

    margin-top: 34px;
}

.team-controls button {
    width: 30px;
    height: 30px;

    padding: 0;

    display: grid;
    place-items: center;

    border: 0;

    background: var(--orange);
    color: #ffffff;

    font-size: 11px;

    transition:
        background-color var(--transition);
}

.team-controls button:hover {
    background: var(--orange-dark);
}

/* =========================================================
   TEAM INNER PAGE
========================================================= */

.team-page {
    padding: 80px 0;

    background: #ffffff;
}

.team-page-heading {
    max-width: 680px;

    margin: 0 auto 45px;
}

.team-page-heading h2 span {
    color: var(--orange);
}

.team-page-heading p {
    max-width: 620px;

    margin: 15px auto 0;

    color: #777777;

    font-size: 14px;
    line-height: 1.7;
}


/* CARD */

.team-page-card {
    height: 100%;

    background: #ffffff;

    box-shadow:
        0 6px 25px
        rgba(0, 0, 0, 0.07);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.team-page-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.11);
}


/* IMAGE */

.team-page-image {
    position: relative;

    height: 290px;

    overflow: hidden;

    background: #eeeeee;
}

.team-page-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    color: #c7c7c7;

    font-size: 115px;
}


/* SOCIAL */

.team-page-social {
    position: absolute;

    left: 0;
    right: 0;
    bottom: -50px;

    display: flex;
    justify-content: center;

    gap: 7px;

    padding: 12px;

    background:
        rgba(242, 101, 34, 0.92);

    transition:
        bottom 0.3s ease;
}

.team-page-card:hover
.team-page-social {
    bottom: 0;
}

.team-page-social a {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #ffffff;
    color: var(--orange);

    font-size: 12px;

    transition:
        background-color var(--transition),
        color var(--transition);
}

.team-page-social a:hover {
    background: #252525;
    color: #ffffff;
}


/* INFO */

.team-page-info {
    padding: 22px 20px 24px;

    text-align: center;
}

.team-page-info h3 {
    margin: 0 0 4px;

    color: #292929;

    font-size: 19px;
    font-weight: 600;
}

.team-page-info > span {
    display: block;

    margin-bottom: 10px;

    color: var(--orange);

    font-size: 13px;
    font-weight: 600;
}

.team-page-info p {
    margin: 0;

    color: #777777;

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;
    padding: 72px 0 0;

    background:
        linear-gradient(
            rgba(31, 31, 31, 0.97),
            rgba(31, 31, 31, 0.97)
        );

    color: rgba(255, 255, 255, 0.72);
}

.footer-column h4 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 600;
}

.footer-column p {
    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 14px;
    line-height: 1.75;
}


/* Brand */

.footer-brand {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 20px;
}

.footer-brand-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--orange);
    color: #ffffff;

    font-size: 17px;
}

.footer-brand > div {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.footer-brand strong {
    color: #ffffff;

    font-size: 20px;
    font-weight: 700;
}

.footer-brand small {
    margin-top: 4px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 9px;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


/* Social */

.footer-social {
    display: flex;

    gap: 7px;
}

.footer-social a {
    width: 33px;
    height: 33px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;

    font-size: 12px;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.footer-social a:hover {
    background: var(--orange);

    transform: translateY(-2px);
}


/* Contact */

.footer-contact,
.footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-bottom: 13px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
}

.footer-contact i {
    margin-top: 2px;

    color: var(--orange);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact a:hover {
    color: var(--orange);
}


/* Links */

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    position: relative;

    padding-left: 12px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;

    transition:
        color var(--transition),
        padding-left var(--transition);
}

.footer-links a::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--orange);

    transform: translateY(-50%);
}

.footer-links a:hover {
    color: var(--orange);

    padding-left: 16px;
}


/* =========================================================
   FOOTER CONTACT FORM
========================================================= */

.footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-form input,
.footer-contact-form textarea {
    width: 100%;

    padding: 11px 13px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    outline: 0;

    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;

    font-size: 13px;

    transition:
        border-color var(--transition),
        background-color var(--transition);
}

.footer-contact-form input {
    height: 42px;
}

.footer-contact-form textarea {
    min-height: 92px;
    resize: vertical;
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
}

.footer-submit-btn {
    width: max-content;
    min-width: 105px;
    height: 39px;

    padding: 0 18px;

    border: 0;
    border-radius: 20px;

    background: var(--orange);
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.footer-submit-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}


/* Bottom */

.footer-bottom {
    margin-top: 58px;

    padding: 18px 0;

    background: var(--orange);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: #ffffff;

    font-size: 12px;
}

.footer-bottom-inner > div {
    display: flex;

    gap: 18px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.86);

    font-size: 12px;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-form-alert {
    margin-bottom: 12px;
    padding: 10px 12px;

    font-size: 11px;
    line-height: 1.5;
}

.footer-form-success {
    background: rgba(40, 167, 69, 0.15);
    color: #9be3aa;
    border: 1px solid rgba(40, 167, 69, 0.35);
}

.footer-form-error {
    background: rgba(220, 53, 69, 0.15);
    color: #ffadb5;
    border: 1px solid rgba(220, 53, 69, 0.35);
}

/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
    position: relative;

    padding: 85px 0;

    background-image:
        linear-gradient(
            rgba(25, 25, 25, 0.88),
            rgba(25, 25, 25, 0.88)
        ),
        url('../images/hero/hero-1.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.testimonials-heading span {
    color: var(--orange);
}

.testimonials-heading h2 {
    color: #ffffff;
}


/* TESTIMONIAL */

.testimonial-item {
    max-width: 850px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 28px;

    padding: 20px 35px;
}


/* AVATAR */

.testimonial-avatar {
    width: 105px;
    min-width: 105px;
    height: 105px;

    display: grid;
    place-items: center;

    border: 4px solid var(--orange);
    border-radius: 50%;

    background: #ffffff;
    color: #cccccc;

    font-size: 48px;
}


/* CONTENT */

.testimonial-content {
    position: relative;
}

.testimonial-quote {
    display: block;

    margin-bottom: 7px;

    color: var(--orange);

    font-size: 35px;
}

.testimonial-content p {
    max-width: 650px;

    margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 15px;
    line-height: 1.8;

    font-style: italic;
}


/* AUTHOR */

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;
}

.testimonial-author span {
    margin-top: 3px;

    color: var(--orange);

    font-size: 11px;
}


/* CONTROLS */

.testimonial-controls {
    display: flex;
    justify-content: center;

    gap: 7px;

    margin-top: 22px;
}

.testimonial-controls button {
    width: 34px;
    height: 34px;

    padding: 0;

    display: grid;
    place-items: center;

    border: 0;

    background: var(--orange);
    color: #ffffff;

    font-size: 11px;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.testimonial-controls button:hover {
    background: var(--orange-dark);

    transform: translateY(-1px);
}

/* =========================================================
   NAVBAR DROPDOWNS
========================================================= */

.main-navbar .dropdown-menu {
    min-width: 190px;
    padding: 8px 0;

    border: 0;
    border-radius: 0;

    background: #ffffff;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.main-navbar .dropdown-item {
    padding: 9px 18px;

    color: #555555;

    font-size: 12px;
    font-weight: 400;

    transition:
        color var(--transition),
        background-color var(--transition),
        padding-left var(--transition);
}

.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus {
    padding-left: 22px;

    background: #f7f7f7;
    color: var(--orange);
}


/* CAUSES SUBMENU */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    position: absolute;

    top: -8px;
    left: 100%;

    margin-left: 1px;

    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > .dropdown-toggle::after {
    float: right;

    margin-top: 7px;

    transform: rotate(-90deg);
}

/* =========================================================
   INNER PAGE BANNER
========================================================= */

.page-banner {
    position: relative;

    min-height: 250px;

    display: flex;
    align-items: center;

    background-image:
        url('../images/hero/hero-1.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    overflow: hidden;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        rgba(26, 26, 26, 0.78);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner-content {
    text-align: center;
}

.page-banner-content h1 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 35px;
    font-weight: 700;
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.page-breadcrumb li {
    color:
        rgba(255, 255, 255, 0.72);

    font-size: 12px;
}

.page-breadcrumb a {
    color: #ffffff;

    transition:
        color var(--transition);
}

.page-breadcrumb a:hover {
    color: var(--orange);
}

.page-breadcrumb i {
    font-size: 9px;

    color: var(--orange);
}

.page-breadcrumb .active {
    color: var(--orange);
}

/* =========================================================
   EVENTS PAGE
========================================================= */

.events-page {
    padding: 80px 0;

    background: #ffffff;
}

.events-page .section-heading {
    max-width: 650px;

    margin: 0 auto 45px;
}

.events-page .section-heading > span {
    color: var(--orange);

    font-size: 13px;
    font-weight: 600;
}

.events-page .section-heading h2 {
    margin: 5px 0 10px;

    color: #292929;

    font-size: 30px;
    font-weight: 700;
}

.events-page .section-heading h2 span {
    color: var(--orange);
}

.events-page .section-heading p {
    margin: 14px 0 0;

    color: #777777;

    font-size: 13px;
    line-height: 1.7;
}


/* CARD */

.event-page-card {
    height: 100%;

    background: #ffffff;

    border: 1px solid #eeeeee;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.event-page-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.08);
}


/* IMAGE */

.event-page-image {
    position: relative;

    height: 225px;

    overflow: hidden;
}

.event-page-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.55s ease;
}

.event-page-card:hover
.event-page-image img {
    transform: scale(1.04);
}


/* DATE */

.event-page-date {
    position: absolute;

    left: 20px;
    bottom: -1px;

    width: 58px;
    height: 63px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--orange);
    color: #ffffff;
}

.event-page-date strong {
    font-size: 21px;
    line-height: 1;
}

.event-page-date span {
    margin-top: 4px;

    font-size: 9px;
    font-weight: 600;
}


/* CONTENT */

.event-page-content {
    padding: 24px 22px 26px;
}

.event-page-content h3 {
    margin: 0 0 11px;

    font-size: 17px;
    font-weight: 600;
}

.event-page-content h3 a {
    color: #303030;

    transition:
        color var(--transition);
}

.event-page-content h3 a:hover {
    color: var(--orange);
}


/* META */

.event-page-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 8px 15px;

    margin-bottom: 14px;
}

.event-page-meta span {
    color: #999999;

    font-size: 11px;
}

.event-page-meta i {
    margin-right: 4px;

    color: var(--orange);
}


/* TEXT */

.event-page-content p {
    margin: 0 0 18px;

    color: #777777;

    font-size: 12px;
    line-height: 1.7;
}


/* READ MORE */

.event-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 95px;
    height: 36px;

    padding: 0 16px;

    border-radius: 20px;

    background: var(--orange);
    color: #ffffff;

    font-size: 10px;
    font-weight: 600;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.event-page-link:hover {
    background: var(--orange-dark);
    color: #ffffff;

    transform: translateY(-1px);
}

/* =========================================================
   EVENT DETAILS PAGE
========================================================= */

.event-details-page {
    padding: 80px 0;

    background: #ffffff;
}


/* =========================================================
   MAIN EVENT
========================================================= */

.event-details-main {
    background: #ffffff;
}

.event-details-image {
    position: relative;

    height: 430px;

    overflow: hidden;
}

.event-details-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.event-details-date {
    position: absolute;

    left: 30px;
    bottom: 0;

    width: 68px;
    height: 72px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--orange);
    color: #ffffff;
}

.event-details-date strong {
    font-size: 25px;
    line-height: 1;
}

.event-details-date span {
    margin-top: 5px;

    font-size: 10px;
    font-weight: 600;
}


/* CONTENT */

.event-details-content {
    padding-top: 30px;
}

.event-details-content h2 {
    margin: 0 0 14px;

    color: #292929;

    font-size: 28px;
    font-weight: 700;
}

.event-details-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 12px 22px;

    padding-bottom: 17px;
    margin-bottom: 22px;

    border-bottom: 1px solid #eeeeee;
}

.event-details-meta span {
    color: #888888;

    font-size: 11px;
}

.event-details-meta i {
    margin-right: 5px;

    color: var(--orange);
}

.event-details-content p {
    margin-bottom: 17px;

    color: #777777;

    font-size: 14px;
    line-height: 1.8;
}

.event-details-content h3 {
    margin: 29px 0 14px;

    color: #303030;

    font-size: 20px;
    font-weight: 600;
}


/* POINTS */

.event-details-points {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px 20px;

    margin: 24px 0;
}

.event-details-points div {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #666666;

    font-size: 12px;
}

.event-details-points i {
    color: var(--orange);

    font-size: 13px;
}


/* QUOTE */

.event-details-quote {
    position: relative;

    margin: 30px 0;

    padding: 25px 28px 25px 55px;

    border-left: 4px solid var(--orange);

    background: #f8f8f8;
}

.event-details-quote > i {
    position: absolute;

    top: 20px;
    left: 20px;

    color: var(--orange);

    font-size: 25px;
}

.event-details-quote p {
    margin: 0;

    color: #555555;

    font-size: 14px;
    font-style: italic;
}


/* SHARE */

.event-details-share {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-top: 20px;

    border-top: 1px solid #eeeeee;
}

.event-details-share strong {
    color: #444444;

    font-size: 12px;
}

.event-details-share > div {
    display: flex;

    gap: 6px;
}

.event-details-share a {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #f1f1f1;
    color: #555555;

    font-size: 11px;

    transition:
        background-color var(--transition),
        color var(--transition);
}

.event-details-share a:hover {
    background: var(--orange);
    color: #ffffff;
}


/* =========================================================
   SIDEBAR
========================================================= */

.event-details-sidebar {
    display: flex;
    flex-direction: column;

    gap: 25px;
}

.event-sidebar-box {
    padding: 25px;

    border: 1px solid #eeeeee;

    background: #ffffff;
}

.event-sidebar-box h4 {
    position: relative;

    margin: 0 0 22px;
    padding-bottom: 12px;

    color: #303030;

    font-size: 17px;
    font-weight: 600;
}

.event-sidebar-box h4::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35px;
    height: 2px;

    background: var(--orange);
}


/* EVENT INFORMATION */

.event-information {
    margin: 0 0 22px;
    padding: 0;

    list-style: none;
}

.event-information li {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 13px 0;

    border-bottom: 1px solid #eeeeee;
}

.event-information li:first-child {
    padding-top: 0;
}

.event-info-icon {
    width: 36px;
    min-width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(242, 101, 34, 0.10);
    color: var(--orange);

    font-size: 13px;
}

.event-information li > div {
    display: flex;
    flex-direction: column;
}

.event-information small {
    margin-bottom: 2px;

    color: #999999;

    font-size: 9px;
}

.event-information strong {
    color: #555555;

    font-size: 11px;
    font-weight: 500;
}


/* SUPPORT BUTTON */

.event-sidebar-button {
    width: 100%;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: var(--orange);
    color: #ffffff;

    font-size: 10px;
    font-weight: 600;

    transition:
        background-color var(--transition);
}

.event-sidebar-button:hover {
    background: var(--orange-dark);
    color: #ffffff;
}


/* =========================================================
   RECENT EVENTS
========================================================= */

.sidebar-event {
    display: flex;

    gap: 12px;

    padding: 12px 0;

    border-bottom: 1px solid #eeeeee;
}

.sidebar-event:last-child {
    border-bottom: 0;
}

.sidebar-event img {
    width: 75px;
    min-width: 75px;
    height: 65px;

    object-fit: cover;
}

.sidebar-event > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-event span {
    margin-bottom: 4px;

    color: var(--orange);

    font-size: 9px;
    font-weight: 600;
}

.sidebar-event h5 {
    margin: 0;

    color: #444444;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;

    transition:
        color var(--transition);
}

.sidebar-event:hover h5 {
    color: var(--orange);
}


/* BACK BUTTON */

.event-all-events {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #555555;

    font-size: 11px;
    font-weight: 600;
}

.event-all-events i {
    color: var(--orange);
}

.event-all-events:hover {
    color: var(--orange);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    /* NAVBAR */

    .main-navbar {
        height: auto;
        padding: 10px 0;
    }

    .main-navbar .container {
        height: auto;
    }

    .main-navbar .navbar-collapse {
        padding: 15px 0;
    }

    .main-navbar .navbar-nav {
        align-items: stretch;
    }

    .main-navbar .nav-link {
        padding: 9px 0 !important;
    }

    .nav-search-button {
        margin: 5px 0;
    }

    .nav-search-panel {
        top: 49px;
        left: 0;
        right: auto;
    }

    .nav-donate-button {
        width: max-content;
        margin: 5px 0 0;
    }


    /* HERO */

    .hero-slider {
        height: 570px;
    }


    /* INTRO */

    .intro-section {
        padding-top: 35px;
    }

    .intro-panel {
        min-height: auto;
    }


    /* ABOUT / SERVICES */

    .about-services-section {
        padding: 55px 0;
    }

    .about-copy {
        margin-bottom: 15px;
    }


    /* STATS */

    .stat-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }


    /* UPDATES */

    .updates-section {
        padding: 60px 0;
    }

    .event-list {
        margin-top: 15px;
    }


    /* HOME CTA */

    .home-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-cta-copy h2 {
        font-size: 27px;
    }


    /* DONATION */

    .donation-wrapper {
        grid-template-columns: 1fr;
    }

    .donation-panel {
        padding: 50px 40px;
    }

    .donation-image {
        min-height: 430px;
    }

    .team-section {
        padding: 60px 0;
    }
    
    .team-member {
        margin-bottom: 15px;
    }

    .site-footer {
        padding-top: 55px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-item {
        padding-left: 15px;
        padding-right: 15px;
    }

    .main-navbar .dropdown-menu {
        border: 0;
        box-shadow: none;
    }
    
    .dropdown-submenu > .dropdown-menu {
        position: static;
        margin: 0;
        padding-left: 14px;
        
        box-shadow: none;
    }
    
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

}            


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    /* LOGO */

    .charity-brand-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .charity-brand-text strong {
        font-size: 18px;
    }

    .charity-brand-text small {
        font-size: 9px;
    }


    /* HERO */

    .hero-slider {
        height: 520px;
    }

    .hero-content {
        padding: 0 42px;
    }

    .hero-content h5 {
        font-size: 20px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 44px;
        letter-spacing: -0.5px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
    }

    .hero-arrow-left {
        left: 5px;
    }

    .hero-arrow-right {
        right: 5px;
    }


    /* INTRO */

    .intro-panel {
        padding: 34px 28px;
    }


    /* SERVICES */

    .service-item {
        padding: 20px 16px;
    }


    /* CTA */

    .home-cta {
        padding: 45px 0;
    }

    .home-cta-actions {
        flex-wrap: wrap;
    }


    /* DONATION */

    .donation-panel {
        padding: 45px 30px;
    }

    .donation-panel h2 {
        font-size: 29px;
    }

    .events-page {
        padding: 60px 0;
    }
    
    .events-page .section-heading h2 {
        font-size: 27px;
    }
    
    .event-page-image {
        height: 215px;
    }

    .event-details-page {
        padding: 60px 0;
    }
    
    .event-details-image {
        height: 300px;
    }
    
    .event-details-content h2 {
        font-size: 24px;
    }
    
    .event-details-points {
        grid-template-columns: 1fr;
    }
    
    .event-details-share {
        align-items: flex-start;
    }
    .team-page {
        padding: 60px 0;
    }
    
    .team-page-image {
        height: 320px;
    }

    .faq-page {
        padding: 60px 0;
    }
    
    .faq-page-heading {
        margin-bottom: 35px;
    }
    
    .faq-accordion .accordion-button {
        min-height: 58px;
        
        padding: 14px 17px;
        
        font-size: 14px;
    }
    
    .faq-accordion .accordion-body {
        
        padding: 17px;
        
        font-size: 13px;
    }
    
    .faq-help-box {
        padding: 32px 24px;
    }

    .services-page,
    .services-feature-section {
        padding: 60px 0;
    }
    
    .services-feature-image {
        height: 360px;
    }
    
    .services-feature-copy h2 {
        font-size: 29px;
    }
    
    .services-page-cta {
        padding: 45px 0;
    }
    
    .services-page-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .services-page-cta h2 {
        font-size: 26px;
    }

    .gallery-page,
    .portfolio-page,
    .shop-page,
    .blog-page,
    .blog-list-page,
    .blog-details-page,
    .contact-page,
    .causes-page,
    .campaign-details-page,
    .product-details-page {
        padding: 60px 0;
    }
    
    .gallery-card,
    .portfolio-card {
        height: 270px;
    }
    
    .campaign-main-image,
    .blog-details-image {
        height: 300px;
    }
    
    .product-details-image {
        height: 360px;
    }
    
    .blog-list-card {
        grid-template-columns: 1fr;
    }
    
    .blog-list-image {
        height: 240px;
    }
    
    .error-page-content > span {
        font-size: 95px;
    }
    
    .error-page-content h1 {
        font-size: 30px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    /* LOGO */

    .charity-brand-text strong {
        font-size: 16px;
    }

    .charity-brand-text small {
        font-size: 8px;
    }


    /* HERO */

    .hero-slider {
        height: 500px;
    }

    .hero-content {
        padding: 0 35px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 38px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .hero-cta {
        min-width: 110px;
        height: 43px;
        padding: 0 18px;
        font-size: 13px;
    }


    /* INTRO */

    .intro-panel {
        padding: 30px 22px;
    }

    .intro-panel h3 {
        font-size: 24px;
    }


    /* ABOUT */

    .about-copy h2 {
        font-size: 30px;
    }


    /* STATS */

    .stat-item {
        padding: 18px 12px;
        gap: 12px;
    }

    .stat-item i {
        font-size: 30px;
    }

    .stat-number {
        font-size: 26px;
    }


    /* POSTS */

    .recent-post-image {
        height: 220px;
    }


    /* EVENTS */

    .event-card {
        gap: 12px;
    }


    /* CTA */

    .home-cta-copy h2 {
        font-size: 24px;
    }

    .home-cta-actions {
        width: 100%;
    }

    .home-cta-btn {
        min-width: 110px;
    }


    /* DONATION */

    .donation-panel {
        padding: 40px 24px;
    }

    .donation-panel h2 {
        font-size: 27px;
    }

    .donation-field label {
        font-size: 14px;
    }

    .donation-field select {
        height: 46px;
        font-size: 14px;
    }

    .donation-image {
        min-height: 340px;
    }

    .team-member {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .team-photo {
        width: 100%;
        height: 260px;
    }
    
    .footer-bottom-inner > div {
        flex-direction: column;
        gap: 6px;
    }

    .testimonial-item {
        flex-direction: column;
        text-align: center;
        
        gap: 18px;
    }
    
    .testimonial-avatar {
        width: 85px;
        min-width: 85px;
        height: 85px;
        
        font-size: 38px;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
    
    .testimonial-author {
        align-items: center;
    }

    .event-details-image {
        height: 250px;
    }
    
    .event-details-date {
        left: 18px;
        
        width: 60px;
        height: 64px;
    }
    
    .event-details-quote {
        padding:
        22px
        18px
        22px
        48px;
    }
    
    .event-sidebar-box {
        padding: 20px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}