* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

:root {
    --primary-text: #f19e1e;
    --secondary-text: #0e4a31;
    --bg-primary: #f19e1e;
    --bg-secondary: #0e4a31;
    --bg-dark: #101010;
}

.primary-text {
    color: var(--primary-text) !important;
}

.secondary-text {
    color: var(--secondary-text) !important;
}

.primary-bg {
    background: var(--bg-primary) !important;
}

.secondary-bg {
    background: var(--bg-secondary) !important;
}

.dark-bg {
    background: var(--bg-dark) !important;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    color: #3b2600;
    scroll-behavior: smooth;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
    box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;

        transform: translate3d(0, 0, 0);
    }
}


.custome-btn {
    background: var(--bg-primary);
    color: #212529;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 100px;
    display: inline-block;
}

.custome-btn span {
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0e4a31;
    margin-left: 5px;
}

.custome-btn:hover {
    background-color: #d9a800;
}



/* header css start */

.header_wrapper .navbar-nav .nav-link {
    padding: 30px 15px;
    color: #0a1026;
    font-size: 17px;
    font-weight: 600;
}

.header_wrapper .navbar-brand h4 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-text);
}

.navbar-toggler {
    background: var(--bg-primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* header css End */

/* banner css start */

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 75vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    /* background-color: rgba(0, 0, 0, 0.5); */
    padding: 30px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    max-width: 90%;
    width: 800px;
}

.hero-content small {
    font-size: 1rem;
    color: var(--primary-text);
    display: block;
    margin-bottom: 10px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}


.hero-content .btn {
    font-size: 1rem;
    padding: 10px 20px;
}

.hero-slider .owl-dots {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 3;
}

.hero-slider .owl-dot {
    width: 12px;
    height: 12px;
    margin: 6px 0;
    background: #fff !important;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s;
}

.hero-slider .owl-dot.active {
    opacity: 1;
    background: #ffc107 !important;
}

/* banner css End */

.page-header-bg {
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    height: 500px;
    display: flex;
    align-items: center;
}

.member-bg {
    background: url('../img/banner/Board-members.jpg') center center/cover no-repeat;
}

.contact-bg {
    background: url('../img/banner/Contact.jpg') top center/cover no-repeat;
}

.faq-bg {
    background: url('../img/banner/faq.jpg') center center/cover no-repeat;
}

.blog-bg {
    background: url('../img/banner/blog.jpg') center center/cover no-repeat;
}

.vision-bg {
    background: url('../img/banner/vision.jpg') center center/cover no-repeat;
}

.volunteer-bg {
    background: url('../img/banner/volunteer.jpg') center center/cover no-repeat;
}


.page-header-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.page-header-bg h1 {
    color: #fff;
}

.page-header-bg h1 span {
    color: var(--bg-primary);
}


/* footer css start */

.Footer_wrap .input-group .btn {
    background: var(--bg-primary);
    color: #212529;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 100px;

}

.Footer_wrap .input-group input {
    border: none !important;
    border-radius: 100px;
    padding: 10px;
}


/* footer css End */


.form-control {
    padding: 10px;
    border-radius: 10px;
    box-shadow: none !important;
}


/* contact css start */

.contact_details_wrap .right, .donation_from_wrap .cover {
    border: 1px solid #e0e6ed;
    border-radius: 20px;
    box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
    padding: 30px;
}

.contact_details_wrap .title span, .donation_from_wrap .cover .title span, .home_about_wrap .title span, .team_area_wrap .title span, .home_gallery_wrap .title span, .member_wrap .title span, .team-intro-text span, .how_work_wrap .title span, .vision_about_wrap .title span, .what-we-area .title span, .blog-area .title span, .vision-testimonial-area .title span, .donation-area .title span, .team-area .title span, .Volunteer-area .title span {
    color: var(--secondary-text);
    font-size: 20px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 17px;
    display: inline-block;
}

.contact_details_wrap .title h3, .donation_from_wrap .cover .title h3, .home_about_wrap .title h3, .team_area_wrap .title h3, .home_gallery_wrap .title h3, .member_wrap .title h3, .how_work_wrap .title h3, .vision_about_wrap .title h3, .what-we-area .title h3, .blog-area .title h3, .vision-testimonial-area .title h3, .donation-area .title h3, .team-area .title h3, .Volunteer-area .title h3 {
    font-size: 2.3rem;
    font-weight: 800;
}

.contact_details_wrap .title p, .home_about_wrap p, .vision_about_wrap p, .what-we-area p, .Volunteer-area p {
    color: #6c757d;
    font-size: 1rem;
}

.contact_details_wrap ul li {
    margin-bottom: 20px;
}

.contact_details_wrap ul li span {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    color: var(--primary-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
    margin-right: 10px;
}

/* contact css End */

/* join volunteer css start */

.join_volunteer_wrap {
    background: var(--bg-secondary);
    padding: 30px 0;
}

.join_volunteer_wrap p {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
}

/* join volunteer css End */

/* donation css start */

.donation_from_wrap .right h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.donation_from_wrap .right h6 {
    font-size: 18px;
    font-weight: 600;
}

.donation_from_wrap .right img {
    width: 100px;
    margin-right: 15px;
}

.donation_from_wrap .right ul li {
    margin-bottom: 15px;
}

.donation_from_wrap .right ul li a {
    color: var(--secondary-text);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid var(--secondary-text);
}

.donation_from_wrap .right ul li:last-child {
    margin-bottom: 0;
}

.donation_from_wrap .form-check .form-check-input {
    width: 1.5rem;
    height: 1.5rem;
}

.donation_from_wrap .form-check .form-check-label {
    font-size: 18px;
    font-weight: 600;
    margin-top: 2px;
    margin-left: 10px;
}

.donation_from_wrap .form-check-input:checked {
    background-color: var(--bg-secondary);
    border-color: var(--bg-secondary);
}

/* donation css End */

/* home about css start */

.home_about_wrap .thumb_wrap {
    position: relative;
    padding: 10px 50px 205px 120px;
}

.home_about_wrap .thumb_wrap img {
    border-radius: 30px;
}

.home_about_wrap .thumb {
    position: absolute;
    left: 10px;
    bottom: 10px;
    border: 15px solid #f4f2f1;
    border-radius: 30px;
}

.home_about_wrap .thumb img {
    border-radius: 10px;
}

.home_about_wrap .info {
    position: absolute;
    right: 50px;
    bottom: 10px;
    background: var(--bg-secondary);
    padding: 30px 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 15px;
    color: #fff;
}

.home_about_wrap .info p {
    text-align: center;
    color: #fff;
}

.home_about_wrap li, .what-we-area ul li, .Volunteer-area ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px;
}

.home_about_wrap li::before, .what-we-area ul li::before, .Volunteer-area ul li::before {
    content: '';
    position: absolute;
    background: var(--bg-secondary);
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: 0;
    top: 14px;
}

.home_about_wrap li::after, .what-we-area ul li::after, .Volunteer-area ul li::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid var(--bg-secondary);
    left: -5px;
    top: 9px;
    animation: pulseBig 2s infinite ease-out;
}

@keyframes pulseBig {
    0% {
        box-shadow: 0 0 0 0 #23A036;
    }

    70% {
        box-shadow: 0 0 0 15px rgba(35, 160, 54, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(35, 160, 54, 0);
    }
}

/* home about css End */




/* team css start */


.team_area_wrap {
    position: relative;
    background: url('../img/Volunteer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.team_area_wrap:before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.team_area_wrap .team {
    border: 1px solid #e0e6ed;
    border-radius: 5px;
    box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
    padding: 30px;
    background: #fff;
    position: relative;
    margin-top: 80px;
    padding-top: 100px;
}

.team_area_wrap .team .team_thumb img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid #f19e1e;
}

.team_area_wrap .team .team_content h3 {
    font-size: 26px;
    font-weight: 700;
}

#team-member .item {
    filter: blur(3px);
    transition: all 0.5s ease;
    opacity: 0.5;
}

#team-member .owl-item.active.center .item {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
}


.member_wrap .cover {
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
    padding: 30px;
}

.team-area .single-item {
    margin-bottom: 30px;
}

.team-area .item .thumb {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.team-area .item .thumb::after {
    background: #232323 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.35s ease-in-out;
    width: 100%;
}

.team-area .team-items .item:hover .thumb::after {
    opacity: 0.7;
}

.team-area .item .thumb .overlay {
    top: -100%;
    left: 0;
    padding: 20px;
    position: absolute;
    text-align: center;
    transition: all 0.35s ease-in-out;
    width: 100%;
    z-index: 1;
}

.team-area .item:hover .thumb .overlay {
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.team-area .item .thumb .overlay p {
    color: #ffffff;
}

.team-area .item .thumb .overlay h4 {
    color: #ffffff;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
}

.team-area .item .thumb img {
    transition: all 0.35s ease-in-out;
}

.team-area .item:hover .thumb img {
    opacity: .6;
}

.team-area .item .thumb .social li {
    display: inline-block;
}

.team-area .item .thumb .social li a {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    margin: 0 2px;
    text-align: center;
    width: 40px;
}

.team-area .info {
    background: #ffffff none repeat scroll 0 0;
    box-shadow: 0 0 10px #cccccc;
    padding: 40px 20px 20px;
    position: relative;
    text-align: center;
    z-index: 9;
}

.team-area .info .message {
    height: 50px;
    line-height: 40px;
    margin-left: -25px;
    margin-top: -25px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 50px;
}

.team-area .info .message a {
    background: #fff none repeat scroll 0 0;
    border-radius: 50%;
    box-shadow: 0 0 10px #cccccc;
    box-sizing: border-box;
    color: var(--bg-secondary);
    display: inline-block;
    font-size: 20px;
    height: 50px;
    line-height: 50px;
    width: 50px;
}

.team-area .info .message a i {
    font-weight: 500;
}

.team-area .info h4 {
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-size: 20px;
}

.team-area .info span {
    color: var(--bg-secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.team-area .social li.twitter a {
    background-color: #00b6f1;
}

.team-area .social li.pinterest a {
    background-color: #bd081c;
}

.team-area .social li.facebook a {
    background-color: #3b5998;
}

.team-area .social li.google-plus a {
    background-color: #df4a32;
}

.team-area .social li.vimeo a {
    background-color: #1ab7ea;
}

.team-area .social li.instagram a {
    background-color: #cd486b;
}


/* team css End */

/* faq_wrap css start */

.faq_wrap {
    padding: 50px 0;
}

.faq_wrap .accordion-item {
    margin-bottom: 20px;
    border: 1px solid #e0e6ed !important;
    border-radius: 10px;
    background: transparent;
}

.faq_wrap .accordion-button {
    border-radius: 10px !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--bg-secondary);
    border-radius: 10px 10px 0 0 !important;
}

.faq_wrap .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq_wrap .list-unstyled {
    padding: 30px;
    box-shadow: 0px -10px 40px 5px rgba(0, 0, 0, 0.02);
    border: 1px solid #dee2e6;
    border-radius: 30px;

}

.faq_wrap .faq_wrap_left {
    top: 150px;
}

.faq_wrap .list-unstyled li {
    border-bottom: 1px solid #dee2e6;
}

.faq_wrap .list-unstyled li:last-child {
    border-bottom: none;
}

.faq_wrap .list-unstyled li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #828282;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 0;
}

.faq_wrap h4 {
    scroll-margin-top: 140px;
}

.faq_wrap .faq_wrap_left .info {
    position: relative;
}

.faq_wrap .faq_wrap_left .info img {
    border-radius: 30px;
}

.white-filter {
    filter: brightness(0) invert(1);
}

.faq_wrap .faq_wrap_left .info:before {
    content: '';
    position: absolute;
    background-color: rgb(14 74 49 / 50%);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;

}

.faq_wrap .faq_wrap_left .info .details {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

/* faq_wrap css End */

.home_about_wrap, .home_gallery_wrap {
    background: #f4f2f1;
}

.home_gallery_wrap .thumb {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.home_gallery_wrap .thumb::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}



.home_gallery_wrap .thumb:hover::before {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}

/* how_work css start */

.how_work_wrap {
    position: relative;
    background: url('../img/work-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.how_work_wrap:before {
    content: '';
    position: absolute;
    background-color: rgb(14 74 49 / 10%);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.how_work_wrap .info {
    position: relative;
    border: 3px solid var(--bg-primary);
    padding: 10px;
    border-radius: 20px;
}

.how_work_wrap .info img {
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.how_work_wrap .info .details {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
    max-width: 85%;
    background: var(--bg-primary);
    padding: 10px 10px;
    border-radius: 0 30px 0 10px;
    box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);

}

.how_work_wrap .info .details h4 {
    font-size: 20px;
    font-weight: 800;
}

.how_work_wrap .info .details p {
    font-size: 16px;
    font-weight: 600;
}

#how-work .owl-nav {
    position: relative;
    position: absolute;
    left: -25px;
    top: 40%;
    transform: translateY(-50%);
}

#how-work .owl-prev,
#how-work .owl-next {
    background: var(--bg-primary);
    border-radius: 10px;
    color: #333;
    width: 50px;
    height: 50px;
}

#how-work .owl-next {
    position: absolute;
    left: -1px;
    top: 100%;
}

/* how_work css End */


.blog_wrap .card {
    border-radius: 10px;
    border: 1px solid #020D1914;
    box-shadow: 0px 0px 40px 5px #00000005;
    background: #f4f2f185;
}

.blog_wrap .card:hover img {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.blog_wrap .card .thumb {
    overflow: hidden;
    display: block;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.blog_wrap .card img {
    border-radius: 10px;

}

.blog_wrap .card .card-body span {
    color: var(--bg-primary);
    text-transform: capitalize;
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 600;
}

.blog_wrap .card .card-body .card-title {
    font-size: 22px;
    font-weight: 700;
}

.blog_wrap .card .card-body a {
    font-size: 16px;
    color: var(--bg-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
}

.blog_wrap .card .card-body a i {
    font-size: 24px;
}


.blog_details_wrap .thumb img {
    width: 100%;
    height: 600px;
}

.blog_details_wrap p {
    line-height: 1.8em;
    color: #6c757d;
}

.blog_details_wrap .main_text {
    text-align: center;
    background: #0e4a31;
    padding: 30px;
    color: #fff;
    margin-bottom: 1rem;
    border-radius: 10px;
    line-height: 2.5;
}

.blog_details_wrap .main_text i {
    color: var(--bg-primary);
    font-size: 25px;
}

.blog_details_wrap h2 {
    font-weight: 700;
}

.blog_details_wrap ul li {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #6c757d;
}

.blog_details_wrap ul li i {
    font-size: 6px;
    transform: translateY(-4px);

}





.vision_about_wrap {
    padding-top: 120px;
    padding-bottom: 30px;
}

.align-top {
    transform: translateY(-30px);
}

.vision_about_wrap .thumb_wrap {
    position: relative;
}

.vision_about_wrap .thumb_wrap>img {
    position: absolute;
    top: -128px;
    left: 0;
    z-index: -1;
}

.vision_about_wrap .thumb_wrap .thumb {
    margin-left: 100px;
}

.vision_about_wrap .thumb_wrap .thumb img {
    border: 10px solid white;
}

.vision_about_wrap .thumb_wrap .info {
    display: inline-flex;
    align-items: center;
    padding: 20px 33px 20px 33px;
    max-width: 220px;
    position: absolute;
    right: 15px;
    bottom: -30px;
    z-index: 2;
    background: var(--bg-primary);
    border: 10px solid white;
}

.vision_about_wrap .thumb_wrap .info h3 {
    margin-right: 15px;
    font-weight: 700;
    font-size: 45px;
    color: #000;
}

.vision_about_wrap .thumb_wrap .info p {
    color: #000;
    font-size: 16px;
    font-weight: 800;
}

.vision_about_wrap ul {
    display: flex;
}

.vision_about_wrap ul li a {
    background: #e3e3e3;
    padding: 16px 35px;
    box-shadow: 0px 10px 30px 0px rgba(220, 220, 220, 0.47);
    margin-right: 10px;
    transition: all 0.3s ease-in;
    display: inline-block;
    color: black;
    font-weight: 600;
}

.vision_about_wrap ul li a.active {
    background: var(--bg-secondary);
    color: white;
}

.vision_about_wrap .details img {
    max-width: 220px;
}

.vision_about_wrap .details h3 {
    font-size: 30px;
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.vision_about_wrap .details p {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
    color: #6c757d;
}


.counter-area {
    background: url(../img/vision-mission/counter-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 0;
    color: white;
    position: relative;
}

.counter-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(14 74 49 / 80%);
    z-index: 1;
}

.counter-area i {
    font-size: 60px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.counter-area h1 {
    font-size: 50px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.counter-area p {
    font-size: 16px;
    position: relative;
    z-index: 2;
}




.what-we-area {
    padding: 100px 0;
    background: #f4f2f185;
}


.what-we-area .right {
    position: absolute;
    background: url('../img/vision-mission/what-we-area-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}


.Volunteer-area {
    padding: 100px 0;
    background: linear-gradient(to right, #f4f2f185 50%, #ffffff 50%);
}

.Volunteer-area .right {
    position: absolute;
    background: url('../img/Volunteer/Volunteer-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

.Volunteer-area .left {
    position: absolute;
    background: url('../img/Volunteer/volunteer-left-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 35%;
}

.Volunteer-area .info-left {
    padding-bottom: 350px;
}











.blog-area .blog-thumb {
    overflow: hidden;
    box-shadow: 0px 10px 30px 0px rgba(183, 183, 183, 0.8);
    border-radius: 9px;
    margin-bottom: 20px;
}

.blog-area a {
    font-size: 23px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.3px;
    display: inline-block;
}

.blog-area p {
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 15px;
    font-size: 16px;
}

.blog-area .blog-item:hover .blog-thumb img {
    transform: scale(1.1);
    transition: all 0.4s ease-out 0s;
}

.blog-area .blog-item:hover a {
    color: var(--bg-secondary);
}

.blog-area .blog-item span>i {
    color: var(--bg-primary);
}


.vision-testimonial-area {
    background: #f4f2f185;

}

.vision-testimonial-area .info {
    background: white;
    padding: 45px 50px 45px 50px;
}

.vision-testimonial-area .info .author_box img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 5px solid #0e4a3126;
    object-fit: cover;
}

.vision-testimonial-area .info .author_box h4 {
    font-size: 24px;
    font-weight: 600;
}

.vision-testimonial-area .info .author_box p {
    color: var(--bg-primary);
    font-weight: 600;
}

.vision-testimonial-area .info>p {
    color: #6c757d;
}

.review-icon span {
    color: var(--bg-secondary);
    font-weight: 700;

}

.review-icon ul li {
    color: var(--bg-primary);
    margin: 0 2px;

}




.donation-area {
    background: url(../img/vision-mission/donation-area-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 0;
    color: white;
    position: relative;
}

.donation-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(14 74 49 / 80%);
    z-index: 1;
}

.donation-area .title, .donation-area a {
    position: relative;
    z-index: 2;
}

.home_about_wrap, .team_area_wrap, .home_gallery_wrap, .member_wrap, .how_work_wrap, .team-area, .blog_wrap, .vision-testimonial-area, .blog-area, .gallery-wrap {
    padding: 50px 0;
}


.gallery-wrap .thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-wrap .thumb::before {
  content: '';
  position: absolute;
  background: #0e4a31;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.8;
  transform: scale(0);
  transition: all 0.4s ease-out 0s;
  pointer-events: none; 
}

.gallery-wrap .thumb:hover::before {
  transform: scale(1);
}

.gallery-wrap .thumb img {
  transition: transform 0.4s ease-out;
  width: 100%;
  height: auto;
  display: block;
}

.gallery-wrap .thumb:hover img {
  transform: scale(1.1);
}

.gallery-wrap .thumb-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
   pointer-events: none; 
}

.gallery-wrap .thumb:hover .thumb-caption {
  opacity: 1;
}


.owl-dots .owl-dot:nth-child(n+4) {
  display: none;
}