/* Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
/*
ol,
ul,
li,
*/
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
section,
main {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* Fonts */

/* 
    font-family: "Playfair Display", serif;

     font-family: "Raleway", sans-serif;

    font-family: "Poppins", sans-serif;


*/

:root {
    --font-primary: "Playfair Display", serif;
    --font-secondary: "Poppins", sans-serif;
}


/* Colors */
:root {
    --color-default: #4b493d;
    --color-primary: #f15a24;
    --color-secondary: #312216;
    --color-light: #fdf5e6;

    --noptin-background-color: rgba(255, 255, 255, 0) !important;

}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

/*
html {
    scroll-snap-type: y mandatory;
}

section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
*/

body {
    font-family: var(--font-secondary);
    color: var(--color-default);
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0em;
    text-transform: none;
    background-image: url(../images/body-bg.jpg);
    background-attachment: fixed;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: all ease-in-out 0.3s;
}

a:hover {
    color: var(--color-primary);
    ;
    text-decoration: none;
}

b,
strong {
    font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

p {
    line-height: 1.7em;
}

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

.sec-pad {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.italic {
    font-style: italic;
    font-size: 14px;
}


.button {
    background: rgba(241, 90, 36, 1);
    color: #fff;
    padding: 10px 20px;
    letter-spacing: 2px;
    font-size: 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

.button-transparent {
    background: rgba(241, 90, 36, 0.7);
}

.button:hover,
.button:focus,
.button:active {
    color: var(--btn-color-normal);
    background: var(--btn-color-hover);
    text-decoration: none;
    transition: all ease-in-out 0.3s;
    border: 1px solid var(--color-primary);
}

.learn-btn {
    display: inline-block;
    padding: 10px 24px;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    border: 2px solid #fff;
    background: transparent;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.learn-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}


.sec-header {
    color: var(--color-secondary);
    font-size: 36px;
    position: relative;
    font-weight: 300;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.hdr-text {
    font-size: 50px;
}

@media screen and (max-width:768px) {
    .sec-header {
        font-size: 30px;
    }

    .sec-header h2 {
        max-width: 100%;
    }

    .hdr-text {
        font-size: 24px;
    }

    button,
    .button {
        font-size: 15px;
        display: inline-block;
    }

}






.hero-section {
    background: url('../images/hero.jpg') no-repeat center center;
    background-size: cover;
    /*height: 100vh;*/
    height: 80vh;
    color: #fff3e2;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 60px 20px;
    width: 100%;
}

.hero-buttons .btn {
    margin: 10px;
    padding: 12px 28px;
    font-weight: bold;
    border-radius: 8px;
}

.btn-orange {
    background: rgba(241, 90, 36, 0.7);
    color: white;
}

.btn-orange:hover {
    background-color: var(--color-primary);
}


@media screen and (max-width: 480px) {

    body {
        overflow-x: hidden !important;
    }

    .hero-overlay p {
        font-size: 16px !important;
    }
}

.about-section {
    background-color: #fdf5e6;
    /* Soft beige tone */
    font-family: 'Segoe UI', sans-serif;
    color: #312216;
}



/* Services Section */


.accordion-row {
    display: flex;
    gap: 5px;
    height: 220px;
    overflow: hidden;
}

.accordion-item,
.accordion-item:last-of-type,
.accordion-item:first-of-type {
    height: 200px;
    width: 200px;
    border-radius: 20px;
    background-color: rgba(255, 84, 15, 0.6);
    color: #fff;
    flex: 1;
    transition: all 0.3s ease;
    /*    border-radius: 100px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /*    padding: 20px;*/
    position: relative;
    min-width: 160px;
}

.accordion-item.active {
    flex: 2;
    border-radius: 20px;
    align-items: center;
    padding: 30px;
}

.accordion-item h3 {
    margin: 0;
    font-size: 1.3rem;
    padding: 5px;
    text-align: center;
}

.accordion-item.active h3 {
    text-align: center !important;
}

.accordion-item p {
    display: none;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #fff6ed;
    text-align: center;
}

.accordion-item.active p {
    display: block;
}

/*

@media screen and (min-width: 1400px) and (max-width: 1200px) {

    .accordion-item,
    .accordion-item:last-of-type,
    .accordion-item:first-of-type,
    .accordion-item.active {
            {
            height: 168px;
        }
    }
*/


@media (max-width: 1024px) {
    .accordion-row {
        flex-direction: column;
        height: auto;
    }

    .accordion-item,
    .accordion-item.active {
        border-radius: 16px !important;
        flex: unset !important;
        width: 100% !important;
        padding: 15px;
        text-align: center !important;
    }

    .accordion-item h3 {
        width: 100% !important;
    }

    .accordion-item p {
        display: block;
    }

    .accordion-item,
    .accordion-item:last-of-type,
    .accordion-item:first-of-type {
        height: auto;
    }
}



@media screen and (max-width: 480px) {

    .accordion-item,
    .accordion-item:last-of-type,
    .accordion-item:first-of-type,
    .accordion-item.active {
        width: 100%;
        padding: 20px;
        text-align: center;
        align-items: center;
    }
}




.services-area {
    background: url('../images/services-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
}





.card {
    border: none;
}

.card .menu-content {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.card .menu-content::before,
.card .menu-content::after {
    content: "";
    display: table;
}

.card .menu-content::after {
    clear: both;
}

.card .menu-content li {
    display: inline-block;
}

.card .menu-content a {
    color: #fff;
}

.card .menu-content span {
    position: absolute;
    left: 50%;
    top: 0;
    font-size: 10px;
    font-weight: 700;
    font-family: "Open Sans";
    transform: translate(-50%, 0);
}

.card .wrapper {
    background-color: #fff;
    min-height: 370px;
    position: relative;
    overflow: hidden;
    /*    box-shadow: 0 5px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);*/
}

.card .wrapper:hover .data {
    transform: translateY(0);
}

.card .data {
    position: absolute;
    bottom: 0;
    width: 100%;
    transform: translateY(calc(70px + 1em));
    transition: transform 0.3s;
}

.card .data .content {
    padding: 1em;
    position: relative;
    z-index: 1;
}

.card .author {
    font-size: 12px;
}

.card .title {
    margin-top: 10px;
}

.card .text {
    height: 70px;
    margin: 0;
}

.card input[type=checkbox] {
    display: none;
}

.card input[type=checkbox]:checked + .menu-content {
    transform: translateY(-60px);
}

.example-1 .wrapper {
    background: url(https://images.unsplash.com/photo-1496979551903-46e46589a88b?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=cda12b505afa1beb06e49d89014cbd65&auto=format&fit=crop&w=634&q=80) 20% 1%/cover no-repeat;
}

.example-2 .wrapper {
    background: url(https://tvseriescritic.files.wordpress.com/2016/10/stranger-things-bicycle-lights-children.jpg) center/cover no-repeat;
}

.example-2 .wrapper:hover .menu-content span {
    transform: translate(-50%, -10px);
    opacity: 1;
}

.example-2 .header {
    color: #fff;
    padding: 1em;
}

.example-2 .header::before,
.example-2 .header::after {
    content: "";
    display: table;
}

.example-2 .header::after {
    clear: both;
}

.example-2 .header .date {
    float: left;
    font-size: 12px;
}

.example-2 .menu-content {
    float: right;
}

.example-2 .menu-content li {
    margin: 0 5px;
    position: relative;
}

.example-2 .menu-content span {
    transition: all 0.3s;
    opacity: 0;
}

.example-2 .data {
    color: #fff;
    transform: translateY(calc(70px + 3em));
}

.example-2 .title a {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}

.example-2 .button {
    display: block;
    width: 200px;
    margin: 2em auto 1em;
    text-align: center;
    font-size: 12px;
    color: #fff;
    line-height: 1;
    position: relative;
    font-weight: 700;
    background: #184755
}

.example-2 .button::after {
    content: "→";
    opacity: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    transition: all 0.3s;
}

.example-2 .button:hover::after {
    transform: translate(5px, -50%);
    opacity: 1;
}

.example-2 .content .text {
    visibility: hidden;
}

.example-2:hover .content .text {
    visibility: visible;
    transition: all ease-in-out 0.3s;
}


.overlap {
    margin-top: -120px
}

.power-up {
    padding: 5rem;
}

@media screen and (max-width: 480px) {
    .overlap {
        margin-top: 0;
    }

    .power-up {
        padding: 2rem 0;
    }
}

.quote-box,
.quote-tex {
    position: relative;
}

.quote-text:before {
    content: url('../images/dialog.png');
    width: 100%;
    height: 100%;
    position: absolute;
    top: -65px;
    left: 0;
    opacity: 0.7;
}

.quote-text {
    color: var(--color-primary);
    font-size: 2.3rem;
    font-family: var(--font-primary);
    font-weight: bold;
}




.shadow {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


.contact-bg {
    background-color: #f2e2d5;
}



.mission-section {
    padding: 60px 20px;
}

.mission-title {
    font-size: 2rem;
    font-weight: bold;
}

.mission-text {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.mission-link {
    font-style: italic;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--color-primary);
    margin-top: 15px;
}

.mission-link:hover {
    text-decoration: underline;
}


@media screen and (max-width: 480px) {
    .mission-section {
        padding: 0 20px 20px;
    }

}





/********************************************************************************/

.parallax {
    /*    background-color: #f2e2d5;*/
    /*
    background-size: cover;
    color: #fff;
*/
}

.counter-area {
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    overflow: hidden;
    margin: 0;

}

.counter-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 30px 50px;
    width: 16%;
    transition: all ease-in-out 0.5s;
}

.counter {
    font-size: 60px;
    margin-top: 10px;
    position: relative;
    animation-duration: 5s;
    color: var(--color-primary);
}

.counter-container span {
    font-size: 24px;
}

/*
.counter:after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    content: '\f067';
    font-size: 30px;
    top: 28%;
    right: 0;
}

.counter.cls-plus:after {
    right: 12%;
}
*/

.counter-container:hover .counter {
    font-size: 72px;
    transition: all ease-in-out 0.5s;
}

@media (max-width: 580px) {
    .counter-area {
        flex-direction: column;
        height: auto;
    }

    .counter-container {
        width: 65%;
    }
}

/**************************************************************/








.shareArticle {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    padding: 15px;
}

.shareSocial {
    display: flex;
    flex-flow: row;
    align-items: center;
    /*    margin-bottom: 30px;*/
}

@media (max-width: 767px) {
    .shareSocial {
        flex-flow: column;
    }
}

.shareSocial .socialTitle {
    margin: 0 15px 0 0;
    font-size: 20px;
}

@media (max-width: 767px) {
    .shareSocial .socialTitle {
        margin-bottom: 15px;
        text-align: center;
    }
}

.shareSocial .socialList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    justify-content: center;
    flex-flow: row wrap;
}

.shareSocial .socialList li {
    margin: 5px;
}

.shareSocial .socialList li:first-child {
    padding-left: 0;
}

.shareSocial .socialList li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    text-decoration: none;
    background-color: #999;
    color: #fff;
    transition: 0.35s;
}

.shareSocial .socialList li a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: top left;
    transform: scale(1) translate(-50%, -50%);
    transition: 0.35s;
}

.shareSocial .socialList li a:hover i {
    transform: scale(1.5) translate(-50%, -50%);
}

.shareSocial .socialList li:nth-child(1) a {
    background-color: #135cb6;
}

.shareSocial .socialList li:nth-child(2) a {
    background-color: #00aced;
}

.shareSocial .socialList li:nth-child(3) a {
    background-color: #BD081C;
}

.shareSocial .socialList li:nth-child(4) a {
    background-color: #111111;
}

.shareSocial .socialList li:nth-child(5) a {
    background-color: #1FB381;
}

.shareLink .permalink {
    position: relative;
    border-radius: 30px;
}

.shareLink .permalink .textLink {
    text-align: center;
    padding: 12px 60px 12px 30px;
    height: 45px;
    width: 450px;
    font-size: 16px;
    letter-spacing: 0.3px;
    color: #494949;
    border-radius: 25px;
    border: 1px solid #f2f2f2;
    background-color: #f2f2f2;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .shareLink .permalink .textLink {
        width: 100%;
    }
}

.shareLink .permalink .textLink:focus {
    border-color: #d8d8d8;
}

.shareLink .permalink .textLink::-moz-selection {
    color: #fff;
    background-color: #ff0a4b;
}

.shareLink .permalink .textLink::selection {
    color: #fff;
    background-color: #ff0a4b;
}

.shareLink .permalink .copyLink {
    position: absolute;
    top: 50%;
    right: 25px;
    cursor: pointer;
    transform: translateY(-50%);
}

.shareLink .permalink .copyLink:hover:after {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
}

.shareLink .permalink .copyLink:after {
    content: attr(tooltip);
    width: 140px;
    bottom: -40px;
    left: 50%;
    padding: 5px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-10px) translateX(-50%);
    transition: all 300ms ease;
    text-align: center;
}

.shareLink .permalink .copyLink i {
    font-size: 20px;
    color: #ff0a4b;
}











/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.social-bg {
    background: #f1f1f1;
}

footer {
    background: url(../images/ftr-bg.jpg);
    padding: 60px 0 30px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.ftr-head {
    color: #dddddd;
    font-size: 24px;
    margin: 10px 0;
    font-weight: 500;
    letter-spacing: 1px;
}

@media screen and (max-width: 480px) {
    .ftr-head {
        font-size: 26px;
        margin: 20px 0 10px;
    }
}

.link-list li {
    word-break: break-all;
    line-height: 1.4;
    padding: 5px 0;
}

.link-list li:before {
    content: '\f105';
    font-family: FontAwesome;
    font-size: 14px;
    margin-right: 10px;
    color: #e6e0cf;
}

.link-list li a {
    color: #e6e0cf;
    font-size: 14px;
    font-family: var(--font-optional);
    transition: all 0.2s ease 0s;
}

@media screen and (max-width: 480px) {
    .link-list li {
        padding: 8px 0;
    }

    .link-list li a {
        font-size: 16px;
    }
}

.link-list li:hover a,
.link-list li:focus a {
    text-decoration: none;
    color: #aaa;
    padding-left: 5px;
}

.link-list li.indent {
    margin-left: 25px;
}

.connect {
    color: #e6e0cf;
    font-size: 14px;
    line-height: 28px;
    font-family: var(--font-optional);
}

@media screen and (max-width: 480px) {
    .connect {
        font-size: 16px;
        line-height: 30px;
    }
}

.social-icon-area {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
}

.social-icon-area ul li {
    float: left;
    padding: 0 7px;
}

.social-icon-area ul li a,
.social-icon-area ul li .fa {
    font-size: 14px;
    /*    color: #e6e0cf;*/
    transition: all ease-in-out 0.3s;
}

.social-icon-area ul li:hover a {
    color: #aaa;
}

.support-bg {
    background-color: #f2e2d5;
}

/* @media screen and (max-width: 480px) {
    footer {
        text-align: center;
    }

    .social-icon-area ul {
        margin-left: 32.5%;
    }
} */

.cpyr8 {
    background-color: var(--color-primary);
}

.cpyr8 p {
    text-align: center;
    color: #fff;
    line-height: normal;
    font-size: 14px;
    font-family: var(--font-optional);
    margin: 15px auto;
    letter-spacing: 0.1rem;
}


.founder-msg {
    font-size: 26px;
}


.dev {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

/* contact form css */

.form-group {
    margin-bottom: 15px;
}

.form-control {
    padding: 10px 15px;
    height: 46px;
    border-radius: 2px;
    border: 1px solid #c1c1c1;
    font-size: 13px;
    color: #616161;
    background: #fff;
    border-radius: 20px;
    appearance: auto !important;
}

.form-control-captcha {
    padding: 10px 15px;
    height: 46px;
    border-radius: 2px;
    border: 1px solid #c1c1c1;
    font-size: 13px;
    color: #616161;
    background: #fff;
    width: 80%;
    border-radius: 20px;
}

textarea.form-control {
    height: 100px;
}

.wpcf7-submit {
    background: rgba(241, 90, 36, 0.7);
    color: #fff;
    padding: 10px 20px;
    letter-spacing: 2px;
    font-size: 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    transition: all 0.3s;
}



.noptin-optin-form {
    justify-content: flex-start !important;
}

.noptin-optin-form-wrapper {
    background-color: transparent !importanr
}

/*banner css */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 4rem;
    color: white;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    /* dark overlay */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-donate {
    background-color: #D9511D;
    color: white;
}

.btn-donate:hover {
    background-color: #c04816;
}

.btn-learn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-learn:hover {
    background-color: white;
    color: black;
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem;
        text-align: center;
        justify-content: center;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }
}

/*banner css */




/*.mission-text{
    font-size: 26px;
    line-height: 1.4;
	margin-bottom: 20px;
}*/

.txt-hlt,
.bullet-list li p b {
    color: var(--color-primary);
}

.bullet-list li {
    padding-bottom: 15px;
    list-style: disc;
}

}



.my-extra-class {
    display: flex !important;
    justify-content: space-between !important;

}

.my-extra-class .nav-previous a,
.my-extra-class .nav-next a {
    font-size: 12px !important;
}

/** Blog Post css **/

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 posts per row */
    gap: 30px;
    /* space between posts */
    align-items: stretch;
}

.post-grid article {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.post-grid article:hover {
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
}

/** Blog Post css **/

/** Monthly seva form css **/
.item-label {
    position: relative;
    margin-bottom: 5px;
    display: block;
    cursor: pointer;
}

.item-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.item-label input[type=radio]:checked + .item .item-details {
    background: #f6fbff;
    border-color: #f15a24 !important;
    border-color: var(--theme-color);
    -webkit-transition: .12s;
    -o-transition: .12s;
    transition: .12s;
}

.amount {
    font-size: 16px;
    line-height: 24px;
}

.item-details-description {
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    color: rgba(0, 0, 0, .4);
}

.item-details-description .plan-frequency {
    text-transform: capitalize;
}


/*--------------------------------------------------------------
Donation Form
--------------------------------------------------------------*/

.form-container {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
}

.donation-container {
    max-width: 100%;
    /* Adjust as needed */
    font-family: var(--font-secondary);
    /* Use a common sans-serif font */
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.8);

    /*
    filter: blur(4px);
    -o-filter: blur(4px);
    -ms-filter: blur(4px);
    -moz-filter: blur(4px);
    -webkit-filter: blur(4px);
*/
}

.donation-header {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    /* Darker text */
    margin-bottom: 10px;
}

.donation-input-box {
    border: 1px solid #ccc;
    /* Light gray border */
    border-radius: 4px;
    /* Slightly rounded corners */
    padding: 15px 15px 15px 15px;
    display: grid;
    /* Define grid structure for amount, circle, and frequency */
    grid-template-columns: 1fr auto;
    /* Amount takes most space, circle is auto */
    grid-template-rows: auto auto;
    /* Amount/Circle on top, Frequency below */
    gap: 0 10px;
    align-items: start;
}

.donation-amount {
    font-size: 18px;
    /* Large size for the main number */
    font-weight: 500;
    /* Medium thickness */
    color: #333;
    grid-column: 1 / 2;
    /* Spans the first column */
    grid-row: 1 / 2;
    /* First row */
    line-height: 1.2;
    /* Adjust line height for better alignment */
}

.donation-frequency {
    font-size: 0.9em;
    color: #777;
    /* Subtler gray text */
    grid-column: 1 / 3;
    /* Spans both columns */
    grid-row: 2 / 3;
    /* Second row */
    margin-top: 5px;
    /* Space from the amount above */
}

/*
.check-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #aaa;
    border-radius: 50%; 
    grid-column: 2 / 3; 
    grid-row: 1 / 2; 
    align-self: center; 
    cursor: pointer;
}
*/


.donation-form {
    max-width: 500px;
    margin: auto;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
}

.donation-form input,
.donation-form select,
.donation-form textarea {
    width: 100%;
    padding: 8px;
    margin: 6px 0 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.donation-form button {
    background: #f15a24;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.donation-form button:hover {
    background: #ffffff;
}


.frm-hdr {
    font-size: 20px;
}

.modal-header img {
    width: 14%;
    margin-right: 20px;
}

.small-text {
    font-size: 13px;
}

.footer-links {
    padding-left: 0;
}

.wpcf7-list-item label {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.wpcf7-list-item label input[type="checkbox"] {
    margin-top: 10px;
}

/******* Donate page CSS *****/

.gap-before-button {
    padding-top: 25px;
}

.gap-before-button-impact {
    padding-top: 65px;
}

.gap-before-button-contribute {
    padding-top: 15px;
}


.cta-blk {
    position: relative;
    min-height: 550px;

}

.cta-blk .cta-btn-align {
    position: absolute;
    bottom: 25px;
    left: inherit;
}

.entry-header h2.fs-4 {
    font-size: 2rem !important;
}

h2.subtitle {
    font-size: 26px;
    margin-bottom: 15px;
    font-style: italic;
    font-weight: bold;
}

.entry-content p:first-child {
    /*    min-height: 92px;*/
    display: block;
}

.blog-area .entry-content {
    padding-bottom: 60px;
}


@media screen and (min-width: 1200px) {

    /*
    .entry-header .post-thumbnail img{
        width: 50% !important;
    }
*/
}


@media screen and (min-width: 1160px) and (max-width: 1281px) {

    .accordion-item p {
        font-size: 0.75rem;
    }
}


@media screen and (min-width: 768px) and (max-width: 1196px) {

    .navik-header .logo {
        float: none !important;
        padding: 10px !important;
    }

    .navik-header .logo img {
        max-width: 7% !important;
    }

    .hero-section {
        height: 65vh !important;
    }

    .hero {
        min-height: 23vh !important;
    }

    .counter-area {
        height: auto !important;
    }

    .shareSocial .socialList li a {
        width: 36px;
        height: 36px;
    }

    .shareSocial .socialTitle {
        margin: 0 5px 0 0;
    }


    .button {
        font-size: 14px;
    }

    .example-2 .title a {
        font-size: 24px;
    }
    
    .card .text{
        height: 95px;
        font-size: 16px;
    }

}

@media screen and (min-width: 360px) and (max-width: 1196px) {

    .cta-blk .align-gap {
        height: 45px;
        display: block;
        margin: 20px 0;
    }
}

.acf-featured-image {
    width: 100% !important;
    height: 400px;
    /* desired vertical height */
    object-fit: cover;
    aspect-ratio: 2 / 3;
    /* vertical look */
    border-radius: 8px;
    /* optional */
}
