/*---------------------------------------------------------------

        Template Name: Save Causes - Non Profit Organisation Website
        Description: NGO
        Author: Lucid Solutions
        Author URL: https://www.templatemonster.com/store/lucid_solutions/
        Version: 1.0.0

    -----------------------------------------------------------------

        CSS INDEX
        ==================

        1.   Header & Navbar CSS
        2.   Home Slider Area CSS
        3.   Feature Section Area CSS
        4.   About Section Area CSS
        5.   The Causes Section Area CSS
        6.   Counter Section Area CSS
        7.   Image Gallery Section Area CSS
        8.   Quick Donation Section Area CSS
        9.   CTA Section Area CSS
        10.  Our Blog Section Area CSS
        11.  Happy Donors Section Area CSS
        12.  Breadcrumb Area CSS
        13.  About Page Styles
        14.  Causes Page Styles
        15.  Causes Details Page CSS
        16.  Project Page CSS
        17.  Project-Details Page CSS
        18.  Blog-Details Page CSS
        19.  Contact Page CSS
        20.  Footer Top (client-slider, Owl Carousel) Section Area CSS
        21.  Footer Section Area CSS
        22.  Back to top CSS

----------------------------------------------------------------*/

/* ==================
   Basic Styles
================== */

[data-theme="sc_light"] {
    --body-bg: #ffff;
    --dark-bg: #0B1523;
    --primary-bg: #2cb4d4;
    --primary-bg-shade: #FFDBC6;
    --primary-bg-shade-2: #2cb4d4;
    --primary-bg-quate-shade: #FFDBC6;
    --primary-color: #2cb4d4;
    --primary-text: #2cb4d4;
    --alt-bg: #F7F7F7;
    --secondary-bg: #081D51;
    --secondary-bg-shade: #192F65;
    --secondary-bg-shade-2: 25, 47, 101;
    --success-bg: #39A451;
    --success-text: #39A451;
    --danger-bg: #2cb4d4;
    --danger-text: #2cb4d4;
    --warning-bg: #2cb4d4;
    --warning-text: #2cb4d4;
    --info-bg: #2cb4d4;
    --info-text: #2cb4d4;
    --blue-bg: #2984FF;
    --blue-text: #2984FF;
    --card-bg: #ffffff;
    --card-bg-shade: 255, 255, 255;
    --para-text: #5C5C5C;
    --heading-text: #0B1523;
    --sub-heading-text: #0B1523;
    --nav-link-text: #0B1523;
    --primary-btn: #2cb4d4;
    --primary-btn-text: #ffffff;
    --primary-outline-btn: #fbffff;
    --primary-outline-text: #fbfbfb;
    --primary-border: #fffffe;
    --custom-border: #DADADA;
    --form-input-bg: #E7E7E7;
    --form-input-text: #878787;
    --white-border: #ffffff;
    --white-text: #ffffff;
    --white-bg: #ffffff;
    --success-btn: #39A451;
    --success-btn-text: #ffffff;
    --info-btn: #2cb4d4;
    --info-btn-text: #ffffff;
    --faq-border: #D9D9D9;
    --loading-bg: #D9D9D9;
    /* font family */
    --PrimaryFont: "Rubik", sans-serif;
}

[data-theme="sc_dark"] {
    --body-bg: #0B0B0C;
    --dark-bg: #030405;
    --primary-bg: #10c8c8;
    --primary-bg-shade: #FFDBC6;
    --primary-bg-shade-2: #10c8c8;
    --primary-bg-quate-shade: #2B2019;
    --primary-color: #10c8c8;
    --primary-text: #10c8c8;
    --alt-bg: #141414;
    --secondary-bg: #10151B;
    --secondary-bg-shade: #29303A;
    --secondary-bg-shade-2: 41, 48, 58;
    --success-bg: #39A451;
    --success-text: #39A451;
    --danger-bg: #DC4242;
    --danger-text: #DC4242;
    --warning-bg: #10c8c8;
    --warning-text: #10c8c8;
    --info-bg: #65C9BB;
    --info-text: #65C9BB;
    --blue-bg: #2984FF;
    --blue-text: #2984FF;
    --card-bg: #353535;
    --card-bg-shade: 53, 53, 53;
    --para-text: #C3C3C3;
    --heading-text: #FFFFFf;
    --sub-heading-text: #FFFFFf;
    --nav-link-text: #FFFFFf;
    --primary-btn: #10c8c8;
    --primary-btn-text: #ffffff;
    --primary-outline-btn: #f6f6f6;
    --primary-outline-text: #10c8c8;
    --primary-border: #10c8c8;
    --custom-border: #7E7E7E;
    --form-input-bg: #222222;
    --form-input-text: #898989;
    --white-border: #ffffff;
    --white-text: #ffffff;
    --white-bg: #ffffff;
    --success-btn: #39A451;
    --success-btn-text: #ffffff;
    --info-btn: #3F9E91;
    --info-btn-text: #ffffff;
    --faq-border: #D9D9D9;
    --loading-bg: #515050;
    /* font family */
    --PrimaryFont: "Rubik", sans-serif;
}

* {
    box-sizing: border-box;
    font-family: var(--PrimaryFont);
    word-break: break-word;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: var(--body-bg);
}

.fs-0 {
    font-size: 0px;
}

/* text-color */

.primary-text {
    color: #10C8C8FF !important;
}

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

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

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

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

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

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

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

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

.sub-heading-text {
    color: var(--sub-heading-text)
}

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


.nav-link-text {
    color: var(--nav-link-text);
}

.form-input-text {
    color: var(--form-input-text);
}

.success-btn-text {
    color: var(--success-btn-text);
}

.info-btn-text {
    color: var(--info-btn-text);
}

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

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


/* bg color */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-input-bg {
    background-color: var(--form-input-bg) !important;
}

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

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



/* border color */

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

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


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


/* buttons */

.btn-primary {
    background: var(--primary-color)!important;
    border-color: var(--primary-border) !important;
    color: var(--white-text) !important;
    padding: 18px 30px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
}

.btn-primary:focus {
    outline: none;
    border-color: var(--primary-border);
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--primary-bg-shade-2) !important;
    border-color: var(--primary-border)!important;
    color: var(--white-text) !important;
    padding: 18px 30px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
}

.btn-info {
    background: var(--info-bg)!important;
    border-color: var(--info-btn) !important;
    color: var(--white-text) !important;
    padding: 18px 30px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
}

.btn-success {
    background: var(--success-bg)!important;
    border-color: var(--info-btn) !important;
    color: var(--white-text) !important;
    padding: 18px 30px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    box-shadow: none;
}

.btn-success:focus {
    outline: none;
    border-color: var(--success-bg)!important;
    box-shadow: none;
}



.btn-outline-primary {
    background-color: unset !important;
    border-color: var(--primary-outline-btn) !important;
    color: var(--primary-outline-text) !important;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
}

.btn-outline-primary:focus {
    outline: none;
    border-color: var(--primary-border);
    box-shadow: none;
}

.btn-outline-primary:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-outline-btn) !important;
    color: var(--white-text) !important;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.5s ease-in-out;
}

.btn-outline-white {
    background-color: unset !important;
    border-color: var(--white-border) !important;
    color: var(--white-text) !important;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
}

.btn-outline-white:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-outline-btn) !important;
    color: var(--white-text) !important;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.5s ease-in-out;
}

p {
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 16px;
}

p:last-child {
    margin-bottom: 0;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.mb-30 {
    margin-bottom: 30px !important;
}


.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-top: 50px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Rubik", sans-serif;
}

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

.p_align_justify{
    text-align: justify;
}

.why-choose-text .error {
    color: var(--danger-text) !important;
    background-color: var(--white-bg) !important;
}

::placeholder, .form-select, input[type="date"] {
    color: var(--form-input-text)!important;
}

.form-control:focus, .form-select:focus {
    color: var(--para-text)!important;
    background-color: var(--bs-body-bg);
    border-color: var(--primary-border);
    outline: 0;
    box-shadow: none;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    z-index: 2;
}
input[type="date"]{
    position: relative;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::after{
    content: '\f073';
    font-family: 'FontAwesome';
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 30%;
    color: gray;
    z-index: 1;
}

.title-icon {
    position: relative;
    width: 200px;
    margin: auto;
}

.title-icon::before {
    filter: hue-rotate(210deg) saturate(250%) brightness(50%);
    content: ".";
    background: url('../../assets/img/border-bottom.webp') no-repeat;
    background-size: contain;
    position: absolute;
    width: 200px;
    left: 0;
    top: 0;
    background-position: center center;
}
.form-select{
    background-image: url("../../assets/img/icons/dropdown.svg");

}
/*================================================
  Header & Navbar CSS
=================================================*/

.top-header-optional li a {
    width: 30px;
    height: 30px;
    transition: 0.2s ease-in-out;
}

.top-header-optional li a:hover {
    background-color: var(--primary-color) !important;
    transform: translateY(-5px);
}

.nav-link:hover, .nav-link.active, .nav-link:focus
{
    color: var(--primary-color) !important;
    transition: 0.3s ease-in;
    box-shadow: none;
}

.navbar-brand img{
    width: 130px;
}

@media(max-width:767px){
    .navbar-brand img{
        width: 100px;
    }
}


/*================================================
Home Slider Area CSS
=================================================*/

.home-slides .owl-item {
    width: 100%;
}

.item-bg4 {
    background: linear-gradient(0deg, rgba(var(--secondary-bg-shade-2), 0.9), rgba(var(--secondary-bg-shade-2), 0.5)),
    url(../../public/img/slider_img/hero_slider_1.jpg) no-repeat;
    background-size: cover;
}

.item-bg5 {
    background: linear-gradient(0deg, rgba(var(--secondary-bg-shade-2), 0.9), rgba(var(--secondary-bg-shade-2), 0.5)),
    url(../../public/img/slider_img/hero_slider_2.jpg) no-repeat;
    background-size: cover;
}

.item-bg6 {
    background: linear-gradient(0deg, rgba(var(--secondary-bg-shade-2), 0.9), rgba(var(--secondary-bg-shade-2), 0.5)),
    url(../../public/img/slider_img/hero_slider_3.jpg) no-repeat;
    background-size: cover;
}

.main-slides-item {
    min-height: 700px;
    display: flex;
    padding: 25px 0;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media(max-width:1199px) {
    .main-slides-item {
        min-height: 600px;
    }
}
@media(max-width:575px) {
    .main-slides-item {
        min-height: 400px;
    }
}
/* .main-slides-content h1 {
  font-size: 35px;
} */

.main-slides-content p {
    font-size: 16px !important;
}

.main-slides-content p {
    max-width: 800px;
}

/*================================================
Feature Section Area CSS
=================================================*/

.features-section{
    min-height: 350px;
}
.icon-bg {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    line-height: 50px;
}
.icon-bg img{
    width: 25px !important;
    height: 25px !important;
}
.feature-card {
    -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    -webkit-transition: all .5s;
    transition: all .5s;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.features-section .feature-card:hover {
    border: 1px solid var(--PrimaryColor);
    transform: translateY(-5px);
}


/*================================================
 About Section Area CSS
=================================================*/

.about_summary p:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    content: "";
    background-color: #eee;
}
.circle-img img{
    width: 450px;
    max-width: 100%;
}

/* ==================
 The Causes Section Area CSS
================== */


.single_nfeed:is(.single_nfeed_2):is(.has_before) {
    position: relative;
}

.single_nfeed {
    -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);

}

.causes_card{
    min-height: 350px!important;
}
.cust_cause_card{
    min-height: 350px;
}

.progress-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-text);
    margin: 0 0 30px;
}

.progress {
    height: 17px;
    background: var(--loading-bg);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: visible;
    position: relative;
}

.progress .progress-bar {
    border-radius: 15px;
    box-shadow: none;
    position: relative;
    animation: animate-positive 2s;
}

.progress .progress-icon,
.progress .progress-value {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 40px;
    background: var(--card-bg);
    border: 7px solid var(--white-border);
    font-size: 15px;
    font-weight: 600;
    color: var(--para-text);
    position: absolute;
    top: -17px;
    right: -5px;
}


@-webkit-keyframes animate-positive {
    0% {
        width: 0;
    }
}

@keyframes animate-positive {
    0% {
        width: 0;
    }
}

/* ==================
 Counter Section Area CSS
================== */

.counter-section {
    background: linear-gradient(0deg, rgba(var(--secondary-bg-shade-2), 0.9), rgba(var(--secondary-bg-shade-2), 0.9)),
    url(../../storage/app/public/article_images/niTom1uJSr76rxfrOT0UnfvSWYXSJnqFxafK7b0m.jpg) no-repeat;
    background-size: cover;
}

.scroll-block i {
    font-size: 30px;
}

.highlight {
    font-size: 48px;
}

.milestone-counter i {
    font-size: 45px;
}


/* ==================
 Image Gallery Section Area CSS
================== */

@media(min-width: 992px){
    #gallery {
        padding: 60px 30px 0 30px;
    }
}

.img-wrapper {
    position: relative;
    margin-top: 15px;
}

.img-wrapper img {
    width: 100%;
}

.img-overlay {
    background: rgba(255, 95, 0, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.img-overlay i {
    color: #fff;
    font-size: 3em;
}

#overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#overlay img {
    margin: 0;
    width: 80%;
    height: auto;
    object-fit: contain;
    padding: 5%;
}

@media(min-width: 768px) {
    #overlay img {
        width: 60%;
    }
}

@media(min-width: 1200px) {
    #overlay img {
        width: 50%;
    }
}

#nextButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

#nextButton:hover {
    opacity: 0.7;
}

@media(min-width: 768px) {
    #nextButton {
        font-size: 3em;
    }
}

#prevButton {
    color: #ffffff!important;
    font-size: 2em;
    transition: opacity 0.8s;
}

#prevButton:hover {
    opacity: 0.7;
}

@media(min-width: 768px) {
    #prevButton {
        font-size: 3em;
    }
}

#exitButton {
    color: #ffffff!important;
    font-size: 2em;
    position: absolute;
    top: 15px;
    right: 15px;
}

#exitButton:hover {
    opacity: 0.7;
}

@media(min-width: 768px) {
    #exitButton {
        font-size: 3em;
    }
}

/* ==================
 Quick Donation Section Area CSS
================== */

.radio-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 20px;
    cursor: pointer;
    background-color: var(--secondary-bg);
    color: white;
    min-width: 150px;
}
.radio-button.active{
    background-color: var(--primary-bg);
}
.radio-button input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.radio-tick {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-bg);
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    background-color: var(--primary-bg);
}
.radio-button.active .radio-tick{
    background-color: var(--secondary-bg);
}
.radio-button input[type="radio"]:checked + .radio-tick::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
}
.donation-form{
    width: 800px;
    max-width: 100%;
    margin: auto;
    background-color: var(--body-bg);
    padding: 25px;
}
/* ==================
 CTA Section Area CSS
================== */
.cta-bg {
    background: linear-gradient(0deg, rgba(var(--secondary-bg-shade-2), 0.9), rgba(var(--secondary-bg-shade-2), 0.9)),
    url(../../assets/img/bg/cta.webp) no-repeat;
    background-size: cover;
}


/* ==================
 Our Blog Section Area CSS
================== */

.single_nfeed:is(.single_nfeed_2):is(.has_before) {
    position: relative;
}

.single_nfeed {
    -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);

}
.a-heading-text a:hover{
    color: var(--primary-text);
    transition: 0.4s ease-in-out;
}
.custcard-body{
    min-height: 100px;
    display: flex;
    flex-direction: column;
}
/*================================================
 Happy Donors Section Area CSS
=================================================*/

.testimonial {
    padding: 30px 30px 50px;
    margin-top: 50px;
}

.feedback {
    background: linear-gradient(0deg, rgba(var(--secondary-bg-shade-2), 0.9), rgba(var(--secondary-bg-shade-2), 0.9)),
    url(../../storage/app/public/article_images/GxfAM6Bcxk0dwNSSWw93YFcWYjA1mehND1is5nV6.jpg) no-repeat;
    background-size: cover;
}

.testimonial .icon {
    display: inline-block;
    font-size: 80px;
}

.owl-controls {
    margin-top: 20px;
}

.owl-pagination {
    display: flex;
    justify-content: center;
}

.owl-page {
    height: 10px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10%;
}

.owl-page:hover,
.owl-page.active {
    background-color: rgba(255, 255, 255, 0.3);
}

.owl-page:not(first-item) {
    margin-left: 10px;
}

/* ==================
  Breadcrumb Area CSS
================== */

.breadcrumb_area {
    background-image: url(../../storage/app/public/article_images/TtjL1smE2bu27QBTmV2xI6f6HtNWqD6Jw7bHRfmG.jpg);
    min-height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}


.breadcrumb_overlay {
    position: relative;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}

.breadcrumb_overlay:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--secondary-bg);
    opacity: 0.5;
    z-index: -1;
}

.breadcrumb_area {
    padding-top: 160px;
    padding-bottom: 132px;
}



/* ==================
 About Page CSS
================== */

.img-container {
    padding: 5px;
}

.img-container img {
    width: 100%;
    height: auto;
}

.choose_single_card {
    padding: 35px 45px;
    padding-top: 15px;
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    overflow: hidden;
    -webkit-transition: all 0.5s linear 0s;
    -moz-transition: all 0.5s linear 0s;
    -ms-transition: all 0.5s linear 0s;
    -o-transition: all 0.5s linear 0s;
    transition: all 0.5s linear 0s;
}

.choose_abs:is(.theme-2) {
    background-color: var(--info-bg) !important;
}

.choose_abs:is(.theme-3) {
    background-color: var(--warning-bg) !important;
}

.choose_abs:is(.theme-4) {
    background-color: var(--blue-bg) !important;
}

.choose_abs:is(.theme-5) {
    background-color: var(--success-bg) !important;
}



.choose_abs {
    position: absolute;
    right: -77px;
    top: -77px;
    width: 200px;
    height: 200px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: flex-end;
}

.choose_single_card .choose_abs img {
    font-size: 50px;
    position: relative;
    z-index: 9;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    padding-bottom: 30px;
    padding-left: 30px;
    color: var(--clr-common-white);
}

.choose_single_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 23px 29px rgba(0, 0, 0, 0.09);
}

.color_blue {
    font-size: 80px;
    font-weight: 700;
    -webkit-text-fill-color: var(--card-bg) !important;
    -webkit-text-stroke: 1px var(--blue-text) !important;
    line-height: 1.6;
}

.color_success {
    font-size: 80px;
    font-weight: 700;
    -webkit-text-fill-color: var(--card-bg) !important;
    -webkit-text-stroke: 1px var(--success-text) !important;
    line-height: 1.6;
}

.color_warning {
    font-size: 80px;
    font-weight: 700;
    -webkit-text-fill-color: var(--card-bg) !important;
    -webkit-text-stroke: 1px var(--warning-text) !important;
    line-height: 1.6;
}

.color_info {
    font-size: 80px;
    font-weight: 700;
    -webkit-text-fill-color: var(--card-bg) !important;
    -webkit-text-stroke: 1px var(--info-text) !important;
    line-height: 1.6;
}

.single_team {
    background-color: var(--alt-bg);
    padding: 40px 40px 0 40px;
}

.member_social a:first-child {
    margin-left: 0;
}

.member_social a {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-color: var(--primary-bg-shade);
    border-radius: 10px 10px 0 0;
    text-align: center;
    line-height: 50px;
    color: var(--primary-text);
}

.member_social a:is(.facebook):hover {
    background-color: #385398;
    color: var(--white-text);
    transition: 0.3s ease-in;
}

.member_social a:is(.twitter):hover {
    background-color: #02A3F4;
    color: var(--white-text);
    transition: 0.3s ease-in;
}

.member_social a:is(.instagram):hover {
    background-color: #d24375;
    color: var(--white-text);
    transition: 0.3s ease-in;
}

.member_social a:is(.linkedin):hover {
    background-color: #0170ad;
    color: var(--white-text);
    transition: 0.3s ease-in;
}
.mejs__overlay.mejs__layer.mejs__overlay-play{
    width: 100% !important;
    height: 100% !important;
}
.mejs__poster{
    width: 100% !important;
    background-size: cover !important;
    height: 100% !important;
}
.mejs__container:not(.mejs__container-fullscreen){
    min-height: 350px;
    max-height: 350px;
}
.mejs__container:not(.mejs__container-fullscreen) video{
    min-height: 350px;
    max-height: 350px;
}
@media(min-width:1440px){
    .mejs__container:not(.mejs__container-fullscreen){
        min-height: 650px;
        max-height: 650px;
    }
    .mejs__container:not(.mejs__container-fullscreen) video{
        min-height: 650px;
        max-height: 650px;
    }
}


.mejs__overlay-button:after {
    content: '';
    position: absolute;
    border: 5px solid var(--white-bg);
    border-radius: 50%;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    animation: bloom 1.5s linear infinite;
    opacity: 0;
    animation-delay: .4s;
    z-index: 1;
    width: 100px;
    height: 100px;
}

@keyframes bloom {
    0% {
        transform: scale(1);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(2);
    }
}

.accordion-item{
    background-color: var(--card-bg);
}

/* .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
} */

.accordion-button:not(.collapsed)::after {
    content:'\f077';
    font-family: 'FontAwesome';
    background-image: unset;
    transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
    content:'\f078';
    font-family: 'FontAwesome';
    background-image: unset;
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button{
    background-color: var(--card-bg);
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: var(--card-bg);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: unset;
    outline: 0;
    box-shadow: none;
}

.accordion-button .faq-button:hover {
    background-color: var(--primary-text) !important;
}

.accordion_wrapper .accordion-body {
    padding: 26px;
    padding-right: 28px;
    padding-top: 0;
    background-color: var(--card-bg);
    font-size: 16px;
    line-height: 1.75;
}

/* ==================
 Causes Page CSS
================== */

.Characteristics-list li {
    position: relative;
    padding: 0 0 8px 40px;
    margin: 0 0 8px 0;
    font-size: 16px;
}

.Characteristics-list li i {
    color: var(--primary-text);
    font-size: 12px;
    background: var(--primary-bg-shade);
    margin-right: 12px;
    border-radius: 30px;
    padding: 6px;
    position: absolute;
    left: 0;
    top: 2px;
    line-height: 12px;
}

/*================================================
 Causes Details Page CSS
=================================================*/

.single_cause ul {
    padding: 0 20px;
}

.single_cause ul li::marker {
    color: var(--primary-text) !important;
}

.single_cause_img img {
    width: 100%;
    object-fit: fill;
}

.donation_submit_box {
    width: 160px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    border-style: solid;
    border-width: 2px;
    border-color: #ebebeb;
    background-color: white;
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}

.donation_submit_box button[type=submit] {
    flex: 1;
    border: 2px solid #ebebeb;
    padding: 0 25px;
    border-radius: 30px;
    color: var(--primary-text);
    background-color: transparent;
    margin-left: -2px;
    height: 60px;
    margin-top: -2px;
    font-weight: 700;
}

.donation_submit_box input[type=text] {
    border: 0;
    width: 100%;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 0 10px;
    text-align: center;
}

.input_value {
    padding: 0 35px;
    height: 60px;
    border: 2px solid #ebebeb;
    border-radius: 30px;
    background-color: transparent;
    text-align: center;
    margin-right: 15px;
    margin-bottom: 20px;
}

.input_value:hover {
    background-color: var(--primary-bg);
    color: var(--white-text) !important;
    border-color: var(--primary-border);
    transition: 0.3s ease-in;
}

.donation_submit_box2 {
    width: 160px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    border-style: solid;
    border-width: 2px;
    border-color: #ebebeb;
    background-color: white;
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}

.page_pagination_withimg {
    display: flex;
    justify-content: space-between;
}

.img_pagination {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}

.img_pagination .left_img {
    margin-right: 25px;
}

.img_pagination .right_img {
    margin-left: 25px;
}

@media(max-width: 767px) {
    .img_pagination .right_img {
        margin-left: 0;
        margin-right: 15px;
    }
    .img_pagination:is(.img_pagination_right) {
        flex-direction: row-reverse;
    }
    .img_pagination:is(.img_pagination_left) {
        margin-bottom: 30px;
    }
}

/* ==================
 Project Page CSS
================== */

.tab_buttons button {
    background-color: var(--card-bg);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
    padding: 0 45px;
    height: 60px;
    line-height: 60px;
    margin-right: 30px;
    border-radius: 30px;
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
}

.tab_buttons button:is(.active) {
    background-color: var(--secondary-bg);
    color: #fff !important;
}

.tab_buttons button:hover {
    background-color: var(--secondary-bg);
    color: #fff !important;
    transition: 0.3s ease-in;
}

.cust_event_card{
    min-height: 350px;
}

/* ==================
 Project-Details Page CSS
================== */

.Characteristics-list li {
    position: relative;
    padding: 0 0 8px 40px;
    margin: 0 0 8px 0;
    font-size: 16px;
}

.Characteristics-list li i {
    color: var(--primary-text);
    font-size: 12px;
    background: var(--primary-bg-shade);
    margin-right: 12px;
    border-radius: 30px;
    padding: 6px;
    position: absolute;
    left: 0;
    top: 2px;
    line-height: 12px;
}

/*================================================
 Blog-Details Page CSS
=================================================*/

.blog-social-share a {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-color: var(--primary-bg-shade);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--primary-text);
}

.blog-social-share a:hover {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-color: var(--secondary-bg);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--white-text);
    transition: 0.4s ease-in;
}

.comment_avater {
    padding-right: 30px;
}

.comment_text:is(.has-children) {
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 27px;
}

.avater_text {
    overflow: hidden;
    padding-left: 2px;
    position: relative;
    margin-bottom: 10px;
}

.avater_text h5 {
    font-size: 18px;
    margin-bottom: 4px;
    display: inline-block;
    position: relative;
}

.replay_btn:is(.has_abs) {
    position: absolute;
    right: 0;
    top: 0;
}

.replay_btn {
    font-size: 14px;
    padding: 10px 22px;
    line-height: 1;
    display: inline-block;
    border: 2px solid var(--primary-border);
    border-radius: 30px;
    text-decoration: none;
    color: var(--primary-text);
}

.replay_btn:hover {
    font-size: 14px;
    padding: 10px 22px;
    line-height: 1;
    display: inline-block;
    border: 2px solid var(--primary-border);
    border-radius: 30px;
    text-decoration: none;
    color: var(--white-text);
    background-color: var(--primary-bg);
}

.single_post_comment {
    border: 1px solid var(--custom-border);
    padding: 40px;
    padding-top: 40px;
}

.heading-bar::before {
    content: "|";
    font-weight: 800;
    color: var(--primary-text);
    font-size: 40px;
    vertical-align: sub;
}

/* ==================
 Contact Page CSS
================== */
.contact_section:is(.bottom_radius0) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.contact_section {
    padding: 58px;
    padding-top: 52px;
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

.single_contact_location {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.single_contact_location .icon {
    flex: 0 0 80px;
    height: 80px;
    background-color: var(--card-bg);
    line-height: 80px;
    text-align: center;
    font-size: 24px;
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}

.contact_location_text span {
    font-size: 16px;
    display: block;
}

.contact_map iframe {
    width: 100%;
    height: 100%;
}

.contact_map {
    height: 700px;
}

.single_widget:is(.has_border) {
    border-style: solid;
    border-width: 2px;
    border-color: #796c6c;
}

.section_title {
    position: relative;
    z-index: 1;
}

.widget_title_text:is(.has_border) {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
}

.share_links a {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-color: var(--primary-bg);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--clr-common-white);
    margin-right: 10px;
    color: var(--white-text);
}

.share_links a:hover {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-color: var(--secondary-bg);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--clr-common-white);
    margin-right: 10px;
    color: var(--white-text);
    transition: 0.4s ease-in;
}

/*================================================
 Footer Top (client-slider, Owl Carousel) Section Area CSS
=================================================*/

.client-carousel img{
    width:  75px;
}

/*================================================
 Footer Section Area CSS
=================================================*/

.footer_widget {
    color: #a2aec1;
    overflow: hidden;
}

.footer_widget p {
    line-height: 1.7;
    font-size: 16px;
}

.footer_social_2 a:first-child {
    margin-left: 0;
}

.footer_social_2 a {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-color: var(--secondary-bg-shade);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: var(--white-text);
    margin-right: 10px;
    margin-bottom: 10px;
}

.footer_social_2 a:hover {
    background-color: var(--primary-bg) !important;
    transition: 0.3s ease-in-out;
}


.footer-link:hover {
    color: var(--primary-text) !important;
    transition: 0.3s ease-in;
}

.footer_widget {
    color: #a2aec1;
    overflow: hidden;
}

.footer_title:is(.footer_title_2) {
    border-bottom: 1px solid #414957;
    padding-bottom: 10px;
    display: inline-block;
}
.footer-joincard{
    min-height: 170px;
    background-color: rgba(0, 0, 0, 0.551);
    border-radius: 15px;
    /* max-width: 570px; */
}
.footer-content-main{
    padding: 15px 15px 15px 190px;
}
@media(max-width:410px){
    .footer-img{
        object-fit: contain;
        max-width: 125px;
    }
    .footer-content-main{
        padding: 15px 15px 15px 150px;
    }
}
.footer-content{
    max-width: 300px;
}
.footer-img
{
    height: 120%;
    max-height: 250px;
    bottom: 0;
}
/* ==================
  Back to top CSS
================== */

#backtotop {
    position: fixed;
    bottom:30px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#backtotop:hover {
    cursor: pointer;
}

#backtotop.show {
    opacity: 1;
    visibility: visible;
}
.switchbtn{
    position: fixed;
    top: 150px;
    right: -1px;
    z-index: 99;
    border-radius: 5px 0 0 5px !important;
    padding: 15px !important;
}
