/*================================================
    ROOT VARIABLES
================================================*/

:root {

    --primary-color: #F89939;
    --secondary-color: #272974;

    --light-bg: #FFF6ED;
    --white-color: #ffffff;
    --black-color: #000000;

    --copyright-bg: #262626;

    --heading-font: 'Orelega One', serif;
    --body-font: 'Montserrat', sans-serif;

    --transition: all .4s ease;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);

    --container-width: 1320px;


    --section-space: 50px;
}


/*================================================
    GLOBAL RESET
================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background: var(--light-bg);
    color: var(--black-color);
    overflow-x: hidden;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    outline: none;
    box-shadow: none;
}

.container {
    max-width: var(--container-width);
}


/*================================================
    TYPOGRAPHY
================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--secondary-color);
    margin-bottom: 0;
}

h1 {
    font-size: 72px;
    line-height: 1.05;
}

h2 {
    font-size: 40px;
    line-height: 1.2;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

p {
    font-size: 17px;
    line-height: 1.4;
    color: var(--black-color);
    margin-bottom: 0;
    font-weight: 500;
}


/*================================================
    COMMON SECTION STYLES
================================================*/

.section-padding {
    padding: var(--section-space) 0;
}

.section-title {
    margin-bottom: 55px;
    text-align: center;
}

.section-title h2 {
    margin-bottom: 15px;
}

.section-title p {
    max-width: 860px;
    margin: auto;
}

.bg-light-theme {
    background: var(--light-bg);
}

.bg-primary-theme {
    background: var(--primary-color);
}

.bg-white-theme {
    background: var(--white-color);
}


/*================================================
    BUTTONS
================================================*/

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: var(--primary-color);
    color: var(--white-color);

    padding: 14px 34px;

    /* border-radius: 5px; */
    border: none;

    font-size: 15px;
    font-weight: 600;

    transition: var(--transition);
}

.primary-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: var(--white-color);
    color: var(--secondary-color);

    padding: 14px 34px;

    border-radius: 50px;
    border: none;

    font-size: 15px;
    font-weight: 600;

    transition: var(--transition);
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}


/*================================================
    CARDS
================================================*/

.theme-card {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.theme-card:hover {
    transform: translateY(-6px);
}


/*================================================
    FORMS
================================================*/

.form-control,
.form-select {
    height: 56px;
    border-radius: 12px;
    border: 1px solid #e6e6e6;
    padding: 10px 18px;
    font-size: 14px;
    box-shadow: none !important;
}

textarea.form-control {
    height: 150px;
    resize: none;
    padding-top: 18px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
}


/*================================================
    IMAGE STYLES
================================================*/

.image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-radius {
    border-radius: var(--radius-xl);
    overflow: hidden;
}


/*================================================
    CUSTOM SCROLLBAR
================================================*/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}


/*================================================
    SCROLL TOP BUTTON
================================================*/

.scroll-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 50px;
    height: 50px;

    border-radius: 50%;
    border: none;

    background: var(--primary-color);
    color: var(--white-color);

    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: var(--transition);
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--secondary-color);
}


/*================================================
    UTILITIES
================================================*/

.text-primary-theme {
    color: var(--primary-color);
}

.text-secondary-theme {
    color: var(--secondary-color);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.shadow-theme {
    box-shadow: var(--shadow-md);
}

/*================================================
    HEADER CSS
================================================*/


/*=============================
    TOP HEADER
=============================*/

.top-header {
    background: #262626;
    padding: 10px 0;
    position: relative;
    z-index: 99;
    padding-bottom: 50px;
}

.top-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-header-left {
    display: flex;
    align-items: center;
    gap: 35px;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--white-color);

    font-size: 15px;
    font-weight: 600;
}

.top-info-item i {
    color: var(--primary-color);
    font-size: 14px;
}

.top-info-item:hover {
    color: var(--primary-color);
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.follow-text {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 500;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-links li a {
    color: var(--primary-color);
    font-size: 18px;
}

.social-links li a:hover {
    transform: translateY(-3px);
    color: var(--white-color);
}


/*=============================
    MAIN NAVBAR
=============================*/

.navbar-area {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 999;
    padding-top: 12px;
    margin-top: -50px;
}

.navbar {
    background: var(--primary-color);

    border-radius: 12px 12px 12px 12px;

    min-height: 100px;

    position: relative;
}

.navbar-brand {
    position: relative;
    width: 250px;
    height: 100px;
    background: var(--white-color);
    clip-path: polygon(0% 0%, 100% 0%, 60% 100%, 0% 100%);
    /* background-color: #000000 */
    display: flex;
    align-items: center;
    justify-content: start;
    margin-right: 40px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.navbar-brand img {
    width: 110px;
    padding-left: 20px;
}

.navbar-collapse {
    padding-right: 18px;
}

.navbar-nav {
    gap: 12px;
}

.navbar-nav .nav-link {
    color: var(--black-color);

    font-size: 16px;
    font-weight: 600;

    padding: 10px 14px !important;

    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white-color);
}

.donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 40px;

    padding: 0 26px;

    background: var(--white-color);
    color: var(--black-color);

    border-radius: 50px;

    font-size: 15px;
    font-weight: 700;

    transition: var(--transition);
}

.donate-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

/*================================================
    NAVBAR DROPDOWN
================================================*/

.dropdown-nav {
    position: relative;
}


/*=============================
    TOGGLE
=============================*/

.dropdown-toggle-custom {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-icon {
    font-size: 12px;

    transition: var(--transition);
}


/*=============================
    DROPDOWN MENU
=============================*/

.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 240px;

    background: var(--white-color);

    border-radius: 12px;

    padding: 12px 0;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: all .35s ease;

    z-index: 999;
}


/*=============================
    MENU ITEMS
=============================*/

.custom-dropdown-menu li {
    width: 100%;
}

.custom-dropdown-menu li a {
    display: flex;
    align-items: center;

    padding: 12px 22px;

    color: var(--black-color);

    font-size: 15px;
    font-weight: 500;

    transition: var(--transition);
}

.custom-dropdown-menu li a:hover {
    background: rgba(248, 153, 57, 0.08);

    color: var(--primary-color);

    padding-left: 28px;
}


/*=============================
    HOVER EFFECT
=============================*/

.dropdown-nav:hover .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dropdown-nav:hover .dropdown-icon {
    transform: rotate(180deg);
}


/*=============================
    MOBILE TOGGLER
=============================*/

.navbar-toggler {
    border: none;
    padding: 0;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--black-color);
    margin: 6px 0;
}


/*================================================
    STICKY HEADER
================================================*/

.main-header.sticky-header .navbar-area {
    position: fixed;
    top: 50px;
    padding-top: 0;
    animation: headerSticky .5s ease;
}



@keyframes headerSticky {

    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }

}


/*================================================
    FOOTER CSS
================================================*/


/*=============================
    FOOTER TOP
=============================*/

.footer-top {
    background: var(--primary-color);
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}


/*=============================
    FOOTER ABOUT
=============================*/

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 120px;
}

.footer-about p {
    max-width: 290px;

    color: var(--white-color);

    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
}


/*=============================
    FOOTER WIDGET
=============================*/

.footer-widget {
    height: 100%;
}

.footer-title {
    color: var(--white-color);
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 24px;
}


/*=============================
    FOOTER LINKS
=============================*/

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links li a {
    color: var(--white-color);

    font-size: 17px;
    font-weight: 500;

    transition: var(--transition);
}

.footer-links li a:hover {
    padding-left: 6px;
    opacity: .85;
    color: var(--secondary-color);
}


/*=============================
    FOOTER CONTACT
=============================*/

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 5px;

    margin-bottom: 18px;
}

.footer-contact-info li:last-child {
    margin-bottom: 0;
}

.footer-contact-info .icon {
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    background-color: var(--white-color);
    font-size: 13px;

    margin-top: 4px;
    padding: 5px;
    border-radius: 50px;
    height: 30px;
    width: 30px;
}

.footer-contact-info .text,
.footer-contact-info .text a {
    color: var(--white-color);

    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

.footer-contact-info .text a:hover {
    opacity: .85;
}


/*=============================
    COPYRIGHT AREA
=============================*/

.copyright-area {
    background: var(--copyright-bg);
    padding: 24px 0;
}

.copyright-text {
    text-align: center;
}

.copyright-text p {
    color: var(--white-color);

    font-size: 18px;
    font-weight: 500;
}

/*================================================
    HERO SECTION
================================================*/

.hero-section {
    position: relative;
    overflow: hidden;
}


/*=============================
    HERO SLIDER
=============================*/

.hero-slider {
    position: relative;
}

.hero-item {
    position: relative;
    height: 100vh;
    min-height: 770px;

    display: flex;
    align-items: end;
    /* padding-bottom: 80px; */
    overflow: hidden;
}


/*=============================
    HERO IMAGE
=============================*/

.hero-image {
    position: absolute;
    /* inset: 0; */
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1);

    transition: 5s ease;
}

.swiper-slide-active .hero-image img {
    transform: scale(1.08);
}


/*=============================
    HERO OVERLAY
=============================*/

/* .hero-overlay{
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.72),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.15)
    );

    z-index: 1;
} */


/*=============================
    HERO CONTENT
=============================*/

.hero-content {
    position: relative;
    z-index: 5;

    padding-bottom: 80px;

    padding-top: 0;
    text-align: center;
}

.hero-content h1 {
    color: var(--white-color);
    font-family: "Oswald", sans-serif;
    font-weight: 700 !important;
    font-size: 90px;
    line-height: .92;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 95px;
    margin-bottom: 20px;
}

.hero-content h1 span {
    display: block;
}

.hero-content p {
    max-width: 810px;
    margin: auto;
    color: var(--white-color);

    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;

    margin-bottom: 40px;
}


/*=============================
    HERO BUTTON
=============================*/

.hero-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-btn .primary-btn {
    min-width: 170px;
    height: 45px;
    margin: auto;
    font-size: 17px;
    font-weight: 700;

    letter-spacing: .5px;
}


/*=============================
    HERO PAGINATION
=============================*/

.hero-pagination {
    position: absolute;
    bottom: 35px !important;
    left: 50% !important;

    transform: translateX(-50%);

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;

    background: rgba(255, 255, 255, 0.6);

    opacity: 1;

    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 34px;

    border-radius: 30px;

    background: var(--primary-color);
}


/*=============================
    HERO TEXT ANIMATION
=============================*/

.hero-content h1,
.hero-content p,
.hero-content .hero-btn {
    opacity: 0;
    transform: translateY(50px);
}

.swiper-slide-active .hero-content h1 {
    animation: fadeUp 1s ease forwards;
}

.swiper-slide-active .hero-content p {
    animation: fadeUp 1s ease forwards;
    animation-delay: .4s;
}

.swiper-slide-active .hero-content .hero-btn {
    animation: fadeUp 1s ease forwards;
    animation-delay: .7s;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/*================================================
    NOTIFICATIONS SECTION
================================================*/

.notifications-section {
    background: #ffffff;
    position: relative;
}


/*=============================
    TITLE SHAPE
=============================*/

.title-shape {
    margin: 12px 0 18px;
}

.title-shape img {
    width: 110px;
    margin: auto;
}


/*================================================
    LEFT SIDE CARD
================================================*/

.notification-card {
    background: var(--white-color);

    overflow: hidden;

    box-shadow: var(--shadow-md);

    transition: var(--transition);

    height: 100%;
}

.notification-card:hover {
    transform: translateY(-6px);
}

.notification-image {
    position: relative;
    height: 360px;

    overflow: hidden;
}

.notification-image img {
    transition: 1s ease;
}

.notification-card:hover .notification-image img {
    transform: scale(1.08);
}


/*=============================
    DATE BOX
=============================*/

.notification-date {
    position: absolute;
    top: 18px;
    left: 18px;

    width: 68px;
    height: 76px;

    background: var(--primary-color);

    border-radius: 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: var(--black-color);

    font-size: 14px;
    font-weight: 600;

    line-height: 1.1;
}

.notification-date span {
    font-size: 34px;
    font-weight: 800;
}


/*=============================
    CARD CONTENT
=============================*/

.notification-content {
    padding: 24px;
}

.notification-content h4 {
    font-size: 18px;
    line-height: 1;
    color: #000000;
    margin-bottom: 10px;
}

.notification-content p {
    font-size: 13px;
    line-height: 1.4;
}


/*================================================
    RIGHT SIDEBAR
================================================*/

.notification-sidebar-wrapper {
    height: 100%;
}

.notification-sidebar-slider {
    height: 435px;
    overflow: hidden;
}


/*=============================
    SIDEBAR POST
=============================*/

.sidebar-post {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sidebar-post-image {
    width: 150px;
    height: 120px;

    flex: 0 0 120px;

    overflow: hidden;
}

.sidebar-post-image img {
    transition: .7s ease;
}

.sidebar-post:hover .sidebar-post-image img {
    transform: scale(1.08);
}

.sidebar-post-content h5 {
    font-family: var(--body-font);

    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;

    color: var(--black-color);

    margin-bottom: 14px;
}

.post-meta {
    font-size: 15px;
    color: #666;
}

.post-meta span {
    font-weight: 700;
    color: var(--black-color);
}


/*================================================
    BUTTON
================================================*/

.notification-btn {
    margin-top: 24px;
}

.view-post-btn {
    width: 100%;
    height: 45px;

    background: var(--primary-color);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--black-color);

    font-size: 17px;
    font-weight: 700;

    transition: var(--transition);
}

.view-post-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

/*================================================
    INITIATIVES SECTION
================================================*/

.initiatives-section {
    background: #f8f3ec;
    position: relative;
}

.initiatives-section .section-title p {
    font-size: 20px;
    font-weight: 400;
}

/*================================================
    INITIATIVE CARD
================================================*/

.initiative-card {
    background: var(--white-color);

    border-radius: 18px;

    overflow: hidden;

    box-shadow: var(--shadow-md);

    transition: var(--transition);

    height: 100%;
}

.initiative-card:hover {
    transform: translateY(-8px);
}


/*=============================
    IMAGE
=============================*/

.initiative-image {
    position: relative;
    height: 310px;

    overflow: hidden;
}

.initiative-image img {
    transition: 1s ease;
}

.initiative-card:hover .initiative-image img {
    transform: scale(1.08);
}


/*=============================
    BADGE
=============================*/

.initiative-badge {
    position: absolute;
    top: 14px;
    right: 14px;

    background: var(--primary-color);

    height: 28px;

    padding: 0 14px;

    border-radius: 6px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--white-color);

    font-size: 12px;
    font-weight: 700;
}


/*================================================
    CONTENT
================================================*/

.initiative-content {
    padding: 18px 12px 16px;
}

.initiative-content h4 {
    font-size: 17px;
    line-height: 1.4;

    text-align: center;

    margin-bottom: 16px;
}


/*=============================
    PROGRESS
=============================*/

.initiative-progress {
    margin-bottom: 18px;
}

.progress-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 6px;
}

.progress-labels span {
    font-size: 13px;
    font-weight: 700;

    color: var(--black-color);
}

.initiative-progress .progress {
    height: 6px;

    background: #ececec;

    border-radius: 30px;

    overflow: visible;
}

.initiative-progress .progress-bar {
    background: var(--primary-color);

    border-radius: 30px;

    position: relative;
}

.initiative-progress .progress-bar::after {
    content: '';

    position: absolute;
    top: 50%;
    right: -2px;

    width: 10px;
    height: 10px;

    background: var(--primary-color);

    border-radius: 50%;

    transform: translateY(-50%);
}


/*=============================
    TEXT
=============================*/

.initiative-content p {
    text-align: center;

    font-size: 14px;
    line-height: 1.4;

    margin-bottom: 20px;
}


/*=============================
    BUTTON
=============================*/

.initiative-btn {
    width: 100%;
    height: 40px;

    background: var(--primary-color);

    border-radius: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white-color);

    font-size: 17px;
    font-weight: 700;

    transition: var(--transition);
}

.initiative-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

/*================================================
    IMPACT SECTION
================================================*/

.impact-section {
    position: relative;
    overflow: hidden;
}


/*================================================
    TOP AREA
================================================*/

.impact-top-area {
    background: var(--primary-color);
    height: 610px;
    padding: 40px 0 20px;
    z-index: 1;
    position: relative;
}


/*================================================
    WHITE TITLE
================================================*/

.section-title-white h2,
.section-title-white p {
    color: var(--white-color);
}


/*================================================
    BOTTOM AREA
================================================*/

.impact-bottom-area {
    background: var(--light-bg);

    padding-bottom: 40px;
    /* z-index: -1; */
    position: relative;
}


/*================================================
    IMAGE WRAPPER
================================================*/

.impact-image-wrapper {
    position: relative;

    margin-top: -380px;

    /* height: 520px; */

    border-radius: 55px;

    overflow: hidden;

    border: 3px solid #2f348d;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);

    z-index: 5;
}

.impact-image-wrapper img {
    transition: 1.2s ease;
}

.impact-image-wrapper:hover img {
    transform: scale(1.05);
}


/*================================================
    BUTTON
================================================*/

.impact-btn {
    display: flex;
    justify-content: center;

    margin-top: 22px;
}

.impact-view-btn {
    min-width: 230px;
    height: 42px;

    background: var(--primary-color);

    border-radius: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--white-color);

    font-size: 17px;
    font-weight: 700;

    transition: var(--transition);
}

.impact-view-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

/*================================================
    PURPOSE SECTION
================================================*/

.purpose-section {
    background: #f8f3ec;
    position: relative;
}


/*================================================
    SLIDER WRAPPER
================================================*/

.purpose-slider-wrapper {
    position: relative;
}


/*================================================
    SLIDER
================================================*/

.purpose-slider {
    overflow: hidden;
}


/*================================================
    PURPOSE CARD
================================================*/

.purpose-card {
    background: #ffffff;

    border-radius: 20px;

    padding: 15px 24px;

    /* min-height: 290px; */

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

    transition: var(--transition);
}

.purpose-card:hover {
    transform: translateY(-8px);
}

.swiper-wrapper {
    padding: 30px 0;
}


/*================================================
    ICON
================================================*/

/* .purpose-icon{
    margin-bottom: 20px;
} */

.purpose-icon img {
    width: 90px;
}


/*================================================
    CONTENT
================================================*/

.purpose-content h4 {
    font-size: 22px;
    line-height: 1.4;

    margin-bottom: 18px;
}

.purpose-content p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}


/*================================================
    ARROWS
================================================*/

.purpose-arrow {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: var(--primary-color);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white-color);

    font-size: 22px;

    cursor: pointer;

    z-index: 10;

    transition: var(--transition);
}

.purpose-arrow:hover {
    background: var(--secondary-color);
}

.purpose-prev {
    left: -22px;
}

.purpose-next {
    right: -22px;
}

/*================================================
    TESTIMONIAL SECTION
================================================*/

.testimonial-section {
    position: relative;
    overflow: hidden;
}


/*================================================
    COUNTER WRAPPER
================================================*/

.counter-wrapper {
    position: relative;
    z-index: 10;
}


/*================================================
    COUNTER BOX
================================================*/

.counter-box {
    background: var(--primary-color);

    border-radius: 24px;

    overflow: hidden;

    position: relative;

    margin-bottom: -70px;

    z-index: 10;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.counter-item {
    text-align: center;

    padding: 28px 20px;

    border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.counter-item h3 {
    color: var(--white-color);

    font-size: 42px;
    line-height: 1;

    margin-bottom: 10px;
}

.counter-item p {
    color: var(--white-color);

    font-size: 25px;
    font-weight: 500;
}


/*================================================
    TESTIMONIAL BG AREA
================================================*/

.testimonial-bg-area {
    position: relative;

    padding: 140px 0 80px;

    overflow: hidden;
}


/*================================================
    BACKGROUND IMAGE
================================================*/

.testimonial-bg-image {
    position: absolute;
    inset: 0;
}

.testimonial-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*================================================
    OVERLAY
================================================*/

/* .testimonial-overlay{
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.55);
} */


/*================================================
    TESTIMONIAL SLIDER
================================================*/

.testimonial-slider {
    overflow: hidden;
}


/*================================================
    TESTIMONIAL CARD
================================================*/

.testimonial-card {
    background: #f8f3ec;

    border-radius: 22px;

    padding: 30px 28px;

    text-align: center;

    min-height: 290px;

    position: relative;
}


/*================================================
    USER IMAGE
================================================*/

.testimonial-user {
    width: 74px;
    height: 74px;

    margin: 0 auto 22px;

    border-radius: 50%;

    overflow: hidden;
}

.testimonial-user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*================================================
    CONTENT
================================================*/

.testimonial-content p {
    font-size: 16px;
    line-height: 1.9;

    color: var(--black-color);
}


/*================================================
    BUTTON
================================================*/

.testimonial-btn {
    display: flex;
    justify-content: center;

    margin-top: 38px;
}

.testimonial-view-btn {
    min-width: 220px;
    height: 40px;

    background: var(--primary-color);

    border-radius: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--white-color);

    font-size: 16px;
    font-weight: 700;

    transition: var(--transition);
}

.testimonial-view-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

/*================================================
    VOLUNTEER SECTION
================================================*/

.volunteer-section {
    background: var(--primary-color);

    padding: 35px 0;

    position: relative;

    overflow: hidden;
}


/*================================================
    WRAPPER
================================================*/

.volunteer-wrapper {
    position: relative;
}


/*================================================
    LEFT CONTENT
================================================*/

.volunteer-content {
    position: relative;

    padding-right: 70px;
}


/* Vertical Divider */
.volunteer-content::after {
    content: '';

    position: absolute;
    top: 50%;
    right: -15px;

    width: 2px;
    height: 250px;

    background:
        repeating-linear-gradient(to bottom,
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.9) 4px,
            transparent 4px,
            transparent 9px);

    transform: translateY(-50%);
}


.volunteer-content h2 {
    color: var(--white-color);

    font-size: 40px;
    line-height: 1.2;

    margin-bottom: 10px;
}

.volunteer-content p {
    max-width: 520px;

    color: var(--white-color);

    font-size: 17px;
    line-height: 2;

    margin-bottom: 34px;
}


/*================================================
    BUTTON
================================================*/

.volunteer-join-btn {
    min-width: 240px;
    height: 46px;

    background: var(--white-color);

    border-radius: 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--black-color);

    font-size: 23px;
    font-weight: 500;

    transition: var(--transition);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.volunteer-join-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}


/*================================================
    FORM BOX
================================================*/

.volunteer-form-box {
    background: var(--white-color);

    border-radius: 24px;

    padding: 28px;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}


/*================================================
    FORM TITLE
================================================*/

.volunteer-form-title {
    text-align: center;

    margin-bottom: 22px;
}

.volunteer-form-title h3 {
    font-size: 28px;
    line-height: 1.2;
}


/*================================================
    FORM STYLES
================================================*/

.volunteer-form-box .form-control,
.volunteer-form-box .form-select {
    height: 48px;

    border: 1px solid rgba(248, 153, 57, 0.6);

    border-radius: 8px;

    font-size: 14px;

    padding: 10px 14px;

    color: var(--black-color);

    background-color: transparent;

    box-shadow: none !important;
}

.volunteer-form-box textarea.form-control {
    height: 95px;

    resize: none;

    padding-top: 14px;
}

.volunteer-form-box .form-control:focus,
.volunteer-form-box .form-select:focus {
    border-color: var(--primary-color);
}


/*================================================
    SELECT ICON
================================================*/

.form-select-group {
    position: relative;
}

.form-select-group .form-select {
    appearance: none;
}

.select-icon {
    position: absolute;
    top: 50%;
    right: 16px;

    transform: translateY(-50%);

    color: var(--primary-color);

    font-size: 16px;

    pointer-events: none;
}


/*================================================
    SUBMIT BUTTON
================================================*/

.volunteer-submit-btn {
    width: 100%;
    height: 42px;

    background: var(--primary-color);

    border: none;

    border-radius: 50px;

    color: var(--white-color);

    font-size: 16px;
    font-weight: 700;

    transition: var(--transition);
}

.volunteer-submit-btn:hover {
    background: var(--secondary-color);
}

/*================================================
    TEAM SECTION
================================================*/

.team-section {
    background: #f5f5f5;
    position: relative;
}


/*================================================
    TEAM SLIDER
================================================*/

.team-slider {
    overflow: hidden;
}


/*================================================
    TEAM CARD
================================================*/

.team-card {
    background: #f7f7f7;

    border: 1px solid #d8d8d8;

    border-radius: 12px;

    padding: 10px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
}


/*================================================
    IMAGE
================================================*/

.team-image {
    height: 260px;

    border-radius: 10px;

    overflow: hidden;
}

.team-image img {
    transition: 1s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}


/*================================================
    CONTENT
================================================*/

.team-content {
    text-align: center;

    padding: 18px 10px 10px;
}

.team-content h4 {
    font-size: 18px;
    line-height: 1.4;
}


/*================================================
    SUPPORTERS SECTION
================================================*/

.supporters-section {
    background: #f8f3ec;
    position: relative;
}


/*================================================
    SLIDER WRAPPER
================================================*/

.supporters-slider-wrapper {
    position: relative;
}


/*================================================
    SUPPORTERS SLIDER
================================================*/

.supporters-slider {
    overflow: hidden;
}


/*================================================
    SUPPORTER CARD
================================================*/

.supporter-card {
    width: 210px;
    height: 210px;

    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: var(--transition);
}

.supporter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.supporter-card img {
    max-width: 100%;
    max-height: 100%;

    /* object-fit: contain; */
}


/*================================================
    ARROWS
================================================*/

.supporters-arrow {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: var(--primary-color);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white-color);

    font-size: 18px;

    cursor: pointer;

    z-index: 10;

    transition: var(--transition);
}

.supporters-arrow:hover {
    background: var(--secondary-color);
}

.supporters-prev {
    left: -20px;
}

.supporters-next {
    right: -20px;
}

/*================================================
    PAGE BREADCRUMB
================================================*/

.page-breadcrumb {
    position: relative;

    height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


/*================================================
    BACKGROUND IMAGE
================================================*/

.breadcrumb-bg {
    position: absolute;
    inset: 0;
}

.breadcrumb-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/*================================================
    OVERLAY
================================================*/

.breadcrumb-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);
}


/*================================================
    CONTENT
================================================*/

.breadcrumb-content {
    position: relative;
    z-index: 5;

    text-align: center;

    padding-top: 80px;
}

.breadcrumb-content h1 {
    color: var(--white-color);

    font-size: 72px;
    line-height: 1.1;

    margin-bottom: 18px;
}


/*================================================
    BREADCRUMB LIST
================================================*/

.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.breadcrumb-list li {
    position: relative;

    color: var(--white-color);

    font-size: 17px;
    font-weight: 500;
}

.breadcrumb-list li a {
    color: var(--white-color);
}

.breadcrumb-list li a:hover {
    color: var(--primary-color);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';

    position: relative;
    left: 8px;

    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-list li span {
    color: var(--primary-color);
}



/*================================================
    ABOUT INTRO SECTION
================================================*/

.about-intro-section {
    background: #FFF6ED;
    position: relative;
}


/*================================================
    CONTENT
================================================*/

.about-subtitle {
    display: inline-block;

    color: var(--primary-color);

    font-size: 18px;
    font-weight: 700;

    margin-bottom: 14px;
}

.about-intro-content h2 {
    font-size: 56px;
    line-height: 1.2;

    margin-bottom: 28px;
}

.about-intro-content p {
    font-size: 16px;
    line-height: 2;

    margin-bottom: 20px;
}

.about-intro-btn {
    margin-top: 35px;
}


/*================================================
    IMAGE WRAPPER
================================================*/

.about-intro-image-wrapper {
    position: relative;
}

.about-intro-image {
    height: 620px;

    border-radius: 30px;

    overflow: hidden;

    box-shadow: var(--shadow-md);
}

.about-intro-image img {
    transition: 1.2s ease;
}

.about-intro-image:hover img {
    transform: scale(1.06);
}


/*================================================
    FLOATING CARD
================================================*/

.about-floating-card {
    position: absolute;
    left: -30px;
    bottom: 40px;

    background: var(--primary-color);

    padding: 28px 34px;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-floating-card h3 {
    color: var(--white-color);

    font-size: 52px;
    line-height: 1;

    margin-bottom: 8px;
}

.about-floating-card p {
    color: var(--white-color);

    font-size: 18px;
    font-weight: 500;
}



/*================================================
    ABOUT COUNTER SECTION
================================================*/

.about-counter-section {
    background: #FFF6ED;

    padding-bottom: 120px;
}


/*================================================
    COUNTER CARD
================================================*/

.about-counter-card {
    background: var(--white-color);

    border-radius: 20px;

    padding: 35px 25px;

    text-align: center;

    height: 100%;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

    transition: var(--transition);
}

.about-counter-card:hover {
    transform: translateY(-8px);
}

.about-counter-card h3 {
    color: var(--primary-color);

    font-size: 52px;
    line-height: 1;

    margin-bottom: 18px;
}

.about-counter-card p {
    font-size: 15px;
    line-height: 1.8;

    font-weight: 600;
}

/*================================================
    INITIATIVE PAGE SECTION
================================================*/

.initiative-page-section {
    background: #FFF6ED;
}


/*================================================
    INITIATIVE CARD
================================================*/

.initiative-page-card {
    background: var(--white-color);

    border-radius: 24px;

    overflow: hidden;

    height: 100%;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    transition: var(--transition);
}

.initiative-page-card:hover {
    transform: translateY(-10px);
}


/*================================================
    IMAGE
================================================*/

.initiative-page-image {
    position: relative;

    height: 280px;

    overflow: hidden;
}

.initiative-page-image img {
    transition: 1.2s ease;
}

.initiative-page-card:hover .initiative-page-image img {
    transform: scale(1.08);
}


/*================================================
    BADGE
================================================*/

.initiative-page-badge {
    position: absolute;
    left: 20px;
    top: 20px;

    background: var(--primary-color);

    padding: 10px 18px;

    border-radius: 50px;

    color: var(--white-color);

    font-size: 13px;
    font-weight: 700;
}


/*================================================
    CONTENT
================================================*/

.initiative-page-content {
    padding: 30px;
}

.initiative-page-content h3 {
    font-size: 28px;
    line-height: 1.4;

    margin-bottom: 18px;
}

.initiative-page-content p {
    font-size: 16px;
    line-height: 1.9;

    margin-bottom: 28px;
}


/*================================================
    VIEW BUTTON
================================================*/

.initiative-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--primary-color);

    font-size: 16px;
    font-weight: 700;
}

.initiative-view-btn span {
    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: rgba(248, 153, 57, 0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: var(--transition);
}

.initiative-view-btn:hover span {
    background: var(--primary-color);
    color: var(--white-color);
}



/*================================================
    CTA SECTION
================================================*/

.initiative-cta-section {
    background: var(--primary-color);

    padding: 90px 0;
}

.initiative-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.initiative-cta-content {
    max-width: 700px;
}

.initiative-cta-content h2 {
    color: var(--white-color);

    font-size: 58px;
    line-height: 1.2;

    margin-bottom: 20px;
}

.initiative-cta-content p {
    color: var(--white-color);

    font-size: 18px;
    line-height: 1.9;
}

.initiative-cta-btns {
    display: flex;
    align-items: center;
    gap: 18px;
}

.initiative-cta-section .primary-btn {
    min-width: 200px;
    height: 40px;

    border: 2px solid var(--white-color);

    border-radius: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--black-color);

    font-size: 16px;
    font-weight: 700;

    transition: var(--transition);
}


.secondary-btn {
    min-width: 200px;
    height: 40px;

    border: 2px solid var(--white-color);

    border-radius: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--black-color);

    font-size: 16px;
    font-weight: 700;

    transition: var(--transition);
}

.secondary-btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
}



/*================================================
    GALLERY SECTION
================================================*/

.initiative-gallery-section {
    background: #FFF6ED;
}


/*================================================
    GALLERY CARD
================================================*/

.gallery-card {
    position: relative;

    display: block;

    height: 320px;

    border-radius: 24px;

    overflow: hidden;
}

.gallery-card img {
    transition: 1.2s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}


/*================================================
    OVERLAY
================================================*/

.gallery-overlay {
    position: absolute;
    inset: 0;

    background: rgba(39, 41, 116, 0.45);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: var(--transition);
}

.gallery-overlay span {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: var(--white-color);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-color);

    font-size: 24px;

    transform: scale(0.7);

    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.gallery-card:hover .gallery-overlay span {
    transform: scale(1);
}


.gallery-page-section {

    background: #FFF6ED;

}



.gallery-filter {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 60px;

}



.gallery-filter button {

    border: none;

    padding: 5px 24px;

    background: white;

    border-radius: 50px;

    font-weight: 600;

    transition: .4s;

}



.gallery-filter button.active,
.gallery-filter button:hover {

    background: #F89939;

    color: white;

}



/*
CARD
*/

.gallery-card {

    position: relative;

    height: 340px;

    overflow: hidden;

    border-radius: 25px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

}



.gallery-card img {

    transition: 1s;

}



.gallery-card:hover img {

    transform: scale(1.08);

}



/*
OVERLAY
*/

.gallery-overlay {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding: 30px;

    background:
        linear-gradient(transparent,
            rgba(0, 0, 0, .75));

}



.gallery-overlay span {

    background: #F89939;

    padding: 8px 15px;

    border-radius: 30px;

    color: white;

    font-size: 12px;

    display: inline-block;

    margin-bottom: 10px;

}



.gallery-overlay h4 {

    color: white;

    margin: 0;

}

.gallery-card {
    position: relative;

    height: 320px;

    border-radius: 24px;

    overflow: hidden;

    background: #eee;
}



.gallery-image {
    width: 100%;

    height: 100%;
}



.gallery-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 1s;

}

.pagination {

    justify-content: center;

    gap: 12px;

}



.page-link {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    color: #272974;

}



.page-item.active .page-link {

    background: #F89939;

}

.media-page-section {

    background: #FFF6ED;

}



/*
CARD
*/

.media-card {

    position: relative;

    height: 380px;

    overflow: hidden;

    border-radius: 25px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

}



.media-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 1s;

}



.media-card:hover img {

    transform: scale(1.08);

}



/*
OVERLAY
*/

.media-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    padding: 30px;

    background:
        linear-gradient(transparent,
            rgba(0, 0, 0, .8));

    opacity: 0;

    transition: .4s;

}



.media-card:hover .media-overlay {

    opacity: 1;

}



.media-icon {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    background: white;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 5px;

    color: #F89939;

    font-size: 22px;

}



.media-overlay h4 {

    color: white;

    margin: 0;

}


/*
FEATURED
*/

.featured-blog-section {

    background: #FFF6ED;

}



.featured-blog-card {

    background: white;

    padding: 40px;

    border-radius: 30px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

}



.featured-blog-image {

    height: 420px;

    overflow: hidden;

    border-radius: 24px;

}



.featured-blog-content span {

    background: #F89939;

    padding: 10px 20px;

    border-radius: 30px;

    color: white;

    display: inline-block;

    margin-bottom: 20px;

}



.featured-blog-content h2 {

    margin-bottom: 20px;

}



.featured-blog-content p {

    margin-top: 20px;

    line-height: 2;

}




/*
BLOG GRID
*/

.blog-page-section {

    background: #FFF6ED;

    padding: 60px 0;

}



.blog-page-card {

    background: white;

    border-radius: 25px;

    overflow: hidden;

    height: 100%;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;

}



.blog-page-card:hover {

    transform:
        translateY(-10px);

}



.blog-page-image {

    height: 260px;

    overflow: hidden;

}



.blog-page-card img {

    transition: 1s;

}



.blog-page-card:hover img {

    transform: scale(1.08);

}



.blog-page-content {

    padding: 30px;

}



.blog-meta {

    margin-bottom: 20px;

}



.blog-meta span {

    color: #F89939;

    font-size: 14px;

}



.blog-page-content h3 {

    font-size: 20px;

    margin-bottom: 15px;

}



.blog-page-content p {

    line-height: 1.2;

    margin-bottom: 10px;
    font-size: 15px;

}



.blog-page-content a {

    font-weight: 700;

    color: #F89939;

    display: flex;

    align-items: center;

    gap: 10px;

}


.blog-details-section {

    background: #FFF6ED;

}



/*
LEFT
*/

.blog-details-content {

    background: white;

    padding: 40px;

    border-radius: 30px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

}



.blog-details-image {

    height: 450px;

    overflow: hidden;

    border-radius: 25px;

    margin-bottom: 30px;

}

.single_blog h1 {
    font-size: 45px;
    width: 60%;
    margin: auto;
}


.blog-details-meta {

    display: flex;

    gap: 25px;

    margin-bottom: 25px;

}



.blog-details-meta span {

    color: #F89939;

    font-weight: 600;

}



.blog-details-content h2 {

    margin-bottom: 30px;
    font-size: 32px;

}



.blog-content-area {

    line-height: 2;

}



.blog-content-area img {

    max-width: 100%;

    border-radius: 20px;

    margin: 30px 0;

}



/*
SIDEBAR
*/

.blog-sidebar {

    position: sticky;

    top: 120px;

}



.sidebar-widget {

    background: white;

    padding: 35px;

    border-radius: 25px;

    margin-bottom: 30px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

}



.sidebar-widget h3 {

    margin-bottom: 25px;

}



/*
CATEGORY
*/

.category-list li {

    margin-bottom: 15px;

}



.category-list a {

    display: flex;

    justify-content:
        space-between;

    padding: 15px;

    border-radius: 15px;

    background: #FFF6ED;

    transition: .4s;

    color: var(--secondary-color);

}



.category-list a:hover {

    background: #F89939;

    color: white;

}



/*
RECENT
*/

.recent-blog-item {

    display: flex;

    gap: 15px;

    margin-bottom: 20px;

}



.recent-blog-image {

    width: 90px;

    height: 90px;

    border-radius: 15px;

    overflow: hidden;

    flex: none;

}



.recent-blog-content a {

    font-weight: 700;

    display: block;

    margin-bottom: 8px;
    color: var(--secondary-color);

}



.recent-blog-content span {

    font-size: 13px;

    color: #000;

}

.collaboration-section {

    background: #FFF6ED;

}



/*
CARD
*/

.collaboration-card {

    background: white;

    height: 220px;

    border-radius: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;

}



.collaboration-card:hover {

    transform:
        translateY(-10px);

}



.collaboration-card img {

    max-width: 100%;

    max-height: 120px;

    object-fit: contain;

    filter: grayscale(100%);

    transition: .5s;

}



.collaboration-card:hover img {

    filter: none;

    transform: scale(1.05);

}

.testimonial-page-card {

    background: white;

    padding: 10px;

    border-radius: 30px;

    text-align: center;

    height: 100%;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

}



/*
LETTER
*/

.appreciation-image {

    display: block;

    height: 320px;

    overflow: hidden;

    margin-bottom: 25px;

}



.appreciation-image img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition: 1s;

}



.appreciation-image:hover img {

    transform: scale(1.05);

}



/*
USER
*/

.testimonial-user-image {

    margin-top: -15px;

    margin-bottom: 10px;

}



.testimonial-user-image img {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    border: 5px solid white;

    object-fit: cover;
    margin: auto;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, .08);

}



.testimonial-content h3 {

    margin-bottom: 10px;
    font-size: 22px;

}



.testimonial-content span {

    display: block;

    color: #777;

    margin-bottom: 20px;

}



.testimonial-stars {

    margin-bottom: 5px;

}



.testimonial-stars i {

    color: #000;

}



.testimonial-stars i.active {

    color: #F89939;

}



.testimonial-content p {

    font-size: 16px;

    font-style: italic;

    line-height: 1.8;

    color: #000;

}

.volunteer-page-section {

    background: #FFF6ED;

}



/*
CARD
*/

.volunteer-card {

    background: white;

    border-radius: 30px;

    overflow: hidden;

    height: 100%;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;

}



.volunteer-card:hover {

    transform:
        translateY(-10px);

}



/*
IMAGE
*/

.volunteer-image {

    height: 320px;

    overflow: hidden;

}



.volunteer-image img {

    transition: 1s;

}



.volunteer-card:hover img {

    transform: scale(1.08);

}



/*
CONTENT
*/

.volunteer-content {

    padding: 15px;

    text-align: center;

}



.volunteer-content h3 {

    margin-bottom: 5px;

    font-size: 25px;

}



.volunteer-content ul {

    margin-bottom: 10px;

}



.volunteer-content li {

    margin-bottom: 10px;

    color: #000;

    font-size: 14px;

}



.volunteer-content li i {

    color: #F89939;

    margin-right: 10px;

}



.volunteer-content p {

    line-height: 1.4;
    margin: 0;
    color: #000;
    font-size: 13px;
    font-weight: 400;

}