:root {
    --bg-primary: #009D4E;
    --bg-secondary: #FFC000;
    --text-primary: #009D4E;
    --buttonprimary_outline: #009D4E;
    --text-secondary: #FFC000;
    --text-gray: #afafaf;
    --heading-fonts: 'Merriweather';
    --base-fonts: 'gilroylight';
    --subheading-font: 'gilroybold';
    --padding: 48px 0px;
    --padding-top: 48px;
    --padding-bottom: 48px;
    --default-txt: #000;
    /*--padding-top: 48px;
  --padding-bottom: 48px;*/
}

@font-face {
    font-family: 'gilroybold';
    src: url('../fonts/gilroy-bold-webfont.woff2') format('woff2'),
        url('../fonts/gilroy-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'gilroyextrabold';
    src: url('../fonts/gilroy-extrabold-webfont.woff2') format('woff2'),
        url('../fonts/gilroy-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'gilroymedium';
    src: url('../fonts/gilroy-medium-webfont.woff2') format('woff2'),
        url('../fonts/gilroy-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'gilroylight';
    src: url('../fonts/gilroy-light-webfont.woff2') format('woff2'),
        url('../fonts/gilroy-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'gilroyheavy';
    src: url('../fonts/gilroy-heavy-webfont.woff2') format('woff2'),
        url('../fonts/gilroy-heavy-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'NeuePlakText-Light';
    src: url('../fonts/NeuePlakText-Light.woff') format('woff'),
        url('../fonts/NeuePlakText-Light.woff2') format('woff2'),
        url('../fonts/NeuePlakText-Light.svg#NeuePlakText-Light') format('svg'),
        url('../fonts/NeuePlakText-Light.eot'),
        url('../fonts/NeuePlakText-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeuePlakText-Light.ttf') format('truetype');

    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


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

body {
    padding: 0;
    margin: 0;
    font-family: var(--base-fonts);
    color: #000;
}

a {
    text-decoration: none !important;
}

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

img {
    max-width: 100%;
}

.gilroy-heavy {
    font-family: 'gilroyheavy';
}

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

.button_primary_outline,
.button_primary_outline:hover {
    background-color: transparent;
    border-color: var(--buttonprimary_outline);
    color: var(--text-primary) !important;
}


.section_padding {
    padding: var(--padding);
}

.padding_top {
    padding-top: var(--padding-top);
}

.padding_bottom {
    padding-bottom: var(--padding-bottom);
}

.container {
    max-width: 1250px;
}

.container-sm {
    max-width: 1080px;
}

/*
@media (min-width:1400px){
  .container {
    max-width: 1400px;
}

}
*/



.logo img {
    width: 120px !important;
    width: 160px !important;

    object-fit: contain !important;
}

.top_navbar {
    padding: 10px 0px;
    position: relative;
    z-index: 1;
}

.top_navbar .row {
    align-items: center;
}

.top_navbar ul {
    list-style: none;
    padding-left: 0;
}

.nav-profile .dropdown-toggle img {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    margin-right: 5px;
    object-fit: cover;
}

.top_navbar ul li {
    display: inline-block;
    padding-right: 10px;
}

.top_navbar ul li:last-child {
    padding-right: 0px;
}


.top_navbar ul li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}


.top_navbar ul li a:hover {
    color: var(--text-primary);
}

.top_navbar .input-group input {
    border-right: none;
}

.top_navbar .input-group input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.top_navbar .input-group .input-group-append .btn {
    border: 1px solid #ced4da;
    border-left: none;
    padding: .295rem .75rem !important;
}

.top_navbar ul li a i {
    margin-right: 6px;
    font-size: 14px;
}


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

.nav_bar .dropdown-menu a {
    color: #000 !important;
    font-size: 16px;
}

.nav_bar .dropdown-menu a:hover {
    color: var(--text-primary) !important;
}

.nav_bar ul li a {
    color: #fff !important;
    font-size: 18px;
    line-height: 30px;
    font-family: 'gilroymedium';
}

ul.navbar-nav li a:hover , ul.navbar-nav li.nav-item a.nav-link:active{
    color: #000 !important;
}
ul.navbar-nav  li.nav-item a.nav-link.active {
    color: #000 !important;
}

.navbar-light .navbar-toggler-icon {
    background-image: url('../images/toggle.png');
}

.navbar .btn.bg_secondary {
    height: auto !important;
    padding: 0.61rem 1.75rem !important;
}

.nav_bar > .dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #ffc000;
}

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

.text_primary,
.text_primary_hover:hover {
    color: var(--text-primary);
}

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

.slider {
    width: 100%;
    height: 300px;
}
.slider .carousel-inner img {
    width: 100%;
    height: 100%;
}
.slider .carousel-caption .caption-inner h1 {
	max-width: 550px;
}

.slider a.how_works i.ri-arrow-right-line {
    width: 30px;
    height: 30px;
    border: 2px solid var(--text-secondary);
    border-radius: 50%;
    line-height: 26px;
    text-align: center;
}

.text_large {
    font-size: 55px;
}

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

.slider .carousel-caption {
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: left;
    width: 100%;
    max-width: 1220px;
    width: 100%;
}

/*
@media (min-width:1400px){
    .slider .carousel-caption {
       max-width: 1370px;
    }

}
*/


.slider .carousel-caption .caption-inner {
    /* display: table-cell; */
    vertical-align: middle;
    max-width: 700px;
    width: 100%;
}

.slider .carousel-control-next,
.slider .carousel-control-prev {
    top: auto;
    bottom: 60px;
    opacity: 1;
    z-index: 99;
}

.slider .carousel-control-next {
    justify-content: flex-end;
    right: 15px;
}

.slider .carousel-control-prev {
    justify-content: flex-start;
    left: 15px;
}

.slider .carousel-img {
    position: relative;
}

.slider .carousel-img .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #00000059;
    top: 0;
}


/*.btn.text_secondary i{
  padding-top: 10px;
  margin-right: 10px;
  float: left;
  line-height: 3px;
  font-weight: 100;
  font-size: 25px;
}
*/
.carousel-caption .icon-btn:hover {
    color: var(--text-secondary);
}

.navbar .btn {
    font-family: 'gilroyExtraBold';
}

.carousel-caption h2,
.gillroy-bold {
    font-family: var(--subheading-font);
}


.carousel-control-prev span,
.carousel-control-next span {
    display: flex;
    align-items: center;
}

.grid-icons .contents {
    display: flex;
    padding: 30px 20px;
    border: 1px solid #DDDDDD;
    background-color: #f9f9f9;
    width: 100%;
}

.grid-icons .contents p {
    margin-bottom: 0px;
}

.grid-icons .contents .icon img {
    width: 60px;
}


.grid-icons .contents p {
    font-family: 'gilroymedium';
    /*font-size: 12px;*/
}

.grid-icons .contents .content-details {
    width: calc(100% - 60px);
    width: -moz-calc(100% - 60px);
    padding:0px 0px 0px 16px;
}

/*.grid-icons {
    margin-top: -50px;
}*/

.grid-icons .col-md-4 {
    display: flex;
}




.services_section .contents {
    text-align: center;
    padding: 70px 30px;
    background-color: #f9f9f9;
	width: 100%;
}

.services_section .contents:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    cursor: pointer;
}

.services_section .contents .icon {
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

.services_section .contents:hover .icon {
    border-radius: 50%;
}

.services_section .contents .icon {
    height: 140px;
    width: 140px;
    line-height: 140px;
    border-radius: 35px;
    border: 1px solid;
    margin: auto auto 20px auto;
    text-align: center;
}

.services_section .contents .icon img {
    width: 80px;
    line-height: 140px !important;
    text-align: center;
    height: 100%;
    object-fit: contain;
}

.services_section .contents .icon img {
    width: 80px;
}

.services_section .contents .support-icon {
    border-color: #ff0000;
}

.services_section .contents .donate-icon {
    border-color: var(--text-secondary);
}

.services_section .contents .raiseFund-icon {
    border-color: var(--text-primary);
}

.color-red {
    color: #ff0000;
}

.services_section .contents p {
    /*font-size: 12px;*/
    margin-bottom: 0px;
}

.services_section .contents a {
    color: #000;
}

/* .section-header p{
  font-size: 12px;
} */


.section-heading {
    display: flex;
    position: relative;
    justify-content: center;
}

.section-heading::before {
    width: 100%;
    height: 2px;
    background: #ddd;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

.section-heading h2 {
    display: inline-block;
    background-color: #fff;
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 0px;
}

/* .features_section .contents .inner-contents p{
    font-size: 12px;
} */

/*progress_bar css start*/
.progress {
    width: 100px;
    height: 100px !important;
    /*float: left;*/
    line-height: 100px;
    background: none;
    margin: 20px;
    box-shadow: none;
    position: relative;
    margin: auto;
}

.progress:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 12px solid #DCDCDC;
    position: absolute;
    top: 0;
    left: 0
}

.progress > span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1
}

.progress .progress-left {
    left: 0
}

.progress .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 12px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left
}

.progress .progress-right {
    right: 0
}

.progress .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-1 1.8s linear forwards
}

.progress .progress-value {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    font-size: 18px;
    color: var(--text-secondary);
    font-family: 'gilroybold';
    line-height: 100px;
    text-align: center;
    position: absolute;
    /*top: 5%;*/
    /*left: 5%;*/
}

.progress.raiseFund .progress-bar {
    border-color: var(--bg-secondary);
}

.progress.raiseFund .progress-left .progress-bar {
    animation: loading-2 1.5s linear forwards 1.8s
}

.progress.fundraising_unity .progress-left .progress-bar {
    animation: loading-1 1.5s linear forwards 1.8s
}

.progress.fundraising_unity .progress-bar {
    border-color: var(--bg-primary);
}

.progress.fundraising_unity .progress-value {
    color: var(--text-primary);
}

.progress.charity .progress-bar {
    border-color: var(--bg-secondary);
}

.progress.charity .progress-value {
    color: var(--text-secondary);
}


@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }
}

@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(84deg);
        transform: rotate(84deg)
    }
}

@keyframes loading-3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg)
    }
}

/*progress_bar css end*/


.features_section a.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 16px;
    width: 180px
}

.features_section a.btn i {
    font-weight: 100;
    font-size: 23px;
}

.features_section .contents:hover {
    box-shadow: 0 .8rem 1rem rgba(0, 0, 0, .15) !important;
    cursor: pointer;
}

.features_section .contents img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.features_section .contents .feature-img {
    position: relative;
    overflow: hidden;
}

.features_section .contents .feature-img img,
.news-section .inner-contents img {
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.features_section .contents:hover .feature-img img,
.news-section .inner-contents:hover img {
    -moz-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.hover-contents {
    opacity: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.features_section .contents:hover .hover-contents {
    opacity: 1;
}

.features_section .contents:hover .title {
    color: var(--text-primary);
}


.tab-group {
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
}

.tab-group:after {
    content: "";
    display: table;
    clear: both;
}

.tab-group li a {
    display: block;
    text-decoration: none;
    padding: 15px;
    background: #fff;
    color: #000;
    font-size: 15px;
    float: left;
    width: 50%;
    text-align: center;
    cursor: pointer;
    transition: .5s ease;
    font-weight: bold;
    font-family: 'gilroymedium';
}

.tab-group .active a {
    background: #fff;
    color: #000;
    font-size: 15px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    font-weight: 600;

}

.tab-content > div:last-child {
    display: none;
}


.signupForm-section .form-control {
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding-left: 0;
    font-size: 14px;
    height: calc(1em + .75rem + 2px);
    line-height: 1;
}


.signupForm-section .form-control:focus {
    outline: none !important;
    box-shadow: none !important;
}

.form-group label {
    font-weight: 600;
    color: #939393;
    font-size: 16px;
    margin-bottom: 0px;
    font-family: 'gilroybold';
}

.color-gray {
    color: #939393;
}

.form-btn,
.form-btn:hover {
    background-color: #ff0000;
    color: #fff;
}

.raised-fund-details .inner-contents {
    border: 3px solid #999;
    border-radius: 8px;
}

.news-section .img-section {
    overflow: hidden;
}

.news-section img {
    width: 100%;
    height: 200px;
    object-fit: cover;

}

.news-section .contents {
    padding: 30px !important;
}

/* .news-section .contents p{
  font-size: 12px;
} */
section.section_padding.news-section i {
    font-size: 30px;
    font-weight: lighter;
}

.online-fundRaising .contents img {
    width: 60px;
    object-fit: contain;
    height: 60px;
}

.online-fundRaising .contents .heading {
    width: calc(100% - 60px);
    width: -moz-calc(100% - 60px);
    padding-left: 16px;
}

.online-fundRaising .contents p {
    font-family: 'gilroymedium';
}

.start_fundraising {
    background-image: url('../images/fundraising.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.start_fundraising a.btn .icon i {
    border-color: var(--text-primary);
    font-size: 20px;
    vertical-align: middle;
    border: 1px solid;
    border-radius: 100%;
    margin-left: 10px;
}

.start_fundraising a.btn,
.start_fundraising a.btn:hover {
    border-radius: 20px;
    min-width: 260px;
    border-width: 2px;
}

.start_fundraising a.btn p {
    font-family: 'gilroymedium';
    line-height: 20px;
    margin-top: 5px;
}

.start_fundraising .btn_padding span.icon {
    line-height: initial;
}

.start_fundraising .btn_padding {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.w-200 {
    width: 200px;
}

/*
.w-250 {
    width: 250px;
}

*/

.footer .contact-details {
    color: #fff;
}

/* .footer .contact-details p{
  font-size: 13px;
} */


.footer .contact-details ul {
    list-style: none;
    padding-left: 0px;
    display: flex;
}

.footer .contact-details ul li {
    font-size: 14px;
    display: block;
    padding: 5px 0px;
}

.footer .contact-details ul li a {
    color: #fff;
    display: flex;
    text-decoration: none;
}

.footer .contact-details li:not(:last-child){
    margin-right: 20px;
}

.footer .contact-details li a i {
    margin-right:5px;
}

.footer .social-icons {
    list-style: none;
    padding-left: 0px;
}

.footer .social-icons li {
    display: inline-block;
    padding-right: 10px;
}

.footer .social-icons li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #fff;
    border-radius: 100%;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
}

.footer .menu-items {
    list-style: none;
    /* list-style-position: outside; */
    padding-left: 0px;
}

.footer .menu-items li {
    display: block;
    padding: 4px 0px 4px 20px;
    position: relative;
}

.footer .menu-items li a {
    text-decoration: none;
    color: #fff;
    /*font-size: 14px;*/
}

.footer .menu-items li:before {
    content: "-";
    color: #fff;
    position: absolute;
    left: 0px;
}

.footer .title {
    position: relative;
    margin: 10px 0px;
}


.footer .title::after {
    width: 15%;
    height: 2px;
    background: #fff;
    content: "";
    position: absolute;
    left: 0;
    margin: 0 auto;
    top: 100%;
    margin-top: 5px;
}

.footer .divider {
    border-top: 2px solid rgb(255 255 255 / 40%);
}

.footer-link{
    color: #fff;
}

.navbar-light .navbar-toggler {
    margin-left: auto;
    color: rgb(255 255 255);
    border:none;
    padding: 0;
}

.carousel-img {
    height: 300px;
}

.carousel-img img {
    object-fit: cover;
	object-position: top;
}

.btn_padding {
    padding: 0.7rem 2.75rem !important;
}

.btn {
    padding: 0.5rem 1.75rem;
    font-family: 'gilroybold';
    min-width: 130px;
}

.raised-fund-details .px-custom {
    padding-left: 25px;
    padding-right: 25px;
}

.raised-fund-details p {
    color: #939393;
    font-family: 'gilroybold';
    font-size: 20px;
}

.raised-fund-details h2 {
    font-family: 'gilroylight';
    font-weight: 800;
}

.custom-font-weight-bold {
    font-weight: 900;
}

.section-header p {
    margin: 2.5rem auto;
}

.button_primary_outline:hover {
    background-color: var(--bg-primary);
    color: #fff !important;
}

.button_primary_outline:hover .text_primary,
.button_primary_outline:hover p {
    color: #fff !important;
}

.features_section .contents .inner-contents {
    padding: 40px;
}

.stories-section .img-section {
    position: relative;
    padding-top: 15px;
}

.stories-section .img-section .label {
    position: absolute;
    top: 0px;
    left: 40px;
    width: 180px;
    height: 50px;
    text-align: center;
    padding: 0 !important
}

.stories-section .img-section img {
    height: 600px;
    object-fit: cover;
    width: 100%;
}

.stories-section .img-section .label h6 {
    line-height: 50px;
}

.stories-section .quote-contents {
    right: -48px;
    z-index: 1;
    flex-wrap: wrap;
    display: flex;
}

.stories-section .quote-contents-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 125px;
}

.stories-section .quote-contents .inner-div {
    height: 350px;
    padding: 60px;
}

.stories-section .quote-contents .inner-div h3 {
    line-height: 40px;
}

.stories-section .carousel-indicators {
    top: 125px;
    margin-left: 30px;
    justify-content: start;
    position: relative;
}

.stories-section .carousel-indicators li {
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    border-radius: 100%;

}

.stories-section .carousel-indicators .active {
    background-color: var(--bg-primary);
    border-color: var(--text-primary);
}

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

.btn.bg_primary,
.btn.button_primary_outline {
    transition: 0.5s;
    min-height: 40px;
    line-height: 40px;
    align-items: center;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.btn.bg_primary:hover {
    background-color: var(--bg-secondary);
    color: #000 !important;
}

.btn.bg_primary {
    font-family: 'gilroybold';
}



.form-link {
    text-decoration: underline !important;
    color: var(--text-primary) !important;
}

.card-header h4 {

    font-family: var(--subheading-font);
}

input[type=text],
input[type=email],
input[type=password],
input[type=submit], #payment_type {
    height: 50px;
}

input[type=submit] {
    font-family: 'gilroymedium';
    height: 50px;
    line-height: 50px;
    padding: 0;
}

.bottom-link {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    color: #000 !important;
}

/*banner image*/
.banner {
    /* background-image: url('../images/charities_banner.jpg');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* section.banner.contactus_banner .contents {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
} */

.banner h1 {
    color: var(--text-secondary);
    font-size: 60px;
}

.banner .banner-contents .banner_links,
.banner .banner-contents {
    color: #fff !important;
    text-decoration: none !important;
    font-family: 'gilroymedium';
}

.raise-money .contents p {
    color: var(--text-primary);
    font-family: 'gilroybold';
}

section.raise-money button {
    font-size: 18px;
    font-family: 'gilroybold';
}

.raise-money button {
    font-family: 'gilroymedium';
}

.raise-money .details {
    background-color: #f5f5f5;
}

.raise-money .details .inner-contents .title {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.raise-money .details .inner-contents .title h2,
.raise-money .details .inner-contents .title span {
    font-family: var(--subheading-font) !important;
}

.charities-icons-sections .icon {
    height: 80px;
    width: 80px;
    margin-bottom: 20px;
}

.charities-icons-sections .icon img {
    height: 100%;
    width: 100%;
}

button.white-text-hover:hover {
    color: #fff !important;
}

.charities-icons-sections .inner-contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.leftside-bg {
    background-image: linear-gradient(rgb(0 157 78 / 75%), rgb(0 157 78 / 75%)), url('../images/leftside-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    height: 590px;

}

.rightside-bg {
    background-image: linear-gradient(rgb(255 192 0 / 75%), rgb(255 192 0 / 75%)), url('../images/rightside-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    height: 590px;
}

.outer-div {
    padding: 90px;
    height: 100%;
}

.other-details .inner-details {
    border: 15px solid #fff;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.other-details .inner-details h2 {
    font-family: 'gilroyextrabold';
    text-align: center;
    font-size: 65px;
}

.explore_charities .more_div_hide{
    display: flex;
    flex-wrap: wrap;
}

.explore_charities .user-img img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.explore_charities .content-details{
    display: flex;
    padding: 50px;
    align-items: center;
    width: 100%;
}

.explore_charities .content-details .other_details {
    width: calc(100% - 120px);
    width: -moz-calc(100% - 120px);
    padding-left: 16px;
}

.explore_charities .content-details .other_details h2 {
    font-size: 60px;
    font-family: 'gilroybold';
    color: var(--text-primary);
}

.explore_charities .content-details .other_details h6 {
    font-family: 'gilroybold';
    text-transform: uppercase;
}

.more-info .contents {
    color: #fff;
}

.more-info .contents .content-link {
    color: #000;
    text-decoration: none !important;
}

.more-info .contents h6 {
    font-family: 'gilroyextrabold';
}

.btn.bg_secondary {
    height: 60px;
    /* padding: 25px 70px!important; */
    display: flex;
    align-items: center;
}

.raise-money .details .inner-contents .title h2 {
    font-size: 55px;
}

.charities-icons-sections p {
    font-family: 'gilroymedium';
}

.navbar .navbar-nav {
    align-items: center;
}

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.slick-slider {
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

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

.address-details {
    font-family: 'gilroymedium';
    list-style: none;
}

.address-details li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.address-details li p {
    margin-bottom: 0px;
}

.address-details li a {
    color: #000;
    text-decoration: none;
}

.address-details li .icons-div {
    width: 130px;
    display: flex;
    align-items: center;
}

.address-details li .details {
    width: calc(100% - 130px);
}

.address-details li .icons-div i {
    color: var(--text-secondary);
    font-size: 25px;
}

.icon-bg {
    width: 25px;
    height: 25px;
    background-color: var(--bg-secondary);
    border-radius: 100%;
    line-height: 25px;
    display: inline-block;
    text-align: center;
}

.address-details li .icons-div .icon-bg i {
    font-size: 15px;
}

.icons-div span.text_primary {
    margin-left: 10px;
}

.aboutus-details .row.padding_top:first-child {
    padding-top: 0px;
}

.aboutus-details .row:nth-child(odd) > div:nth-child(1) {
    order: 2;
    margin-bottom: 20px;
}
.img-section{
    margin-bottom: 20px;
}


.news-section .img-section{
    margin-bottom: 0px;
}

.aboutus-details .row:nth-child(odd) > div:nth-child(2) {
    order: 1;
}

.aboutus-details .row:nth-child(even) > div:nth-child(2) .inner-details {
    padding-right: 3rem !important;
    padding-left: 0px !important;
}

.aboutus-details .inner-details p {
    text-align: justify;
}

.about_story_section {
    background: linear-gradient(rgb(0 157 78 / 50%), rgb(0 157 78 / 50%)), url(../images/about_story.png);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0;
}

.about_story_section .inner-details {
    width: 100%;
    border: 4px solid;
    border-color: var(--text-secondary);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    padding: 100px;
    color: #fff;
}

.about_story_section .inner-details h2 {

    margin-bottom: 30px;
}

.heading-our-team h2 {
    color: var(--text-primary);
    font-weight: 700;
}

.our-team .team-profile-blk {
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    cursor: pointer;
}

.our-team .team-profile-blk:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.our-team .team-profile-blk .team-profile img {
    width: 100%;
    object-fit: cover;
    height: 280px;
}

.our-team .team-profile-blk .person-detail {
    padding: 20px 0px;
    text-align: center;
}


/* fundraiser for css start */

.btn-center {
    display: flex;
    justify-content: center;
}

.section-second .donation-bg {
    background: url(../images/donate-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.content-details {
    padding: 20px 35px;
}

.content-details a {
    background: #fff;
    color: #000;
    padding: 8px 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0px;
}

.green-circle {
    width: 265px;
    height: 265px;
    border-radius: 50%;
    border: 10px solid #04ed7d;
    margin: 0px auto;
}

.green-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

svg {
    width: 200px;
    height: 200px;
    transform: rotate(-90deg);
    overflow: initial;
}

circle {
    stroke-width: 12px;
    fill: none;
}

circle:nth-child(1) {
    stroke: #56451c;
}

circle:nth-child(2) {
    stroke: #ffc000;
    position: relative;
    z-index: 1;
}

.circle_box:nth-child(1) circle:nth-child(2) {
    stroke-dashoffset: calc(100 * 6);
    stroke-dasharray: calc(100 * 6);
    stroke-dashoffset: calc((100 * 6) - ((100 * 6) * 50) / 100);
    stroke-position: inside;
}

.circle_box {
    color: #fff;
    text-align: center;
}

.circle_box .svg-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    line-height: 5px;
}

.svg-content h2 {
    font-size: 80px;
    font-family: 'gilroymedium';
}

.svg-content p {
    font-size: 20px;
    font-family: 'gilroybold';
}

/* ----section 3rd----- */
.box-shadow {
    box-shadow: #28a7452e 6px 2px 16px 0px, rgb(255 255 255 / 80%) -6px -2px 16px 0px;

}

.text-heading-valentine span {
    font-size: 35px;
    font-weight: 600;
}

img.boys {
    width: 100%;
}

.sub-details p {
    font-size: 16px;
}

.content-headings p:first-child {
    font-size: 40px;
    font-weight: 600;
    color: #009d4e;
}

.content-headings p span {
    font-size: 16px;
    color: #272626;
    padding-left: 5px;
}

#myProgress {
    width: 100%;
    background-color: #ddd;
    border-radius: 20px;
    margin-top: 10px;
}

#myBar {
    width: 50%;
    height: 16px;
    background-color: #04AA6D;
    text-align: center;
    line-height: 30px;
    color: white;
    border-radius: 20px;
}

.section-sticky {
    position: sticky;
    top: 1rem;
}

.content-headings div + p {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    padding-top: 15px;
}

a.btn.donate-btn {
    background-color: #e6ab3a;
    background-image: linear-gradient(0deg, #e6ab3a 0%, #fdc32c 46%, #e6ab3a 100%);
    width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    color: #000;
    font-size: 18px;
    font-family: 'gilroymedium';
}

span.text-center {
    margin-left: 120px;
    font-weight: 700;
}

.just-donated span {
    color: #352cd2;
    font-size: 20px;
    padding-left: 10px;
    font-family: 'gilroymedium';
}

.recent-detail p:nth-child(1) {
    font-weight: 600;
    font-size: 13px;
}

.recent-detail p:nth-child(2) {
    font-weight: 900;
    font-size: 15px;
}

.recent-detail p:nth-child(2) span a {
    font-size: 14px;
    color: darkgray;
    padding-left: 15px;
}

span.text-underline {
    text-decoration: underline;
}

span.text-underline:before {
    position: absolute;
    content: ".";
    color: darkgray;
    font-size: 35px;
    top: -6px;
    left: 45px;
}

.recent.border-tb {
    border-top: 1px solid #d4d2d2;
    border-bottom: 1px solid #d4d2d2;
}

.text-underline{
    text-decoration: underline !important;
}
.see_more_btn a {
    border: 1px solid #059d4f;
    padding: 10px 20px;
    color: #059d4f;
    font-size: 18px;
    font-weight: 600;
    border-radius: 0px
}

.sub-details.intoboa_guarantee {
    background: #e5fff2;
    padding: 20px;
}

.sub-details.intoboa_guarantee span {
    font-weight: 600;
    font-size: 18px;
}

.sub-details.intoboa_guarantee p {
    font-size: 18px;
}

h3.panel-title {
    font-weight: 600;
    font-size: 22px;
}

.media-body p span {
    font-weight: 600;
}

form{
    margin-bottom: 0px;
}

.comment-form {
    display: none;
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

.comment-form.show {
    display: block;
}

.comment-form textarea {
    width: 100%;
    height: 150px;
    resize: none;
}

.comment-form input[type="submit"] {
    min-width: 150px;
}

li.media {
    border-top: 1px solid darkgray;
    padding: 15px;
}

.media-body p {
    font-size: 18px;
}

.media-body.pl-2 > p {
    margin: 0px;
}

.please_donate p {
    font-size: 18px;
}

.col-md-12.sub-border {
    border-top: 1px solid darkgray;
    padding-top: 20px;
}

.see-more button.btn.btn-default {
    border: 1px solid;
    border-radius: 0px;
    color: var(--text-primary);
    font-weight: 900;
    font-size: 18px;
    min-width: 100px;
}

.continue button.btn.btn-default {
    background: var(--bg-primary);
    color: #fff;
    border-radius: 0px;
    font-weight: 900;
    font-size: 18px;
}

.continue a button.btn.btn-default:hover {
    background: var(--bg-secondary);
    color: #000;
}

/* ------section 6th css---------	  */
.button_secondary_outline {
    background: #000;
}


/* fundraiser for css end  */

/* ------blog page css start------- */
.logo.logo-size {
    width: 220px;
}

.logo.logo-size img {
    width: 100%;
    object-fit: cover;
}

.Fundraising-blog-text span {
    font-size: 50px;
    font-weight: 900;
    font-family: 'Merriweather';
}

.northen-banner {
    background-image: url(../images/northen-banner.jpg);
    background-size: cover;
    height: 500px;
    background-repeat: no-repeat;
    position: relative;
}

.northen-banner::before {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+52,009d4e+100&0+0,0.65+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 52%, rgba(0, 157, 78, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 52%, rgba(0, 157, 78, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 52%, rgba(0, 157, 78, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6009d4e', GradientType=0);
    /* IE6-9 */

}

.blog-listing {
    margin-bottom: -30px;
}

.blog-listing .col-md-4 {
    margin-bottom: 30px;
}

.detail-text p {
    font-size: 18px;
}

.date p {
    color: #000;
    font-size: 14px !important;
}

.pagination a.page-link {
    border: 1px solid var(--buttonprimary_outline);
    margin: 0px 2px;
    padding: 5px 10px;
    color: #000;
}

li.page-item.bottom-dots {
    display: flex;
    align-items: end;
    margin-bottom: 0px;
    color: var(--text-primary);
    padding-bottom: 0px;
    font-size: 32px;
    line-height: 24px;
}

.pagination a.page-link:hover {
    background: var(--bg-secondary);
    color: #fff;
    border: 1px solid transparent;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;

}

.page-item:last-child .page-link {
    background: var(--bg-primary);
    color: #fff;
}

ul.pagination.arrows li {
    margin: 0px 5px;
}

i.arrows-box {
    border: 1px solid var(--bg-primary);
    color: var(--text-primary);
    font-size: 26px;
}

i.arrows-box:hover {
    background: var(--bg-primary);
    color: #fff;
}

.pagination-1 ul.pagination {
    margin-bottom: 0px;
}

.pagination-1 ul li.page-item {
    margin-right: 5px;
}

.pagination-1 ul li > span.page-link,
.pagination-1 ul li > a.page-link {
    padding: .3rem .75rem;
}


.pagination-1 ul li.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--bg-primary);
    border-color: var(--bg-primary)
}

.pagination-1 ul.pagination li:first-child,
.pagination-1 ul.pagination li:last-child {
    font-weight: 900;
}


/* ------blog page css end------- */

/* ------blog detail page css start-------- */

.blog_detail .how_restaurant_work h3,
.Seven_resources_text h3 {
    font-size: 30px;
    font-family: 'Merriweather';
}

.how_restaurant_work:before {
    position: absolute;
    content: "";
    width: 100px;
    height: 5px;
    background: #efbf2d;
    top: -15px;
    border-radius: 10px;
}

.contents.side-nav-box a:hover {
    color: var(--bg-secondary) !important;
}

.blog_detail .social-icons ul li {
    list-style: none;
    margin: 5px 10px;
}

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

.blog_detail .restaurant_text p,
.Seven_resources_text p {
    font-size: 18px;
    font-family: 'gilroylight';
}

.blog_detail .calender span {
    font-size: 22px;
    padding-left: 10px;
    color: var(--text-gray);
    font-family: 'gilroymedium';
    vertical-align: middle;
}

.blog_detail .what_you_need h4,
.what_you_need p {
    font-size: 18px;
}

.blog_detail .what_you_need ul {
    margin-left: 25px;
}

.blog_detail .what_you_need ul li::marker {
    color: darkgray;
    font-size: 20px;
}

.blog_detail button.btn.get_btn.rounded-0.text-white.mt-4 {
    background: var(--bg-primary);
    font-size: 22px;
    font-family: 'Merriweather';
    padding: 15px 35px;
}

button.get_btn:hover {
    background: var(--bg-secondary) !important;
    color: #000 !important;
}

.blog_detail ul.share_article li:first-child {
    color: var(--text-gray);
    font-size: 22px;
}

.restaurant_content .social-icons i {
    color: var(--text-gray);
    font-size: 30px;
}

.restaurant_content .social-icons i:hover {
    color: #000;
}

.blog_detail .border-tb {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.blog_detail .profile_detail h3 {
    font-size: 18px;
    font-family: 'gilroybold';
}

.blog_detail .profile_detail h3:last-child {
    font-size: 18px;
    font-family: gilroymedium;
}

.blog_detail .text_related_article.text-center {
    font-size: 30px;
    font-family: 'Merriweather';
    color: var(--text-primary);
}

.blog_detail .intoboa_colors span {
    font-size: 60px;
    font-family: 'Merriweather';
    font-weight: 900;
}

.blog_detail .subscribe {
    background: url(../images/green-boy.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 75px 40px;
}

.blog_detail .subscribe h3 {
    color: var(--text-secondary);
    font-size: 40px;
}

.blog_detail .subscribe p {
    font-size: 18px;
}

.blog_detail input.form-control-email {
    border-radius: 0px;
    text-align: center;
    font-size: 18px;
    font-family: 'gilroymedium';
}

.blog_detail button.btn.subscribe_btn {
    background: var(--bg-secondary);
    border-radius: 0px;
    font-family: 'gilroybold';
    font-size: 22px;
}

.blog_detail input.form-control-email::placeholder {
    color: var(--text-gray);

}

/* ------blog detail page css end-------- */

/* ------application forms page css start-------- */


.application_form {
    background-color: #f8f8f8;
}

.application_form .step-text.text-center h3 {
    font-size: 27px;
    font-family: 'gilroybold';
    color: var(--text-gray);
}

.application_form .horizontal-bar {
    width: 100%;
    height: 10px;
    display: flex;
    justify-content: center;
}

.application_form .horizontal-bar div {
    flex-basis: 100px;
    margin: 0px 10px;
    background: var(--text-gray);
}

.application_form .horizontal-bar div:nth-child(1) {
    background: var(--bg-primary);
}

.application_form .form-box {
    padding: 25px 50px;
    box-shadow: rgb(0 0 0 / 15%) 0px 5px 15px 0px;
}

.application_form .form-box form h3 {
    font-size: 30px;
    font-family: 'gilroybold';
    margin: 30px 0px 15px 0px;
}

.application_form .form-box form label {
    padding-bottom: 10px;
    font-size: 20px;
    font-family: 'gilroylight';
    color: #080808b8;
}

.application_form .form-box .form-group {
    margin-bottom: 2rem;
}

.application_form .form-box .form_next_btn {
    font-size: 22px;
}

.application_form .form-box a.term_policy {
    text-decoration: underline;
    color: var(--text-gray);
}

.customradio span {
    display: inline-flex;
    width: 50%;
    align-items: center;
}

.customradio input {
    display: none;
}

.customradio label {
    width: 17px;
    height: 16px;
    display: inline-block;
    position: relative;
    border: 2px solid var(--text-primary);
    border-radius: 20px;
    margin: 0px 10px 0px 10px;
}

.customradio input:checked + label::before {
    position: absolute;
    content: "";
    top: 2px;
    left: 2px;
    width: 9px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 20px;
}

select#exampleFormControlSelect1 {
    height: 49px;
}





/* ------application forms page css end-------- */


/* ------application forms 2nd page css start-------- */

.to_receive_text p {
    font-size: 14px;
    padding: 30px;
    background: aliceblue;
    margin: 0px 30px;
}

.form-2 .horizontal-bar div:nth-child(2) {
    background: var(--bg-primary);
}

.back_page_btn {
    position: absolute;
    content: "";
    top: 0;
    left: -100px;
    box-shadow: rgb(0 0 0 / 15%) 0px 5px 15px 0px;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.back_page_btn span {
    font-size: 25px;
    font-family: 'gilroybold';
    padding-left: 5px;
    color: #000;
}

.raise input.form-control {
    border-left: 0px;
    border-right: 0px;
}

span.input-group-text {
    background: transparent;
}

.calender-form-box.input-group-addon img {
    width: 50px;
    height: 50px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-left: 5px;
    cursor: pointer;
}



/* ------application forms 2nd page css end-------- */
.form-3 .horizontal-bar div:nth-child(2),
.form-3 .horizontal-bar div:nth-child(3),
.form-4 .horizontal-bar div:nth-child(2),
.form-4 .horizontal-bar div:nth-child(3),
.form-4 .horizontal-bar div:nth-child(4),
.form-5 .horizontal-bar div:nth-child(2),
.form-5 .horizontal-bar div:nth-child(3),
.form-5 .horizontal-bar div:nth-child(4),
.form-5 .horizontal-bar div:nth-child(5) {
    background: var(--bg-primary);
}

/* ------application forms 3nd page css start-------- */
.box {
    position: relative;
    background: #ffffff;
    width: 100%;
}

.box-header {
    color: #444;
    display: block;
    padding: 10px;
    position: relative;
    border-bottom: 1px solid #f4f4f4;
    margin-bottom: 10px;
}

.box-tools {
    position: absolute;
    right: 10px;
    top: 5px;
}

.dropzone-wrapper {
    border: 2px dashed var(--text-gray);
    position: relative;
    height: 250px;
}

.dropzone-desc {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    width: 60%;
    top: 32%;
    font-size: 16px;
}

.dropzone,
.dropzone:focus {
    position: absolute;
    outline: none !important;
    width: 100%;
    cursor: pointer;
    opacity: 0;
    height: 100%;
    /* height: auto; */
}

.preview-zone {
    text-align: center;
    margin-top: 20px;
}

.preview-zone .box {
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 0;
}

.text-or-box p:before {
    position: absolute;
    content: "";
    width: 250px;
    height: 2px;
    background: var(--text-gray);
    top: 18px;
    left: 0px;
}

.text-or-box p:after {
    position: absolute;
    content: "";
    width: 250px;
    height: 2px;
    background: var(--text-gray);
    top: 18px;
    right: 0px;
}

.text-or-box p {
    font-size: 22px;
    font-family: 'gilroybold';
}

.text-or-box p span {
    width: 100px;
    background: #f8f8f8;
    display: inline-block;
    position: relative;
    z-index: 1;
}



.form-group.upload-video {
    border-top: 1px solid var(--text-gray);
    border-bottom: 1px solid var(--text-gray);
}

.form-group.upload-video a p {
    color: #000;
}

img.profile {
    width: 100%;
}

figcaption span {
    padding-left: 10px;
    color: #000;
}

.upload-video.text-center {
    border: 1px solid var(--text-gray);
    padding: 10px;
    border-radius: 3px;
}

.application_form .form-box form .upload-video label {
    font-size: 18px;
    padding: 0px;
    margin-bottom: 0px;
}



/* ------application forms 3nd page css end-------- */
/* ------application forms 4th page css start-------- */
.to_receive_text img {
    margin-right: 10px;
}


/* ------application forms 4th page css end-------- */

/* ------application forms 5th page css start-------- */

.tab-content > div:last-child {
    display: block;
}

.form-group.beneficial-gap {
    padding-bottom: 300px;
}

.custom-control.custom-checkbox {
    font-size: 20px;
    margin-bottom: 20px;
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox label {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    border: 2px solid var(--text-primary);
    margin: 0px 20px 0px 10px;
}

.custom-checkbox input:checked + label::before {
    position: absolute;
    content: "";
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    background: url(../images/tick.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.custom-control.custom-checkbox {
    font-size: 20px;
    padding-bottom: 20px;
    padding-left: 0px;
    margin-bottom: 0px;
}

div.bank_account:before {
    position: absolute;
    content: "";
    width: 170px;
    height: 5px;
    background: #079d51;
    top: -6px;
    left: 9%;
    border-radius: 5px 5px 0px 0px;
}

div.mobile-money:before {
    position: absolute;
    content: "";
    width: 170px;
    height: 5px;
    background: #079d51;
    top: -6px;
    right: 10%;
    border-radius: 5px 5px 0px 0px;
}

div .bank_account {
    border: 1px solid var(--text-primary);
    padding: 30px 0px;
}

div .mobile-money {
    border: 1px solid var(--text-primary);
    padding: 30px 0px;
}

/* ------application forms 5th page css end-------- */

/* ----campaign page css start---- */
.banner-campaign {
    background: url(../images/banner-campaign.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 587px;
}

.charity-box {
    padding: 50px 40px;
    background: var(--bg-primary);
    color: #fff;
}

.charity-box h2 {
    font-size: 60px;
    font-family: 'gilroybold';
}

.charity-box p {
    font-size: 14px;

}

.select-an-amount h3 {
    font-size: 25px;
    font-family: 'gilroybold';
}

button.btn.select-btn {
    width: 150px;
    height: 150px;
    background: var(--bg-secondary);
    border-radius: 50%;
    font-size: 25px;
    font-family: 'gilroybold';
    color: #fff;
}

.selection-box input {
    display: none;
}

.selection-box label {
    width: 150px;
    height: 150px;
    background: var(--bg-secondary);
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    font-family: 'gilroybold';
    position: relative;
    cursor: pointer;
}

.selection-box input:checked + label {
    color: #fff;
}

.transaction h3 {
    font-size: 16px;
    font-family: 'gilroybold';
}

.transaction {
    border-bottom: 5px solid var(--bg-secondary);
}

.banner-donate {
    background: url(../images/fund-banner.png);
    background-repeat: no-repeat;
    background-size: cover;


}

.donate_fund_box {
    border: 2px solid var(--bg-primary);
}

.donate_fund_box h2 {
    font-size: 32px;
    font-family: 'gilroybold';
    color: var(--text-primary);
}

.donate_boxes {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 22px;
    font-family: 'gilroybold';
    border: 2px solid var(--bg-primary);
}

.donate_boxes.donate_boxes_2 {
    color: var(--text-primary);
    height: 50px;
    -moz-width: calc(100% - 250px);
    -webkit-width: calc(100% - 250px);
    width: calc(100% - 250px);
}

#shortselect_amount {
    border: none !important;
    height: 46px;
}

.label-box {
    border: 2px solid var(--bg-primary);
    color: var(--text-primary);
    font-size: 18px;
    padding: 10px 0px;
    font-family: 'gilroymedium';
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.label-box.btn {
    border-radius: 0px;
}

.select_payment h4 {
    font-size: 18px;
    font-family: 'gilroymedium';
}

label.personal_info_text {
    font-size: 18px;
    font-family: 'gilroymedium';
}

.total_donation .total {
    background: var(--bg-primary);
    color: #fff;
    font-size: 18px;
    font-family: 'gilroymedium';
    padding: 10px;
}

.total_donation .total-amount {
    color: var(--text-primary);
    font-size: 18px;
    font-family: 'gilroymedium';
    padding: 10px 40px;
    border: 2px solid var(--bg-primary);
}

#donation button#donate_now:hover i {
    border: 2px solid #000;
}

#donation i.ri-arrow-right-line {
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 0px 10px;
    width: 25px;
    height: 25px;
    line-height: 20px;
}

.btn.bg_primary:hover i.ri-arrow-right-line {
    border: 2px solid #000;
}

/* custom radios */

.transaction input {
    display: none;
}

.transaction label {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
}

.transaction input:checked + label::before {
    position: absolute;
    content: "";
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    background: var(--text-secondary);
    border-radius: 20px;
}

.label-box input {
    display: none;
}

.label-box label {
    width: 17px;
    height: 16px;
    display: inline-block;
    position: relative;
    border: 2px solid var(--text-primary);
    border-radius: 20px;
    margin: 0px 20px 0px 10px;
}

.label-box input:checked + label::before {
    position: absolute;
    content: "";
    top: 2px;
    left: 2px;
    width: 9px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 20px;
}

/* ----campaign css end---- */

/* ----fundraiser  css start---- */

.contents.side-nav-box > div a.active {
    background: var(--bg-primary) !important;
    color: #fff !important;
}

.side-nav-box .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: var(--bg-secondary);
    background-color: transparent;
    font-size: 18px;
    font-family: 'Merriweather';
}

.heading_category h2 {
    font-size: 35px;
    color: var(--text-primary);
    font-weight: 700;
}

.contents.side-nav-box {
    border-top: 1px solid var(--text-gray);
    border-bottom: 1px solid var(--text-gray);
}

.side-nav-box a {
    color: #000;
    font-size: 18px;
    font-family: 'Merriweather';
    font-weight: 700;
    /* padding-left: 0; */
}

.start_fund a.btn {
    font-size: 18px;
    font-family: 'Merriweather';
    background: var(--bg-primary);
}

.start_fund a.btn:hover {
    background: var(--bg-secondary);
    color: #000 !important;
}

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

.img-section {
    position: relative;
}
/*
.img-section::before {
    content: "";
    width: 95%;
    height: 90%;
    background-color: transparent;
    border: 2px solid #fff;
    position: absolute;
    top: 5%;
    left: 0;
    right: 0;
    margin: 0 auto;

}
*/

.fundraiser-box .img-section img, .fundraiser-box video {
    height: 257px;
    width: 100%;
    object-fit: cover;
}


.fundraiser-box h4 {
    font-size: 18px;
    color: #000;
}

.fundraiser-box:hover .text-default {
    color: var(--bg-secondary) !important;
}

.fundraiser-box p {
    font-family: gilroybold;
    font-size: 14px
}

.fundraiser-box span {
    color: var(--text-gray);
    padding-left: 5px;
}

.fundraiser-box #myProgress {
    background: #04aa6d42;
}

.fundraiser-box h6 {
    font-size: 14px;
}

/* ---slider-- */
section.section-fifth.slide-section {
    background: aliceblue;
}

.slide-section .carousel-control-next-icon, .slide-section .carousel-control-prev-icon{
    background-image: none!important;
}

.item {
    width: 75%;
    margin: 0 auto;
}

.slide-content {
    padding: 0px 20px;
}

.slide-content h3 {
    font-size: 25px;
    font-family: 'gilroyextrabold';
    color: var(--text-gray);
    display: inline-block;
    position: relative;
    padding-left: 80px;
    padding-right: 80px;
}

.slide-content h3::before {
    position: absolute;
    content: "";
    width: 70px;
    height: 2px;
    background: var(--bg-primary);
    top: 14px;
    left: 0;
}

.slide-content h3::after {
    position: absolute;
    content: "";
    width: 70px;
    height: 2px;
    background: var(--bg-primary);
    top: 14px;
    right: 0;
}

.slide-content h2 {
    font-size: 50px;

}

.slide-content p {
    font-size: 18px;

}

.slide-content h6 {
    font-size: 18px;
    font-family: 'gilroymedium';
    color: var(--text-gray);
}

section.join-wrapper {
    background: var(--bg-primary);
    border-top: 5px solid var(--bg-secondary);
    border-bottom: 5px solid var(--bg-secondary);
}

.impact-comm h3 {
    font-size: 32px;
    font-family: 'gilroybold';
    color: #fff;
}

.join-email {
    display: flex;
    align-items: center;
}

.join-email input {
    width: 60%;
    border: 0;
    padding-left: 10px;
}

button.btn.join-subscribe-btn {
    background: var(--bg-secondary);
    border-radius: 0px;
    padding: 9px 20px;
    font-size: 20px;
    margin-left: 20px;
}

/* ---application form popup css start--- */

.fade:not(.show) {
    opacity: 1;
}

.application-form {
    display: block;
    position: relative;
}

.application-form .modal-content {
    background: var(--bg-primary);
}

.application-form .modal-body {
    background: #fff;
    margin: 0px 15px;
}

.application-form .modal-content:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 200px;
    background: var(--bg-secondary);
    top: 0;
    left: 0;
    z-index: 1;
}

.application-form .modal-content:after {
    position: absolute;
    content: "";
    width: 15px;
    height: 200px;
    background: var(--bg-secondary);
    top: 0;
    right: 0;
    z-index: 1;
}

.application-form .modal-header {
    border: 0px;
    background: #fff;
}

/* .modal-body{ */
/* background: #fff; */
/* } */
.application-form .modal-header .logo img {
    width: 100%;
    object-fit: contain;
}

.application-form .modal-dialog {
    max-width: 900px;
}

.app-form-blk .modal-dialog {
    max-width: 700px;
    margin: 1.75rem auto;
}

.application-form .modal-dialog .form-group-4 span {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    margin: 10px 5px;
    flex-direction: row;
    width: 142px;
}

.heading-application-text h3 {
    font-size: 32px;
    font-weight: 600;
}

.heading-application-text h3:before {
    position: absolute;
    content: "";
    width: 190px;
    height: 1px;
    background: #000;
    top: 18px;
    left: 0;
}

.heading-application-text h3:after {
    position: absolute;
    content: "";
    width: 190px;
    height: 1px;
    background: #000;
    top: 18px;
    right: 0;
}

.form-progress-bar #myProgress {
    width: 100%;
    background-color: #c1ffe1;
    border-radius: 5px;
}

.form-progress-bar #myBar {
    border-radius: 5px 0px 0px 5px;
    height: 24px;
}

.form-progress-bar-2 #myBar {
    width: 100%;
    border-radius: 5px;
    height: 24px;
}

.form-progress-bar span,
.form-progress-bar-2 span {
    padding: 0px 5px;
}

.nonprofit-app-form h5 {
    font-size: 24px;
    color: var(--text-primary);
    font-family: 'gilroybold';
}

.col-md-12.form-box.application-form-box {
    padding-left: 0px;
    padding-right: 0px;
}

.application-form-box .form-box {
    padding: 25px 0px;
}

.application-form-box .form-group {
    margin-bottom: 2rem;
    border-top: 1px solid var(--text-gray);
    padding: 20px 20px 0px 20px;
}

.icon_tooltip {
    position: absolute;
    content: "";
    font-size: 15px;
    font-weight: 900;
    color: var(--text-primary);
    width: 25px;
    height: 25px;
    border: 2px solid var(--bg-secondary);
    text-align: center;
    border-radius: 50%;
    top: 18px;
    right: 20px;
}

.application-form-box form .form-group label {
    margin-bottom: 5px;
    color: var(--text-primary);
    font-size: 18px;
    margin-right: 5px;
}

.application-form-box form .form-group .form-control {
    border: 2px solid var(--bg-primary);
    border-radius: 0px;
}

.form-group-4 span {
    color: var(--text-primary);
    margin: 0px 5px;
    display: flex;
    align-items: center;
    margin: 10px 5px;
}

.form-group-4 input {
    display: none;
}

.form-group-4 label {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
}

.form-group-4 input:checked + label::before {
    position: absolute;
    content: "";
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    background: var(--text-secondary);
    border-radius: 20px;
}

.social-icon-form ul li a {
    margin: 5px 0px;
    list-style: none;
    font-size: 18px;
    font-family: 'gilroymedium';
    color: var(--text-primary);

}

.social-icon-form li a:nth-child(2) {
    width: 100px;
}

.social-icon-form ul li img {
    width: 30px;
    object-fit: cover;
    margin-right: 10px;
}

/*
comment
.social-icon-form ul li input{
	display: none;
}
*/
.social-icon-form ul li label {
    width: 50px;
    height: 20px;
    display: inline-block;
    position: relative;
    border: 2px solid var(--text-secondary);
    margin-left: 50px;

}

.social-icon-form ul li input:checked + label::before {
    position: absolute;
    content: "";
    top: 2px;
    left: 2px;
    width: 42px;
    height: 12px;
    background: var(--text-secondary);

}

.application_form_page div .next-btn-form button:hover {
    color: #fff;
}

div#form-page-1-btn button,
div#form-page-2-btn button {
    font-size: 22px;
}

/* ---application form popup css end--- */

/* ---how it works page css start */
section.how_it_works .intoboa_colors span {
    font-size: 42px;
    font-family: 'Merriweather';
    font-weight: 600;
}

section.how_it_works .best_place_to {
    font-size: 18px;
    color: #616161;
}

section.how_it_works .fundraiser_heading_text h6 {
    font-size: 22px;
}

section.how_it_works ul.list_fundraising li p {
    font-size: 18px;
    font-family: 'gilroymedium';
}

section.how_it_works .circle-text {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 50%;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Merriweather';
    align-items: center;
    display: flex;
    justify-content: center;
    box-shadow: 0px 0px 6px 1px rgb(0 157 78 / 28%);
}

section.how_it_works .dotted-line:before {
    position: absolute;
    content: "";
    width: 55%;
    top: 50%;
    left: 22%;
    border: 1px dashed var(--bg-primary);
}

section .question_content {
    background: #dddddd;
}

section .question_text {
    font-size: 22px;
    font-family: 'gilroymedium';
}

section .edit_question_text img {
    width: 20px;
    object-fit: cover;
}

.start_fund button:hover {
    background: var(--bg-secondary);
    color: #000 !important;
}

/* ----accordian css----- */
.bs-example .accordion > .card {
    border: 0px;
    border-radius: 0px;
    margin-bottom: 20px;
    background: #dddddd87;
}

.bs-example .accordion > .card > .card-header {
    border-radius: 0;

    background: #dddddd;
    border-bottom: 0px;
}

.bs-example button span {
    color: #000;
    font-size: 22px;
    font-family: 'gilroybold';
}

.bs-example button {
    padding-left: 15px;
    padding-right: 15px;
}

.bs-example .accordion button.btn.btn-block.btn-link:hover {
    text-decoration: none;
}

i.more-less {
    color: var(--text-primary);
    font-size: 22px;
}

.bs-example .card-body {
    padding: 15px 36px;
}

.bs-example .accordion .card button.btn-link:focus {
    text-decoration: none;
}

.bs-example .accordion .card button.btn:focus {
    outline: 0;
    box-shadow: none;
}

/* -----accordian css end------- */

/* ---how it works page css end */

/* ---donation screen page css start */
.shadow-2 {
    box-shadow: 0 .5rem 1rem #009d4e17 !important;
}

ul.nav-profile.navbar-ul li a:hover {
    color: red;
}

.donation-screen .content-details {
    display: flex;
    padding: 20px;
    align-items: center;
    width: 85%;
}

.donation-screen .content-details .other_details h2 {
    font-size: 25px;
    font-family: 'Merriweather';
    color: var(--text-primary);
}

.donation-screen .content-details .other_details p {
    font-family: 'gilroylight';
    font-weight: 600;
    color: #686868;
}

.donation-screen .bold_currency {
    font-size: 50px;
    color: var(--text-primary);
    font-family: 'Merriweather';
    width: 15%;
    background: #f0f0f0;
    justify-content: center;
    align-items: center;
}

.donation-screen .you_made h3 {
    font-size: 32px;
}


/* .donation-screen .find-fund-btn a.btn {
    font-size: 22px;
}
*/

.month-fund .select {
    text-align: left;
    width: 200px;
}

.month-fund select {
    word-wrap: normal;
    appearance: none;
    padding: 10px;
    border: 0px;
    font-family: 'gilroybold';
    background: transparent;
    width: 160px;
}

.month-fund .select select > option {
    font-family: 'gilroymedium';
}

.month-fund select:focus-visible {
    outline: 0px;
}

.month-fund .down-arrow {
    position: absolute;
    content: "";
    top: 3px;
    right: 40px;
    color: var(--text-primary);
    font-size: 20px;
    background: #d0ecde;
    padding: 0px 5px;
    border-radius: 5px;
    z-index: -1;
}

/* ---donation screen page css end */

/* ---donation detail page css start */
section.donation-detail-page p {
    font-family: 'gilroymedium';
}

.nav-profile li .dropdown-menu {
    position: absolute;
    /* transform: translate3d(10px, 63px, 0px)!important; */
    top: 0px;
    top: 0px;
    left: -10px;
    will-change: transform;
    /* min-width: 100px; */
}

ul.nav-profile.navbar-ul li a {
    font-size: 16px;
    font-family: 'gilroymedium';
}

.shadow-green {
    box-shadow: 0 0.5rem 1rem rgb(0 157 78 / 18%);
}

.return-to {
    padding: 3rem;
}

.return-to-fundraiser button.btn {
    border: 1px solid #b5b2b2;
    padding: 10px 46px;
    border-radius: 0px;
}

.return-to-fundraiser button.btn p {
    font-family: 'gilroybold';
    font-size: 18px;
}

.your-donation-benefit-img {
    width: 250px;
}

.your-donation-benefit-img img {
    width: 100%;
    object-fit: cover;
}

.enter-donation label {
    font-size: 20px;
    font-family: 'gilroybold';
}

.enter-donation p.input-group-text {
    font-family: 'gilroybold';
    font-size: 22px;
    color: #000;
    background-color: transparent;
}

.enter-donation input.form-control {
    height: auto;
}

.enter-donation.raise.my-5 {
    border-bottom: 1px solid var(--text-gray);
}

/*
.payment-section h3 {
    font-size: 20px;
    font-family: 'gilroybold';
}
*/

.payment-section .form-check span {
    font-size: 18px;
    font-family: 'gilroylight';
}

.form-check {
    border: 1px solid var(--text-gray);
}

.form-check input {
    display: none;
}

.form-check label {
    width: 23px;
    height: 22px;
    border: 2px solid;
    border-radius: 20px;
}

.form-check input:checked + label:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    background: var(--bg-primary);
    border-radius: 20px;
    top: 3px;
    left: 3px;
}

.payment-gateway-img i {
    font-size: 35px;
    padding-left: 10px;
    color: var(--text-gray);
}

.payment-gateway-img i:hover {
    color: #000;
}

.term-policy p a {
    color: #000;
}

.total-donation-money {
    border-top: 1px solid var(--text-gray);
}


li > span.account-sign-in a {
    font-size: 16px;
    padding-left: 5px;
    color: var(--text-primary);
}

/* ---donation detail page css end */
/* ---fundraiser screen page css start */
.start-fund-btn a.btn {
    font-size: 20px;
}

.donate-screen-box {
    box-shadow: rgb(0 0 0 / 10%) 0px 20px 25px -5px, rgb(0 0 0 / 4%) 0px 10px 10px -5px;
    margin-bottom: 30px;
    width: 100%;
}

.fundraiser-screen-img-box{
    max-height: 257px;
}

.fundraiser-screen-img-box img, .fundraiser-screen-img-box video{
    width: 100%;
    object-fit: cover;
    height: 257px;
}

.fundraiser-screen-content.p-3 {
    border-bottom: 1px solid var(--text-gray);
    min-height: 200px;
}

.button-float {
    position: absolute;
    content: "";
    top: 12px;
    right: 34px;
    background: white;
    border-radius: 5px;
    width: 70px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.copy-link {
    border: none;
    background-color: #fff;
    font-size: 13px;
    color: #04AA6D;
    height: auto !important;
    padding: 0;
    font-family: var(--heading-fonts);
}

/* ---fundraiser screen page css end */
/*  profile screen css start  */
.profile-blk-img {
    width: 150px;
    height: 150px;
    margin: 0px 20px;
    border-radius: 50%;
}

.profile-blk-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-blk-detail {
    padding: 30px 10px;
}

.profile-blk-detail span {
    font-size: 16px;
    font-family: 'gilroymedium';
    color: var(--text-gray);
}

/*
.profile-fund-btn {
    width: 150px;
}
*/

/*  profile screen css end  */

section.our-team .row > div.col-md-4 {
    margin-top: 1.8rem;
}

.responsive-hidden-text {
    display: block;
}


.errors {
    color: red;
}

.error {
    color: #e82e2e !important;
    font-weight: 600 !important;
    font-family: inherit !important;
}

.ck-editor__editable_inline {
    min-height: 200px;
}

span.procent {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 35px;
    transform: translate(-50%, -50%);
    color: var(--text-secondary);
}

span.procent::after {
    content: '%';
}

.canvas-wrap {
    position: relative;
    width: 150px;
    height: 150px;
    margin: auto;
}

#add_exploreMore_modal .modal-body.explore_charities {
    height: 500px;
    overflow-y: scroll;
}

.upload-img .remove {
    display: block;
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ed702d;
    color: #fff;
    font-size: 10px;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
}

.ck.ck-icon,
.ck.ck-icon {
    transform: rotate(0deg) !important;
}

.ck.ck-editor__editable_inline {
    overflow: auto;
    padding: 20px 30px !important;
    border: 1px solid transparent;
}


/* fundraiser page css */

.fundraiser-screen-btn {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: 0px!important;
}

.fundraiser-screen-btn > a {
    margin: 0 10px;
}

/* profile page css */

.edit-profile-blk .upload-img .remove {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    line-height: 25px;
    right: 5px;
    top: 5px;
    min-width: auto;
    padding: 0 !important;
}

.edit-profile-blk .upload-img {
    position: relative;
    width: 25%;
}

.edit-profile-blk .upload-img img {
    width: 100% !important;
}

.edit-profile-blk {
      border: 1px solid #eee;
      padding: 20px;
    }

    .col-md-6.upd-img label {
      border: 1px solid #ddd;
      width: 100%;
      height: 48px;
      border-radius: 4px;
      line-height: 48px;
      padding-left: 10px;
      color: #615b5b;
    }

    .edit-profile-blk button.btn,
    .edit-profile-blk a.btn {
      background: var(--bg-primary);
      color: #fff;
      font-family: 'gilroybold';
      margin-bottom: 10px;
    }

    .edit-profile-blk button.btn:hover,
    .edit-profile-blk a.btn:hover {
      background: var(--bg-secondary);
    }

    .file-upload-wrapper {
      position: relative;
      width: 100%;
      height: 50px;
      border: 1px solid #ced4da;
      border-radius: 0.25rem;
      transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

    .file-upload-wrapper:after {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      background: #fff;
      padding: 10px 15px;
      display: block;
      width: calc(100% - 40px);
      pointer-events: none;
      z-index: 20;
      color: #999;
      border-radius: 5px 10px 10px 5px;
      font-weight: 300;
    }

    .file-upload-wrapper::before {
      content: "Upload";
      position: absolute;
      top: 0;
      right: 0;
      display: inline-block;
      height: 100%;
      background: #009d4e;
      color: #fff;
      font-weight: 700;
      z-index: 25;
      font-size: 16px;
      line-height: 50px;
      padding: 0 15px;
      text-transform: uppercase;
      pointer-events: none;
      border-radius: 0 0.25rem 0.25rem 0;
    }

    .file-upload-wrapper:hover:before {
      background: #009d4e;
    }

    .file-upload-wrapper input {
      opacity: 0;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 99;
      height: 50px;
      margin: 0;
      padding: 0;
      display: block;
      cursor: pointer;
      width: 100%;
    }


/* profile page css */

.fundraiser-screen-content h6 {
    margin-bottom: 20px;
}

/* home page css */

.news-section a {
    color: #000;
}


#slider .carousel-item {
    height: 350px;
}

#slider a.bg_primary {
    min-width: 150px;
    /* margin: 0 auto !important; */
    text-align: center;
    padding: 5px 10px !important;
    width: fit-content;
}

/* header css */
header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.top_navbar {
    background-color: #fff;
}

header input {
    height: 50px !important;
}

header .input-group .btn{
    width: 40px !important;
    min-width: 50px !important;
    border: 1px solid #009d4e;
}

/* charities page css */

.explore_charities .content-details a {
    padding: 0 !important;
}

.explore_charities .content-details p {
    margin-bottom: 0 !important;
}

/* search page css */

.serach-contents .contents {
    padding: 20px 20px !important;
}

.serach-contents .logo img {
    height: auto;
}

/* Blog detail page css */

.restaurant_text .image img {
    width: 100%;
    object-fit: cover;
}

/* about page modal */

.aboutus_modal img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 100%;
    margin: 0 auto;
}

.aboutus_modal .modal-header,
.report_modal .modal-header {
    background-color: var(--bg-primary);
    color: #fff;
}

.aboutus_modal button:focus {
    outline: 0px !important;
}

.aboutus_modal .modal-body {
    top: -40px;
}

.aboutus_modal .modal-body ul {
    padding-left: 20px !important;
    text-align: left;
}

.aboutus_modal .modal-body ul li {
    font-size: 15px;
    line-height: 24px;
    margin-top: 10px;
}

button.close {
    z-index: 2;
}


/*-- CUSTOM STYLE --*/
.profile-blk-detail a {
	color: var(--bg-primary);
}
/* new css */
.heart-hands-img {
    object-fit: contain;
	width: 60px;
    height: 90px;
}
/* ----11/3/22 css---- */
.inner-contents .contents .date + h4 + p {
    height: 65px;
}
.top-line-text {
    height: 170px;
}
.custom_bnr_position {
    position:absolute;
    bottom: -43%;
    right: -154px; 
}
/* MEDIA QUERY START */


@media (max-width: 1365px) {
    .nav_bar .navbar {
        padding: 10px 0px !important;
    }

    .nav_bar .navbar-nav {
        align-items: start;
    }
}


@media screen and (min-width: 1234px) and (max-width: 1365px) {
    .slide-content h3:before {
        left: 150px;
    }

    .slide-content h3:after {
        right: 150px;
    }

}
@media screen and (min-width: 1200px) and (max-width: 1365px) {
    .custom_bnr_position {
        bottom: -42%;
    right: -113px;
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }

}

@media (max-width: 1200px) {
    .donate_boxes.donate_boxes_2{
        width: -webkit-calc(100% - 50px);
        width: -moz-calc(100% - 50px);
        width: calc(100% - 50px);
    }
}

@media screen and (min-width: 1086px) and (max-width: 1234px) {
    .slide-content h3:before {
        left: 110px;
    }

    .slide-content h3:after {
        right: 110px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
    .stories-section .quote-contents .inner-div {
        height: 400px;
    }
}


@media screen and (min-width: 1038px) and (max-width: 1200px) {
    .custom_bnr_position {
        bottom: -38%;
        right: -86px;
    }
}
@media screen and (min-width: 991px) and (max-width: 1038px) {
    .custom_bnr_position {
     
        bottom: -38%;
        right: -86px;
    }
}
@media screen and (min-width: 900px) and (max-width: 1086px) {
    .slide-content h3:before {
        left: 52px;
    }

    .slide-content h3:after {
        right: 52px;
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

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

    .slider .carousel-control-next,
    .slider .carousel-control-prev {
        width: 15%;
    }

    .services_section .contents .icon {
        height: 100px;
        width: 100px;
        line-height: 100px;
        border-radius: 20px;
    }

    .services_section .contents .icon img {
        width: 60px;
    }

    .services_section .contents h3 {
        font-size: 1.5rem;
    }

    .features_section .contents img {
        height: 150px;
    }

    .features_section .inner-contents h4 {
        font-size: 1rem;
    }

    .features_section .contents .inner-contents {
        padding: 20px;
    }

    .features_section .data-contents {
        display: unset !important;
        font-size: 12px;
        float: left;
        width: 100%;
    }

    .footer .title {
        position: relative;
        font-size: 18px;
        margin-top: 20px;
    }

    .stories-section .quote-contents .inner-div {
        height: auto;
        padding: 25px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .section-header .title-content {
        width: 100% !important;
    }

    .nav_bar .navbar {
        padding: 10px 0px !important;
    }

    .grid-icons .icon {
        width: 100%;
        margin-bottom: 20px;
    }

    .grid-icons .contents {
        display: block;
        text-align: center;
    }

    .grid-icons .contents .content-details {
        width: auto;
        padding-left: 0;
    }

    .online-fundRaising .custom-design {
        bottom: -40% !important;
      
    }

    .content-details {
        padding: 0px;
    }

    /* homepage css */

    .custom-design h2 {
        font-size: 30px;
    }

    .banner-donate {
        background-position: center;
    }

    .green-circle {
        width: 200px;
        height: 200px;
    }

    .donation-screen .bold_currency {
        font-size: 30px;
        width: 20%;
    }

    .profile-fund-btn a {
        font-size: 14px;
        line-height: 20px !important;
        padding: 10px 10px;
    }

    .profile-fund-btn {
        width: 50%;
        font-size: 14px;
    }

    .fundraiser-screen-btn .btn {
        padding: 0.2rem 0.75rem;
    }

    .content-headings p:first-child {
        font-size: 20px;
    }

    span.text-center {
        margin-left: 5px;
    }

    .section-second .row {
        padding: 30px 15px;
    }

    .contents.side-nav-box > div a,
    .contents.side-nav-box > div a.active {
        font-size: 14px !important;
    }

    .fundraiser-box h4,
    .fundraiser-box h5 {
        font-size: 16px !important;
    }

    .slide-content h3 {
        padding-left: 110px;
        padding-right: 110px;
    }
}

@media (min-width:768px) {

    .search-col{
        order: 2;
    }
    .profile-col{
        order: 3;
    }
}

@media (max-width: 767px) {

    .leftside-bg,
    .rightside-bg {
        height: 300px !important;
    }

    .outer-div {
        padding: 40px;
    }

    .top_navbar {
        text-align: center;
    }

    .top_navbar ul {
        float: none !important;
        padding: 0px 0px 10px 0px;
    }


    .nav_bar ul li a {
        font-size: 15px;
    }


    .nav_bar .navbar {
        padding: 5px 0px !important;
    }

    .slider .carousel-item,
    .slider .carousel-img {
        height: 400px;
    }

    .slider .carousel-img img {
        object-fit: cover;
		object-position: 45% 0%;
    }

    .grid-icons {
        margin-top: 0px;
        /* padding: 40px 0px; */
    }

    .slider .carousel-caption h2 {
        font-size: 18px;
    }

    /*.slider .carousel-caption {
        left: 5%;
    }
    */

    .slider .carousel-caption h1 {
        font-size: 25px;
    }

    .slider .carousel-caption .buttons {
        display: flex;
        /* flex-direction:column; */
    }

    .carousel-caption .buttons button {
        padding: 0.5rem 10px;
        font-size: 12px;
    }

    .slider .carousel-control-next,
    .slider .carousel-control-prev {
        width: 30%;
    }

    .section_padding {
        padding: 30px 0px;
    }

    .section-heading h2 {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 20px;
    }

    .title-content {
        width: 100% !important;
        padding: initial !important;
        margin-bottom: 0px;
    }

    .services_section .contents .icon {
        height: 80px;
        width: 80px;
        line-height: 80px;
        border-radius: 20px;
    }

    .services_section .contents {
        text-align: center;
        padding: 50px 30px;
        background-color: #f9f9f9;
    }

    .services_section .contents .icon img {
        height: 100%;
        object-fit: contain;
        padding: 15px;
    }

    .features_section .contents img {
        height: 200px;
    }

    .features_section .inner-contents h4 {
        font-size: 1rem;
    }


    .features_section .contents .inner-contents p {
        font-size: 14px;
    }

    .progress {
        width: 80px;
        height: 80px !important;
        line-height: 80px;
    }

    .progress .progress-value {
        line-height: 80px;
    }

    .signupForm-section .px-5 {
        padding: 3rem 2rem !important;
    }

    .signupForm-section .tab-content p {
        font-size: 12px;
    }

    .raised-fund-details p {
        font-size: 12px;
    }

    .section-header h5 {
        font-size: 16px;
    }


    .header h2 {
        font-size: 20px;
    }

    .online-fundRaising .custom-design {
        position: unset !important;
    }

    .online-fundRaising .custom-design .p-5 {
        padding: 1rem !important;
    }

    .start_fundraising .btn {
        margin: 10px 0px !important;
    }

    .start_fundraising .buttons {
        display: block !important;
    }

    .services_section .row.mt-5 {
        margin-top: 0px !important;
    }

    .footer .hidden-title {
        display: none;
    }

    .footer .responsive-ul {
        margin-top: 0px !important;
        margin-bottom: 20px !important;
    }

    .stories-section .quote-contents-inner {
        margin-top: 70px;
    }

    .stories-section .img-section img {
        height: 400px;
    }

    .stories-section .quote-contents .inner-div h3,
    .stories-section .quote-contents .inner-div p {
        line-height: 20px;
        font-size: 13px;
    }

    .stories-section .quote-contents .inner-div {
        padding: 25px;
        height: 300px;
    }

    .stories-section .img-section .label {
        left: 20px;
        width: 100px;
    }

    .stories-section .btn_padding {
        padding: 0.4rem 1rem !important;
        min-width: auto;
        margin-top: 10px !important;
    }

    .stories-section .quote-contents {
        right: -30px;
    }

    .features_section .contents .inner-contents {
        padding: 20px;
    }

    .raised-fund-details h2 {
        font-size: 25px;
    }

    .services_section .contents h3 {
        font-size: 1.5rem;
    }

    .news-section .contents h4 {
        font-size: 1.3rem;
    }

    .online-fundRaising .px-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .stories-section .carousel-indicators {
        top: 70px;
        margin-left: 10px;
    }

    .online-fundRaising .custom-design h2 {
        font-size: 30px;
    }

    .start_fundraising .btn span.text-uppercase {
        font-size: 1rem;
    }

    .logo img,
    .input-group {
        margin-bottom: 10px;
    }

    .start_fundraising .btn {
        padding: 0.7rem 2rem !important;
    }

    .explore_charities .content-details {
        padding: 30px;
        width: 100%;
    }

    .more_div_hide{
        display: flex;
        flex-wrap: wrap;
    }

    .explore_charities .user-img img {
        height: 80px;
        width: 80px;
    }

    .explore_charities .content-details .other_details h2 {
        font-size: 40px;
    }

    .explore_charities .content-details .other_details {
        width: calc(100% - 80px);
    }

    .navbar .navbar-nav {
        align-items: start;
    }

    .banner {
        height: 350px;
    }

    .heading-text {
        font-size: 2rem;
    }

    .other-details .inner-details h2 {
        font-size: 40px;
    }

    .other-details .inner-details {
        border: 5px solid #fff;
    }

    .explore_charities .content-details .other_details small {
        float: none !important;
    }

    .donate_fund_box .wrapper .w-50 {
        width: 100% !important;
    }

    .banner h1 {
        font-size: 48px;
    }

    .address-details li .icons-div {
        width: 130px;
        display: flex;
        align-items: center;
    }

    .address-details li .details {
        width: calc(100% - 130px);
    }

    .aboutus-details .responsive-row {
        flex-direction: column-reverse;
    }

    .about_story_section .inner-details {
        flex-direction: unset;
        padding: 20px;
    }

    .about_story_section .inner-details h2 {
        margin-bottom: 10px;
    }

    .about_story_section .inner-details p {
        margin-bottom: 0px;
    }

    .item {
        display: flex;
        flex-wrap: wrap;
    }

    .slide-content h3:before {
        left: 27px;
    }

    .slide-content h3:after {
        right: 27px;
    }

    .donation-screen .content-details .other_details h2 {
        font-size: 22px;
        padding-top: 20px;
    }

    .donation-screen .bold_currency {
        font-size: 42px;
        width: 100%
    }

    .donation-screen .content-details {
        display: flex;
        flex-direction: column;
        padding: 20px 0px;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .donation-screen .you-made {
        display: flex;
        flex-wrap: wrap;
    }

    .donation-screen .old-donation {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .nav-profile {
        justify-content: center;
    }

    .heading-application-text h3:before,
    .heading-application-text h3:after {
        width: 150px;
    }

    .profile-screen-col {
        flex-wrap: wrap;
        display: flex;
    }

    .responsive-hidden-text {
        display: none;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .slide-content h3 {
        font-size: 15px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slide-image {
        text-align: center;
        margin: 0 auto;
    }

    .slide-image img {
        width: 100px !important;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .donate_fund_box {
        background-color: #fff;
    }

    .donate_fund_box .label-box.btn {
        margin-bottom: 10px;
    }

    .donate_fund_box .col-md-6 {
        margin-bottom: 10px;
    }

    .btn {
        padding: 0.5rem 0.75rem !important;
        min-width: 100px!important;
    }


    .aboutus-details .container > div:nth-child(odd) {
        flex-direction: column-reverse;
    }

    .section-second .row {
        padding-bottom: 50px;
    }

    .bs-example button span {
        font-size: 18px;
        text-align: left;
    }

    .card-header {
        padding: 0.75rem 0.05rem
    }

    section .how_it_works .intoboa_colors span {
        font-size: 30px;
    }

    .total_donation .total, #campaign_total_amount{
        width: 100%;
    }

    .top_navbar .input-group .input-group-append .btn{
        padding: 0rem .75rem !important;
    }

    header .navbar-collapse{
        overflow-y: scroll;
    }

    .news-section .contents{
        padding-top: 0px !important;
    }

    .Fundraising-blog-text span {
        font-size: 30px;
    }

    .wrapper{
        padding: 1rem;
    }

    .wrapper .contents{
        padding: 0px!important;
    }

    .wrapper img{
        width: 40px;
        max-width: -webkit-fill-available;
        height: 40px;
    }
    .edit-profile-blk .upload-img .remove {
        min-width: auto !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 899px) {
    .slide-content h3:before {
        left: 30px;
    }

    .slide-content h3:after {
        right: 30px;
    }

    .content-details.icon img {
        width: 100%;
    }

    .heading-application-text h3:before,
    .heading-application-text h3:after {
        width: 200px;
    }
}


@media (max-width:667px){

    .how_it_works .row.mt-5.justify-content-center > div{
        flex: 0 0 100%;
        max-width: 100%;
    }

    .how_it_works .row.mt-5 .justify-content-center{
        margin-bottom: 30px;
    }

    .how_it_works .row.mt-5 div.mx-5{
        margin: 0px !important;
    }

}

@media screen and (min-width: 401px) and (max-width: 548px) {
    .slide-content h3:before {
        left: -5px;
        width: 50px;
    }

    .slide-content h3:after {
        right: -5px;
        width: 50px;
    }
}

@media screen and (min-width: 567px) and (max-width: 650px) {

    .heading-application-text h3:before,
    .heading-application-text h3:after {
        width: 100px;
    }
}

@media (max-width: 567px) {
    .donation-benefit-box {
        display: flex;
        flex-direction: column;
    }

    .heading-application-text h3:before,
    .heading-application-text h3:after {
        width: 100px;
    }

    .row-mh {
        padding: 1rem 0rem !important;
    }

    .profile-blk.d-flex {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }

    .profile-btn-boxes.d-flex {
        flex-direction: column;
        margin: 0px auto;
    }

    .profile-fund-btn {
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 500px) and (max-width: 562px) {

    .heading-application-text h3:before,
    .heading-application-text h3:after {
        width: 70px;
    }
}

@media screen and (min-width: 400px) and (max-width: 500px) {

    .heading-application-text h3:before,
    .heading-application-text h3:after {
        width: 35px;
    }
}

@media (max-width: 420px) {
    
	.slider .carousel-caption .buttons {
	   display: flex;
	   flex-direction: column;	   
	}
    .slider .carousel-caption .buttons a:last-child {
		justify-content: flex-start !important;
		margin-top: 15px;
	}
}

@media (max-width: 400px) {
    .banner h1 {
        font-size: 35px;
    }

    /*.content-details {
        padding: 20px 0px;
    }
    */

    .content-details.icon img {
        width: 100%;
    }

    .contents.choose_from_text h2 {
        font-size: 22px;
    }

    .start_fundraising button {
        min-width: 200px;
    }

    .slide-content h3:before {
        left: 0px;
        width: 19px;
    }

    .slide-content h3:after {
        right: 0px;
        width: 19px;
    }

    .restaurant_content {
        flex-wrap: wrap;
    }

    .social-icons ul {
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .share_article {
        flex-wrap: wrap;
    }

    .total_donation {
        flex-wrap: wrap;
        justify-content: center;
    }

    .fundraiser_heading_text {
        margin: 0px;
    }

    .donation-screen .you_made {
        font-size: 22px;
    }

    .return-to {
        padding: 15px;
    }

    .button-float {
        position: absolute;
        content: "";
        top: 38%;
        right: 32px;
    }

    i.ri-mastercard-line {
        display: none;
    }

    .start_fundraising button,
    .start_fundraising button:hover {
        border-radius: 20px;
        min-width: 150px;
        border-width: 2px;
    }

    .start_fundraising button p {
        font-family: 'gilroymedium';
        font-size: 14px;
    }

    .donate_fund_box .wrapper .next-btn-form button i {
        display: none;
    }

    .charity-box h2 {
        font-size: 48px;
    }

    .heading-application-text h3 {
        font-size: 22px;
    }

    .heading-application-text h3:before,
    .heading-application-text h3:after {
        width: 35px;
        top: 12px;
    }

    .section-sticky button > span.text-center {
        margin-left: 80px;
    }

    .application_form .form-box {
        padding: 25px 25px;
    }

    a.btn.donate-btn span.text-center {
        margin-left: 75px;
    }
    .join-email{
        flex-wrap: wrap;
    }
    .join-email input, .join-email button{
        width: 100%;
        margin-left: 0px !important;
        margin-top: 10px;
    }

    .edit-profile-blk .upload-img{
        width: 100%;
    }

    .month-fund select, .month-fund, .month-fund .select{
        width: 100%;
    }

    header .nav-link{
        padding: 0.5rem!important;
    }

    .top_navbar ul li{
        padding-right: 5px;
    }

    ul.nav-profile.navbar-ul li a{
        font-size: 14px;
    }
}

@media (max-width: 342px) {

	.heading-application-text h3:before,
    .heading-application-text h3:after {
        display: none;
    }

    .social-icon-form li {
        display: flex;
        flex-wrap: wrap;

    }
    .green-circle {
        width: 210px;
        height: 210px;
    }
	.width-100 {
	    width: 100% !important;
	}
}
