/*======= Font Links ======= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/*
========================
GOBAL CSS START
========================
*/

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    color: #45604A;
}

:root {
    --selection-bg: #0078d7;
    --selection-color: #fff;
    --scroll-top-bg: #CCA94F;
    --scroll-top-color: #fff;
    --second-font: "Cormorant Garamond", serif;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-webkit-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-moz-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--scroll-top-bg);
    text-align: center;
    font-size: 22px;
    color: var(--scroll-top-color);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
}

.scrolltotop img {
    width: 14px;
    margin-top: -4px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -7px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--scroll-top-bg);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 4px;
    left: -1px;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*===============
 GOBAL CSS END  
 ============== */

/*========= header area style start hare ====== */
.header-area {
    padding-block: 48px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.top-navbar ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.top-navbar a {
    display: inline-flex;
    align-items: center;
    color: #1F5F30;
    font-size: 1rem;
    font-style: normal;
    font-weight: 800;
    line-height: 270%;
}

.top-navbar a:hover {
    color: #CCA94F;
}

.top-navbar a.donate-btn {
    border-radius: 24px 0px;
    background: #2F833F;
    color: #fff;
    padding-inline: 45px;
}

.top-navbar a.donate-btn:hover {
    background: #CCA94F;
    color: #fff;
}

.main-nav ul {
    display: flex;
    align-items: stretch;
    justify-content: end;
    gap: 32px;
}

.main-nav a {
    color: #1F5F30;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 2.4px;
}

.main-nav a.join-btn {
    font-weight: 700;
    color: #2F833F;
}

.main-nav li .line {
    width: 4px;
    background: #CCA94F;
    display: block;
    height: 100%;
}

.main-nav a:hover {
    color: #CCA94F;
}

.menu-toggler {
    background: transparent;
    border: none;
    font-size: 1.875rem;
    color: #2F833F;
}

.offcanvas-title img {
    max-width: 150px;
}

.top-nav-box .nav-link {
    color: #1F5F30;
    font-size: 1rem;
    font-style: normal;
    font-weight: 800;
    display: inline-block;
}

.top-nav-box .donate-btn {
    display: flex;
    border-radius: 10px;
    background: #2F833F;
    color: #fff;
    justify-content: center;
    padding: 10px 20px;
    margin-top: 10px;
}

.navbar-nav.main-navbar {
    padding-top: 10px;
}

.main-navbar .nav-link {
    color: #1F5F30;
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: 1.4px;
    display: inline-block;
}


/* header style end hare  */

/* hero area start hare  */

.home-hero-area {
    padding-right: calc((100vw - 1246px) / 2);
}

.hero-slide-item {
    min-height: 540px;
    border-radius: 0px 0px 72px 0px;
    background: url(images/home-Slider-BG.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 131px;
}

.hero-slide-content {
    max-width: 1236px;
    margin-left: auto;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-right: 32px;
}

.hero-slide-left {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding-top: 50px;
}

.hero-slide-left h2 {
    color: #FFF;
    font-size: 4.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%;
    padding-left: 64px;
}

.hero-slide-left .summery-text {
    display: flex;
    max-width: 632px;
    padding: 32px 48px 32px 64px;
    border-radius: 0px 64px 0px 0px;
    background: #FFF;
}

.hero-slider .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    display: flex;
    width: fit-content !important;
    left: calc((100vw - 1100px) /2);
}

.hero-slider .swiper-pagination-bullet {
    width: 32px;
    height: 4px;
    border-radius: 0;
    background: #E5D4A7;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #CCA94F !important;
}

.hero-slide-left p {
    color: #45604A;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
    letter-spacing: -0.72px;
}

.hero-slide-btm {
    display: flex;
    gap: 64px;
    align-items: center;
}

.join-leaque-btn a {
    color: #FFF;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: 133.333%;
    padding-bottom: 9px;
    padding-right: 14px;
    border-radius: 0px 0px 24px 0px;
    border-right: 4px solid #FFF;
    border-bottom: 4px solid #FFF;
}

.join-leaque-btn a:hover {
    color: #CCA94F;
    border-color: #CCA94F;
}

.hero-slide-right {
    padding-bottom: 32px;
}


/*======== hero area style end hare ====== */

/*========forefront area style start hare ======= */

.forefront-area {
    padding-block: 48px;
}

.forefront-wrapper {
    padding: 48px;
    border-top-right-radius: 72px;
    border-right: 4px solid #D19847;
    display: flex;
    padding-bottom: 0;
}

.forefront-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
}
.forefront-content h5 {
    color: #45604A;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 177.778%;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.forefront-content h2 {
    color: #1E662C;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%;
}

.forefront-content p {
    color: #45604A;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
}

/* forefront area style end hare  */

/* feature area start hare  */

.features-wrapper {
    padding: 48px 64px;
    border-radius: 72px 0px;
    border: 4px solid #D19847;
    display: flex;
    justify-content: space-between;
}

.single-feature {
    display: flex;
    align-items: center;
    gap: 24px;
}

.single-feature h4 {
    color: #1E662C;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: 133.333%;
    padding-bottom: 13px;
    padding-right: 17px;
    border-radius: 0px 0px 24px 0px;
    border-right: 4px solid #1E662C;
    border-bottom: 4px solid #1E662C;
}

/* feature area style end hare  */

/* help us area style start hare  */

.help-us-area {
    padding-top: 48px;
}

.help-us-wrapper {
    padding: 64px 64px 48px 64px;
    display: flex;
    gap: 64px;
    border-radius: 0px 72px;
    background: linear-gradient(86deg, #2F833F 35%, #33A548 100%);
    align-items: end;
}

.help-block-left {
    display: flex;
    flex-direction: column;
    justify-content: end;
    max-width: 310px;
}

.help-block-left h5 {
    color: #FFF;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 177.778%;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.help-block-left h2 {
    color: #FFF;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%;
}

.help-center-block {
    flex: 1;
}

.help-center-block p {
    color: #FFF;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
}

.help-block-right {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.help-block-right a {
    padding-bottom: 6px;
    color: #FFF;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: 133.333%;
    border-radius: 0px 0px 24px 0px;
    border-right: 4px solid #FFF;
    border-bottom: 4px solid #FFF;
    padding-right: 6px;
}

.help-block-right a:hover {
    color: #CCA94F;
    border-color: #CCA94F;
}

/*======= help us area style end hare ======== */

/* news area style start hare  */

.news-area {
    padding-top: 48px;
}

.news-wrapper {
    display: flex;
    padding: 48px 64px;
    flex-direction: column;
    gap: 64px;
    border-radius: 72px 0px;
    background: linear-gradient(258deg, rgba(235, 246, 237, 0.00) 0%, #EBF6ED 25%);
}

.news-top-content {
    max-width: 227px;
}

.news-top-content p {
    color: #45604A;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 177.778%;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.news-top-content h4 {
    color: #1E662C;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%;
}

.news-top-card {
    display: flex;
    justify-content: space-between;
}

.date-raction {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
}

.single-news h2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    color: #308440;
    text-overflow: ellipsis;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 800;
    line-height: 114.286%;
}

.date-raction h4 {
    color: #2F833F;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.date-raction .ractione {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-raction .ractione span {
    height: 5px;
    width: 5px;
    border-radius: 50%;
    display: block;
    background: #CCA94F;
}

.date-raction .ractione {
    color: #CCA94F;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
}

.single-news .news-content {
    padding-top: 24px;
}

.news-content p {
    color: #45604A;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
}

.single-news .action-btn {
    padding-top: 24px;
    margin-top: auto;
}

.single-news .action-btn a {
    color: #308440;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 800;
    line-height: 150%;
    padding-right: 19px;
    padding-bottom: 19px;
    border-radius: 0px 0px 24px 0px;
    border-right: 4px solid #308440;
    border-bottom: 4px solid #308440;
    display: inline-block;
}

.single-news {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.help-us-wrapper.govt-account {
    background: linear-gradient(86deg, #B1903B 0%, #CCA94F 100%);
}

.govt-account .help-block-right a:hover {
    color: #1E662C;
    border-color: #1E662C;
}

/* news area end hare  */

/*======= newslatter area style start hare ====== */

.newslatter-area {
    padding-top: 48px;
}

.newslatter-wrapper {
    padding: 48px 64px;
    border-radius: 72px 0px;
    background: linear-gradient(262deg, #FFF 0.31%, #EBF6ED 15.26%);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.newslatter-left span {
    color: var(--Text, #45604A);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 177.778%;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.newslatter-left h2 {
    color: #1E662C;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%;
    max-width: 292px;
}

.newslatter-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-bottom: 24px;
}

.newslatter-right {
    max-width: 506px;
}

.newslatter-right p {
    color: #45604A;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
}

.newslatter-form-area form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.group-input {
    display: flex;
    align-items: stretch;
    gap: 24px;
}

.single-input {
    width: 100%;
    flex: 1;
}

.single-input {
    position: relative;
}

.single-input input,
.single-input select {
    width: 100%;
    padding: 16px 16px;
    border: 1px solid #d0f0d0;
    background-color: #ffffff;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    border-right: 4px solid rgba(48, 132, 64, 0.50);
}

.single-input input:focus {
    border-color: #66bb6a;
    border-right: 4px solid #fbc02d;
}

.single-input label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #308440;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: #ffffff;
    padding: 0 5px;
    z-index: 1;
}

.single-input input:focus+label,
.single-input input:not(:placeholder-shown)+label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.875rem;
    color: #2E7D32;
    background-color: transparent;
    left: 15px;
    backdrop-filter: blur(5px);
}

.required-label .asterisk {
    color: rgba(36, 92, 40, 0.20);
}

.single-input.flex-two {
    flex: 2;
}

.group-input.items-three .single-input {
    max-width: 260px;
}

.single-input.flex-two {
    flex: 2;
    max-width: 100% !important;
}

.single-input select {
    color: #308440;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 142.857%;
    height: 100%;
}

.single-items input {
    width: 16px;
    height: 16px;
    accent-color: #308440;
    color: #fff;
}

.single-items label {
    color: #308440;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 175%;
}

.group-input .single-items {
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-items .submit-btn {
    padding: 16px 32px;
    border-radius: 20px 0px;
    background: #308440;
    border: none;
    color: #FFF;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: 133.333%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-height: 49px;
    transition: 0.3s;
}

.single-items .submit-btn:hover {
    background: #CCA94F;
}

/*========= newslatter area style end hare ====== */

/*======== footer style start hare ======= */

.footer-area {
    padding-top: 50px;
    margin-top: 48px;
    background: linear-gradient(81deg, #2F833F 50.5%, #33A548 100%);
}

.footer-block h4 {
    color: #FEFEFE;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 800;
    line-height: 200%;
}

.footer-block ul {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}

.footer-block ul li a {
    color: #FEFEFE;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
}

.footer-block ul li a:hover {
    color: #CCA94F;
}

.footer-wrapper {
    padding-right: 0;
}

.copyright-wrapper {
    padding-block: 30px;
}

.footer-border svg {
    width: 100%;
}

.footer-wrapper>.row {
    padding-right: 64px;
}

.copyright-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-wrapper p {
    color: #154E20;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

.copyright-wrapper .powerby-content {
    display: flex;
    align-items: center;
    gap: 7px;
}

.powerby-content h4 {
    color: #154E20;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 133.333%;
}

/*======================
 news page 
======================== */

.survey-area {
    padding-top: 48px;
}

.news-survey .news-wrapper {
    border-radius: 0px 72px;
    border: 4px solid #D19847;
    background: #FFF;
}

.news-survey .news-top-content h4 {
    color: #D19847;
}

.news-survey-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.single-servery {
    display: flex;
    gap: 64px;
    align-items: center;
    justify-content: space-between;
}

.single-servery h2 {
    color: #308440;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 800;
    line-height: 114.286%;
    flex: 1;
}

.single-servery a {
    color: #308440;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 800;
    line-height: 150%;
    border-radius: 0px 0px 24px 0px;
    border-right: 4px solid #308440;
    border-bottom: 4px solid #308440;
    padding-bottom: 10px;
    padding-right: 10px;
}

.single-servery a:hover {
    color: #B1903B;
    border-color: #B1903B;
}

.news-hero-area {
    padding-bottom: 48px;
    padding-right: calc((100vw - 1246px) / 2);
}

.news-hero-inner {
    background-image: url(images/news-hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 64px;
    padding-bottom: 34px;
    padding-left: calc((100vw - 1264px) / 2);
    padding-right: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 0 72px 0;
}

.news-hero-inner h2 {
    color: #FFF;
    font-size: 4.5rem;
    font-weight: 700;
    padding-bottom: 16px;
}

.news-hero-inner ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-hero-inner ul li a,
.news-hero-inner ul li {
    color: #FFF;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

/* massagevideo-area */

.mav-inner {
    padding: 48px 64px;
    border-radius: 0px 72px;
    background: linear-gradient(279deg, #FFF 0.2%, #EBF6ED 15.15%);
    margin-bottom: 48px;
}

.mav-inner .video-box {
    position: relative;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.message-cont h4 {
    color: var(--Text, #45604A);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.message-cont h2 {
    color: #1E662C;
    font-size: 3rem;
    font-weight: 700;
    padding-top: 5px;
}

.text-yellow-500 {
    color: #CCA94F !important;
}

.common-contents ul {
    display: flex;
    padding-top: 12px;
    gap: 18px;
    padding-bottom: 30px;
}

.common-contents ul li {
    position: relative;
    font-weight: 700;
}

.common-contents ul li:last-child {
    padding-left: 10px;
}

.common-contents ul li:last-child:after {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background-color: #CCA94F;
    border-radius: 50%;
    left: 0;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
}

.common-contents p {
    font-size: 1.25rem;
    color: #45604a;
    padding-bottom: 32px;
}

.sh-btn-primary {
    color: #308440;
    font-size: 1.125rem;
    font-weight: 800;
    padding: 0 15px 12px 0;
    border-right: 4px solid #308440;
    border-bottom: 4px solid #308440;
    border-radius: 0 0 30px 0;
    transition: 0.3s;
}

.sh-btn-primary:hover {
    color: #CCA94F;
    border-color: #CCA94F;
}

.birthday-selebration {
    padding-bottom: 110px;
}

.single-birthday {
    padding-bottom: 55px;
}

.single-birthday h2 a {
    color: #308440;
    font-size: 1.75rem;
    font-weight: 800;
    padding-top: 25px;
    display: block;
}

.single-birthday img {
    width: 100%;
}

.single-birthday ul li:first-child {
    color: #2F833F;
}

.news-paginatoin ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 40px;
}

.news-paginatoin ul li a {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1rem;
    font-weight: 800;
    display: block;
}

.news-paginatoin ul li a.active,
.news-paginatoin ul li a:hover {
    background-color: #308841;
    color: #fff;
}

.news-paginatoin ul li:last-child a:hover,
.news-paginatoin ul li:first-child a:hover {
    background-color: transparent;
}

.liverty-newsletter-area {
    padding: 64px 0;
    background-color: #2f833f;
}

.liverty-newsletter-area .container {
    max-width: 1560px;
}

.linews-cont {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.linews-cont h2 {
    color: #FFF;
    font-size: 3rem;
    font-weight: 700;
}

.linews-cont img {
    max-width: 220px;
}

.common-contents.diff h2 {
    color: #FFF;
    font-size: 1.75rem;
    font-weight: 800;
    padding-top: 24px;
}

.common-contents.diff li:after {
    background-color: #fff !important;
}
/*================================
Single News Page Style start hare 
================================= */

/* hero area  */

.news-hero-inner.single-news-inner {
    background-image: url(images/single-news-hero.png);
    min-height: 540px;
    align-items: end;
}

.news-publish-date {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
}

.news-publish-date p {
    color: #FFF;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.single-news-wrapper .post-raction {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #CCA94F;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
}

.single-news-wrapper .post-raction span {
    width: 7px;
    height: 7px;
    display: block;
    background: #CCA94F;
    border-radius: 50%;
}

.single-news-wrapper {
    padding-inline: 64px;
}

/* full news area style start hare  */

.full-news-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-inline: 52px;
    padding-bottom: 48px;
}

.full-news-wrapper p {
    color: #45604A;
    font-size: 1.2em;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
}

.full-news-wrapper h4 {
    font-family: var(--second-font);
    color: #000;
    font-size: 2.25rem;
    font-style: italic;
    font-weight: 500;
    line-height: 145%;
    letter-spacing: 0.274px;
}

.news-group-images {
    display: flex;
    gap: 64px;
}

.news-group-images img {
    flex: 1;
    height: 100%;
    width: 100%;
}

/*====== news action area ===== */

.full-news-action-wrapper {
    padding: 48px 64px;
    border-radius: 0px 72px;
    background: linear-gradient(258deg, rgba(235, 246, 237, 0.00) 0%, #EBF6ED 25%);
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.news-action-area {
    padding-top: 48px;
}

.post-action-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.post-action-top h2 {
    color: #45604A;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 800;
    line-height: 114.286%;
}

.post-action-top p {
    color: #898989;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
}

.post-like-shere-btns {
    display: flex;
}

.post-like-shere-btns button {
    padding: 16px 32px;
    color: #FFF;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: 133.333%;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.post-like-shere-btns .post-like-btn {
    border-radius: 0px 0px 0px 32px;
    background: #308440;
}

.post-like-shere-btns .post-share-btn {
    border-radius: 0px 32px 0px 0px;
    background: var(--Gold, #D19847);
}

.post-like-shere-btns button:hover {
    opacity: 0.8;
}

.divider svg {
    width: 100%;
}

.comment-area h2 {
    color: #1E662C;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 800;
    line-height: 114.286%;
}

.comment-type-box {
    display: flex;
    width: 100%;
    min-height: 94px;
    padding: 10px 64px;
    align-items: center;
    gap: 8px;
    color: #000;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    border: none;
    border-bottom: 4px solid rgba(48, 132, 64, 0.50);
    background: #FFF;
    margin-top: 18px;
}

.comment-type-box textarea {
    width: 100%;
    height: auto;
    border: none;
    resize: none;
}

.userlogin-info {
    display: flex;
    gap: 23px;
}

.userlogin-info .login-with {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 420px;
}

.login-with button {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border: none;
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
    transition: 0.3s;
}

.login-with-fb {
    background: #1877F2;
}

.login-with-x {
    background: #000;
}

.login-with button:hover {
    opacity: 0.9;
}

.or-create-account {
    display: flex;
    align-items: center;
}

.or-create-account span {
    color: #000;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.login-with-pass .single-input input {
    color: #308440;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.login-with-pass input::placeholder {
    color: #308440;
}

.create-new-account {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comment-btm-action button {
    display: flex;
    width: 350.025px;
    padding: 11px 32px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 133.333%;
    border-radius: 32px 0px;
    background: #308440;
    border: none;
    transition: 0.3s;
}

.comment-btm-action button:hover {
    background: #CCA94F;
}

.comment-btm-action {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-btm-action span {
    color: #000;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.comment-btm-action a {
    color: #1E662C;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.comment-list-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.single-comment {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 24px;
    border: 1px solid #EBEBEB;
    background: #FFF;
}

.commen-userinfo .user-logo {
    width: 62px;
    height: 62px;
    border-radius: 50%;
}

.commen-userinfo .user-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.commen-userinfo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.commen-userinfo .username {
    color: #1E662C;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: 150%;
}

.commen-userinfo .notification-type {
    color: #656565;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.notification-time {
    color: #CCA94F;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.comment-text p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    align-self: stretch;
    overflow: hidden;
    color: #656565;
    text-overflow: ellipsis;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.comment-text p a {
    color: #1E662C;
    font-weight: 800;
}
/*=================================
 event page style start hare 
================================= */

.dinner-images {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.dinner-images span {
    color: #656565;
    font-size: 0.875rem; /* 14px */
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.21px;
}

.news-inner-block {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-inner-block-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-inner-block-top h2 {
    color: #308440;
    font-size: 3rem; /* already rem */
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%;
}

.news-inner-block-top .club {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #CCA94F;
    font-size: 1.125rem; /* 18px */
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
}

.news-inner-block-top .club span {
    width: 7px;
    height: 7px;
    display: block;
    background: #CCA94F;
    border-radius: 50%;
}

.news-inner-block-top .news-publish-date p {
    color: #2F833F;
    font-size: 1.25rem; /* 20px */
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.news-inner-block h3 {
    color: var(--Text, #45604A);
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 800;
    line-height: 114.286%;
    max-width: 630px;
}

.inner-images-block {
    padding-top: 24px;
}

.event-detials ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-detials ul li {
    display: flex;
    align-items: start;
    gap: 24px;
}

.event-detials .event-info {
    color: #C2A048;
    font-size: 1.2em; /* keep em as is */
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
    min-width: 90px;
}

.event-detials .event-value {
    color: #45604A;
    font-size: 1.2em; /* keep em as is */
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
    flex: 1;
}

.news-images-text {
    display: flex;
    gap: 64px;
    align-items: start;
}

.news-images-text .inner-text-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.royel-visit-block p {
    color: #094E16;
}

.news-inner-block a {
    color: #094E16;
    font-size: 1.2em; /* keep em */
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
    text-decoration: underline;
}

.buy-ticket-btn a {
    display: inline-flex;
    padding: 18px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 32px 0px;
    background: #308440;
    color: #FFF;
    text-decoration: none;
}

.buy-ticket-btn a:hover {
    background: #C2A048;
}

.news-hero-inner ul li a:hover {
    color: #C2A048;
}

/*========== Fighting Found Page Start hare ======= */

.donate-wrapper {
    padding: 48px 64px;
    border-radius: 0px 72px;
    background: linear-gradient(343deg, rgba(235, 246, 237, 0.00) 0.01%, #EBF6ED 25%);
}

.donate-wrapper .donate-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.block-name h2 {
    color: #094E16;
    font-size: 1.75rem; /* 28px */
    font-style: normal;
    font-weight: 800;
    line-height: 114.286%;
}

.donate-form-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.custom-radio {
    display: none;
}

.single-amount label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #45604A;
    font-size: 1.125rem; /* 18px */
    font-style: normal;
    font-weight: 400;
}

.radio-circle {
    width: 28px;
    height: 28px;
    border: 2px solid #2F833F;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.custom-radio:checked+label .radio-circle {
    border-color: #4caf50;
    background-color: #4caf50;
}

.custom-radio:checked+label .radio-circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.select-amound-wp {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.switch-button {
	display: flex;
	align-items: center;
}

.switch-button input[type="checkbox"] {
    position: relative;
    width: 36px;
    height: 19px;
    -webkit-appearance: none;
    appearance: none;
    background: #B5B5B5;
    outline: none;
    border-radius: 2rem;
    cursor: pointer;
}

.switch-button input[type="checkbox"]::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 48%;
    left: 4px;
    transition: 0.5s;
    transform: translateY(-50%);
}

.switch-button input[type="checkbox"]:checked::before {
    transform: translateY(-50%) translateX(100%);
    background: #fff;
}

.switch-button input[type="checkbox"]:checked {
    background: #4caf50;
}

.button-for-enable {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.input-random-amount {
   display: flex;
    width: 385.228px;
    height: 56px;
    align-items: center;
    border-right: 4px solid rgba(48, 132, 64, 0.50);
    background: #FFF;
    padding-left: 7px;
   gap: 5px;
}
.input-random-amount .icons {
    border-radius: 6px;
    background: rgba(47, 131, 63, 0.12);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.input-random-amount input {
	height: 100%;
	flex: 1;
	border: none;
	background: transparent;
	width: 100%;
}
.input-amount-wp {
	display: flex;
	gap: 30px;
	padding-top: 6px;
	align-items: center;
}

.pay-duration {
    display: flex;
    align-items: center;
    gap: 10px;
}

.donate-form-block .single-input input {
    color: #308440;
    font-size: 1.25rem; /* 20px */
    font-style: normal;
    font-weight: 700;
    line-height: 120% ;
}
.donate-form-block .single-input input::placeholder {
    color: #308440;
}

.single-input.email-input {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.email-input .email-update {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 8px;
}
.email-update label {
    position: unset;
    background: transparent;
    backdrop-filter: none !important;
    transform: none !important;
    pointer-events: auto !important;
}
.email-update input {
    width: 20px;
    height: 20px;
    accent-color: #308440;
}

.card-info-form {
    display: flex;
    align-items: center;
    gap: 24px;
}
.card-number-input {
    width: 55%;
}
.card-details-input {
	flex: 1;
	width: 100%;
}

.button-for-enable span {
    color: #45604A;
    font-size: 1.125rem; /* 18px */
    font-style: normal;
    font-weight: 600;
    line-height: 66.667%;
}

.amount-of-pay h2 {
    color: #45604A;
    font-size: 4.5rem; /* 72px */
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%;
    text-align: center;
}

.donate-now-btn button {
    display: inline-flex;
    width: 350.025px;
    padding: 18px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 32px 0px;
    background: #308440;
    border: none;
    color: #FFF;
    font-size: 1.5rem; /* 24px */
    font-style: normal;
    font-weight: 700;
    line-height: 133.333%;
    transition: 0.3s;
    max-width: 100%;
}
.donate-now-btn button:hover {
    background: #CCA94F;
}

.donate-video-area {
    padding-block: 48px;
}
.donate-video-wp {
    position: relative;
}
.donate-video-wp video {
    width: 100%;
    border-radius: 72px 0px;
}
.video-play-btn {
    width: 54px;
    height: 54px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    background: transparent;
    border: none;
}


/*=======================
about us page 
==========================*/

.news-hero-inner.about-us-hero {
    background-image: url(images/about-us-hero.png);
    min-height: 540px;
    align-items: end;
}

.single-about-block {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-inline: 64px;
}

.about-left-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 360px;
}

.about-left-card span {
    color: #45604A;
    font-size: 1.125rem; /* 18px */
    font-style: normal;
    font-weight: 500;
    line-height: 177.778%; 
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.about-left-card h2 {
    color: #2F833F;
    font-size: 3rem; /* 48px */
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%; 
}

.about-right-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-block: 48px;
    flex: 1;
    max-width: 700px;
}

.about-right-card p {
    color: #094E16;
    font-size: 1.5rem; /* 24px */
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.single-spokesperson {
    display: flex;
    padding: 48px 64px;
    align-items: flex-start;
    gap: 64px;
}

.single-spokesperson.left-images {
    padding-left: 32px;
}

.spokesperson-images {
    width: 100%;
    max-width: 385px;
}

.spokesprson-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.spokesprson-content h2 {
    color: #2F833F;
    font-size: 3rem; /* 48px */
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%;
}

.spokesprson-content span {
    color: #45604A;
    font-size: 1.125rem; /* 18px */
    font-style: normal;
    font-weight: 500;
    line-height: 177.778%; 
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.spokesprson-content p {
    color: #45604A;
    font-size: 1.5rem; /* 24px */
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
}

.spokesprson-content a {
    color: #308440;
    font-size: 1.125rem; /* 18px */
    font-style: normal;
    font-weight: 800;
    line-height: 150%;
    padding-right: 19px;
    padding-bottom: 10px;
    border-radius: 0px 0px 24px 0px;
    border-right: 4px solid #308440;
    border-bottom: 4px solid #308440;
    max-width: 117px;
}

.spokesprson-content a:hover {
    color: #CCA94F;
    border-color: #CCA94F;
}

.single-spokesperson.right-images {
    padding-right: 32px;
}

.spokesperson-wrapper > h2 {
    color: #2F833F;
    font-size: 4rem; /* 64px */
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-inline: 64px;
}

.state-spokesperson {
    padding-top: 48px;
}

.group-spokesperson {
    display: flex;
    gap: 64px;
}

.group-spokesperson .single-spokesperson {
    flex-direction: column;
    padding-inline: 0 !important;
    flex: 1;
    gap: 24px;
}

.state-spokesperson .spokesperson-wrapper {
    padding-inline: 64px;
}




/*========== join page style start hare ============ */
.join-hero-inner .single-news-wrapper {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.join-hero-wrapper p {
    display: flex;
    width: 632px;
    padding: 32px 48px 32px 64px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 0px 64px 0px 0px;
    background: #FFF;
    margin-left: -64px;
    color: #45604A;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
    letter-spacing: -0.72px;
}
.news-hero-inner.join-hero-inner {
	padding-bottom: 0;
	align-items: end;
	min-height: 540px;
    background-image: url(images/join-hero-img.png);
}

.join-hero-inner .white-flower {
    padding-bottom: 30px;
}

.join-top-wrapper {
    display: flex;
    flex-direction: column;
    padding-inline: 64px;
    gap: 24px;
}
.join-top-wrapper h2 {
    color: #2F833F;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%;
}
.join-top-wrapper p {
    color: #45604A;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
}
.join-top-wrapper a {
    color: #308440;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 800;
    line-height: 150%;
    max-width: 115px;
    border-radius: 0px 0px 24px 0px;
    border-right: 4px solid #308440;
    border-bottom: 4px solid #308440;
    padding-bottom: 5px;
}
.join-top-wrapper a:hover {
    color: #C2A048;
    border-color: #C2A048;
}

/*======= our plan area start hare ===== */

.our-plan-area {
    padding-top: 48px;
}

.our-plan-wrapper {
    padding: 48px 64px;
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
}
.our-plan-wrapper .single-plan {
    display: flex;
    padding: 48px;
    flex-direction: column;
    gap: 36px;
    border: 4px solid #D19847;
    background: #FFF;
    width: calc(50% - 32px);
}
.single-plan .plan-top-block {
    display: flex;
    align-items: end;
    gap: 20px;
    justify-content: space-between;
}
.plan-top-left span {
    color: #45604A;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 177.778%;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.plan-top-left h2 {
    color: #D19847;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%;
}

.plan-price h2 {
    text-align: right;
    color: #329645;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 111.111%;
}
.plan-price span {
    color: #329645;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 177.778%;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-align: end;
    display: block;
}

.divider svg {
    width: 100%;
}

.amout-of-month p {
    color: #45604A;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 135%; 
}

.plan-features ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: disc;
    padding-left: 15px;
}
.plan-features ul li {
    color: #308440;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 135%; 
}

.sing-up-button button {
    display: flex;
    padding: 18px 32px;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 32px 0px;
    border: none;
    background: #308440;
    color: #FFF;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 133.333%;
    max-height: 53px;
}

.plan-features {
	flex: 1;
}

.single-plan.standard-plan {
    border-top-right-radius: 72px;
}
.single-plan.premium-plan {
	border-bottom-left-radius: 72px;
}
.single-plan.lifetime-plan {
	background: #D19847;
}

.lifetime-plan .plan-top-left span {
	color: #fff;
}
.lifetime-plan .plan-top-left h2 {
	color: #fff;
}

.lifetime-plan .amout-of-month p {
	color: #fff;
}
.lifetime-plan .plan-features ul li {
	color: #fff;
}

.lifetime-plan .sing-up-button button {
	background: #fff;
	color: #308440;
}
.lifetime-plan .plan-price h2 {
	color: #fff;
}
