@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&amp;family=Volkhov:wght@400;700&amp;display=swap');
* {
    padding: 0px;
    margin: 0px;
}

body {
    overflow-x: hidden;
}

/*--------------------------------------------------------------
 * Preloader CSS MS
 *--------------------------------------------------------------
 */

.wp-smart-loader {
    text-indent: -12345px;
}
.form-com-message {
    width: 100%;
    padding:15px;
    border: 1px solid gainsboro;
    border-radius: 8px;
}
/*--------------------------------------------------------------
 * Preloader One
 *--------------------------------------------------------------
 */
.smart-loader-one {
    width: 50px;
    height: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: spinner 700ms infinite linear;
    -moz-animation: spinner 700ms infinite linear;
    -ms-animation: spinner 700ms infinite linear;
    -o-animation: spinner 700ms infinite linear;
    animation: spinner 700ms infinite linear;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
 * Preloader Two
 *--------------------------------------------------------------
 */

.smart-loader-two {
    position: relative;
    width: 80px;
    height: 80px;
    -webkit-animation: spinner 5s infinite linear;
    animation: spinner 5s infinite linear;
}

    .smart-loader-two span {
        width: 40px;
        height: 40px;
        position: absolute;
        background: red;
        display: block;
        -webkit-animation: spinner-two 1s infinite linear;
        animation: spinner-two 1s infinite linear;
    }

        .smart-loader-two span:nth-child(1) {
            background: #2ecc71;
        }

        .smart-loader-two span:nth-child(2) {
            left: 44px;
            background: #9b59b6;
            -webkit-animation-delay: .2s;
            animation-delay: .2s;
        }

        .smart-loader-two span:nth-child(3) {
            top: 44px;
            background: #3498db;
            -webkit-animation-delay: .4s;
            animation-delay: .4s;
        }

        .smart-loader-two span:nth-child(4) {
            top: 44px;
            left: 44px;
            background: #f1c40f;
            -webkit-animation-delay: .6s;
            animation-delay: .6s;
        }

@-webkit-keyframes spinner-two {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes spinner-two {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

/*--------------------------------------------------------------
 * Preloader Three
 *--------------------------------------------------------------
 */

.smart-loader-three {
    position: relative;
}

    .smart-loader-three span {
        display: block;
        bottom: 0px;
        width: 9px;
        height: 5px;
        background: #9b59b6;
        position: absolute;
        -webkit-animation: spinner-three 1.5s infinite ease-in-out;
        animation: spinner-three 1.5s infinite ease-in-out;
    }

        .smart-loader-three span:nth-child(2) {
            left: 11px;
            -webkit-animation-delay: .2s;
            animation-delay: .2s;
        }

        .smart-loader-three span:nth-child(3) {
            left: 22px;
            -webkit-animation-delay: .4s;
            animation-delay: .4s;
        }

        .smart-loader-three span:nth-child(4) {
            left: 33px;
            -webkit-animation-delay: .6s;
            animation-delay: .6s;
        }

        .smart-loader-three span:nth-child(5) {
            left: 44px;
            -webkit-animation-delay: .8s;
            animation-delay: .8s;
        }

@-webkit-keyframes spinner-three {
    0% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }

    25% {
        height: 30px;
        transform: translateY(15px);
        background: #3498db;
    }

    50% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }

    100% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }
}

@keyframes spinner-three {
    0% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }

    25% {
        height: 30px;
        transform: translateY(15px);
        background: #3498db;
    }

    50% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }

    100% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }
}

/*--------------------------------------------------------------
 * Preloader Four
 *--------------------------------------------------------------
 */

.smart-loader-four {
    width: 80px;
    height: 80px;
}

    .smart-loader-four .spinner-cube {
        width: 33%;
        height: 33%;
        background-color: #9b59b6;
        float: left;
        -webkit-animation: spinner-four 1.3s infinite ease-in-out;
        animation: spinner-four 1.3s infinite ease-in-out;
    }

    .smart-loader-four .spinner-cube1 {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

    .smart-loader-four .spinner-cube2 {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .smart-loader-four .spinner-cube3 {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .smart-loader-four .spinner-cube4 {
        -webkit-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }

    .smart-loader-four .spinner-cube5 {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

    .smart-loader-four .spinner-cube6 {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .smart-loader-four .spinner-cube7 {
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
    }

    .smart-loader-four .spinner-cube8 {
        -webkit-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }

    .smart-loader-four .spinner-cube9 {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

@-webkit-keyframes spinner-four {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

@keyframes spinner-four {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

/*--------------------------------------------------------------
 * Preloader Five
 *--------------------------------------------------------------
 */

.smart-loader-five {
    width: 80px;
    height: 80px;
    position: relative;
}

    .smart-loader-five .spinner-cube {
        border: 2px solid transparent;
        float: left;
        width: 50%;
        height: 50%;
        position: relative;
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box;
    }

        .smart-loader-five .spinner-cube:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #9b59b6;
            -webkit-animation: spinner-five 2.4s infinite linear both;
            animation: spinner-five 2.4s infinite linear both;
            -webkit-transform-origin: 100% 100%;
            -ms-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
        }

    .smart-loader-five .spinner-cube-2 {
        -webkit-transform: scale(1.1) rotateZ(90deg);
        transform: scale(1.1) rotateZ(90deg);
    }

    .smart-loader-five .spinner-cube-3 {
        -webkit-transform: scale(1.1) rotateZ(180deg);
        transform: scale(1.1) rotateZ(180deg);
    }

    .smart-loader-five .spinner-cube-4 {
        -webkit-transform: scale(1.1) rotateZ(270deg);
        transform: scale(1.1) rotateZ(270deg);
    }

    .smart-loader-five .spinner-cube-2:before {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .smart-loader-five .spinner-cube-3:before {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .smart-loader-five .spinner-cube-4:before {
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
    }

@-webkit-keyframes spinner-five {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes spinner-five {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
 * Preloader Six
 *--------------------------------------------------------------
 */

.smart-loader-six {
    width: 70px;
    height: 70px;
    position: relative;
}

    .smart-loader-six .spinner-cube-1,
    .smart-loader-six .spinner-cube-2 {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: #3498db;
        opacity: 0.6;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-animation: spinner-six 2.0s infinite ease-in-out;
        animation: spinner-six 2.0s infinite ease-in-out;
    }

    .smart-loader-six .spinner-cube-2 {
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s;
    }

@-webkit-keyframes spinner-six {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes spinner-six {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.smart-page-loader {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fefefe;
    z-index: 100000;
}

.wp-smart-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    font-size: 10px;
    z-index: 100001;
}


.wp-smart-body {
    visibility: hidden;
}
/*--------------------------------------------------------------
 * Preloader Seven
 *--------------------------------------------------------------
 */
h1, h2 {
    font-family: 'Volkhov', serif;
}




.Poppins-font {
    font-family: 'Poppins', sans-serif;
}

.bg-theme-colored {
	background: rgba(37, 39, 46, 1);
}

a {
    text-decoration: none;
}

.sm-text-center {
    text-align: center;
}
.nav-item {
    padding: 0 16px;
}

.donate-btn {
    float: right;
    border-radius: 50px;
    padding: 4px 20px;
    background: #800000;
    color: #fff;
    margin: 5px 0px;
}

.headertop .navbar-toggler {
    background: #181e4b;
}

.headertop .navbar-nav .nav-item .nav-link {
    color: #000000;
	font-weight: 500;
}

.arrowbtn  a {
    color: #ffffff;
    text-decoration: none;
    background: #800000;
    padding: 10px 18px;
    border-radius: 50%;
}

.modal-body li {
    padding: 20px 20px;
    font-size: 20px;
}
.close {
    border: none;
    font-size: 26px;
    background: none;
}
.modal-body a {
    color: #000;
    font-weight: 700;
}
.arrowbtn {
    width: 10%;
    position: relative;
    bottom: 50px;
    left: 40%;
}



.d-btn {
    float: left;
    margin-top: 20px;
}

.top-banner-inner {
    position: absolute;
    top: 0;
    height: 590px;
    
}
.cause-text h3 a {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
    display: block;
}
.cause-text p{ font-size:15px;}
.mySlides {
    display: none;
}
.banner-text {
    background-image: url(../images/Rectangle1.png);
    background-repeat: no-repeat;
    height: 590px;
    left: 0px;
    top: 0;
    color: #f2f2f2;
    font-size: 15px;
    padding: 150px 115px;
    position: absolute;
}
.banner-rectangle-text {
    margin-top: 120px;
}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  margin: auto;
}


* {box-sizing: border-box;}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 8s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.heading-s {
    background-image: url(../images/helping-hands.svg);
    background-repeat: no-repeat;
    background-position: top center;
}
.improve-box {
    box-shadow: 1px 1px 10px 0px rgb(0 0 0 / 15%);
    padding: 20px;
}
.improve-box:hover {
    background: #25272E;
    color: #ffffff;
}
.about-sec {
    background: #25272E;
}
ul.causes-fund {
    list-style: none;
    display: flex;
    padding-left: 0;
}

    ul.causes-fund li {
        background: #d1d1d1;
        padding: 5px 10px;
    }
ul.causes-fund {
    list-style: none;
    display: flex;
    padding-left: 0;
    justify-content: space-between;
}
.donate:hover {
    color: #fff;
    background: #000;
}

.causes-row .img-fluid {
    max-width: 100%;
    height: auto;
    object-fit: cover !important;
    width: 100%;
}

.causes-row .progress {
    height: 8px;
    border-radius: 0;
    width: 100%;
    position: relative;
    bottom: 16px;
}
.causes-row .progress-bar {

    background-color: #800000;
   
}
.causes-box {
    background: #F3F0EA;
}
.about-us img{ width:100%;}
.v-detail h4 {
    font-size: 18px;
    margin-bottom: 20px;
}
.donate {
    border: none;
    background: #800000;
    padding: 4px 20px;
    border-radius: 50px;
    color: #fff;
    margin-top: 10px;
    display: inline-block;
}
.cause-text h3 a:hover {
    color: #800000
}
.Donation-form {
    background-image: url(../images/DFB.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.Donate-form{
    background: #800000;
}
.form-group {
    margin-bottom: 10px;
}

.our-plans {
    background-image: url(../images/plans.jpg);
    background-repeat: no-repeat;
   
    position: relative;
}
.our-plan {
    position: relative;
    left: 100px;
	z-index: 99;
	    margin-top: 150px;
}

.plans {
    background: #fff;
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.15);
	padding: 15px;
	height: 100%;

}

.testimonial-sec {
	background-image: url(../../HTML/images/Banner2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.testimonial-slide {
    background: #800000;
    margin-top: 100px;
    margin-bottom: 70px;
    padding: 30px 20px;
	border-radius: 20px;
}

.testi-icon {
display: block;
    margin-top: -80px;
    align-items: center;
	width: auto!important;
}
.img-fluid {
    max-width: 100%;
    height: auto;
    min-width: 100%;
}
.logo-s {
    background: #25272E;
    padding: 40px 0;
}
.logos img {
    width: 80%;
}
.v-detail {
    border: 1px solid #d5d2d2;
    padding: 20px 10px;
    background: #f5f5f5;
}
.brand-sec {
    padding-top: 50px;
    padding-bottom: 0px;
    background: #25272E;
}
.causes-box{ margin-bottom:20px;}
.improve-box h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 21px;
}
.improve-box img {
    width: 70px;
}
.improve-box p {
    font-size: 14px;
    line-height: 24px;
}
.v-social span a {
    background: #800000;
    border-radius: 50%;
    padding: 3px;
    color: #fff;
}

.f-icon {
    color: #800000;
    font-size: 25px;
    margin-bottom: 12px;
}
ul.f-menu {
    margin-bottom: 0px;
}
.f-menu li{
    color: #fff;
    display: inline-block;
}

.f-social span a {
    background: #800000;
    border-radius: 50%;
    padding: 10px;
    color: #fff;
    float: right;
    margin: 5px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 30px;
}
.About-banner {
	background-image: url(../../HTML/images/Banner5.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
	padding: 180px 0px;
}

.footer {
	background: #25272E;
    margin-top: 50px;
}

.Adbanner-about {
	background-image: url(../images/Adbanner-about.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
	padding: 180px 0px;
}
.adbanner {
    display: flex;
    padding: 0 13em;
}
.adbanner p {
    font-size: 26px;
    color: #FFF;
    font-weight: 700;
    padding: 0 12px;
}

/*blog*/
.blog {
    padding: 70px 0;
}
.blog-img img {
    width: 100%;
}
.blog-dates span {
    padding: 0px 14px 0px 4px;
    border-right: 1px solid;
    font-size: 12px;
}
.blog-dates {
    padding: 10px 0;
}
.search-btn img {
    width: 23px;
}
.search-btn {
    position: absolute;
    top: 28px;
    right: 37px;
}
.category-flex ul{ padding:0px;}
.category-flex ul li {
    list-style: none
}
    .category-flex ul li a {
        border-radius: 5px;
        margin-bottom: 5px;
        display: block;
        padding: 7px 10px;
        background: white;
        border: 1px solid #b5b4b4;
    }

.post {
    padding: 18px 0 0 0;
}
.post-txt {
    padding: 15px 0 0 0;
}
.post-link a {
    background: #800000;
    padding: 8px 13px;
    color: #FFF;
    /* border-radius: 8px; */
    font-size: 15px;
}
.post-link a:hover {
    color: #000;
}
.post-link {
    padding: 10px 0 25px 0;
}

.category-head {
    margin-bottom: 15px;
}

.search-box {
    position: relative;
    padding: 23px 30px;
    background: #EEF3FA;
}

.category-flex {
    
     padding: 1px 1px;
    position: relative;
}
.cat-btn {
    position: absolute;
    text-align: 0;
    top: 6px;
    right: 50px;
    z-index: 1;
}
.cat-btn img {
    width: 16px;
}
.category {
background: #EEF3FA;
    padding: 30px;
        margin: 0px 0 35px 0;
}

.bt {
    padding: 40px 10px;
}
.charity-help {
    display: inline-block;
    float: left;
    width: 100%;
}
.charity-help-content {
    padding: 0 17px;
}
.charity-help-img {
    float: left;
    margin-right: 20px;
}
.charity-help-content {
    padding: 0;
    float: left;
    width: 66%;
}
.post-line img {
    width: 100%;
    height: 1px;
}
.charity-help-content p {
    font-size: 14px;
    font-weight: 600;
}
.charity-help-content span {
    font-size: 14px;
    color: gray;
    font-weight: 600;
}

.charity-help-img img {
    width: 80px;
}
.recent-post {
    padding: 30px;
    background: #EEF3FA;
}
.r-p-title {
    padding: 25px 0 25px 0;
}
.r-p-title h3 {
    font-size: 30px;
    font-weight: 700;
}
.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
}

.pagination a.active {
  background-color: dodgerblue;
  color: white;
}

.pagination a:hover:not(.active) {background-color: #ddd;}

.blog-sec1 {
    padding: 0 0 90px 0;
}
.blog-post-title.my-4.pd-70 {
    padding: 0 0 70px 0;
}

/*blog-end*/
/*contact*/
.contact {
    padding: 90px 0;
}
.contact-form {
    padding: 0px 0 90px 0;
}
.contact-us {
    text-align: center;
    padding: 25px 5px;
    /* border: 1px solid; */
    box-shadow: 0 0 5px 0px #b7b3b3;
}
.contact-img img {
    width: 70px;
}
.contact-img {
    padding: 0px 0 25px 0;
}
.contact-txt {
    padding: 0px 0 10px 0;
}
.contact-txt h3 {
    font-size: 25px;
    font-weight: 700;
}
.contact-detail span {
    font-size: 19px;
    font-weight: 500;
}
.contact-form1 label {
    padding: 14px 0;
    font-weight: 500;
    font-size: 18px;
}
button.btn.btn-default.donate {
    padding: 9px 20px;
    font-size: 16px;
    font-weight: 500;
}
#textarea {
    width: 100%;
    padding: 5px 0 100px 10px;
    border: 1px solid gainsboro;
    border-radius: 8px;
}
.contact-top-text {
    font-size: 17px;
    font-weight: 600;
}
.contact-form1 h2 {
    font-size: 28px;
    font-weight: 600;
}
.map iframe {
    width: 100%;
}

/*contact-end*/
/*blog-detail*/
.bd-0 {
    margin: -11em 0;
}
.Comment-sec {
    display: flex;
    padding: 0 0 50px 0;
}
.comment-img img {
    width: 90px;
}
.content-flex {
    display: flex;
    padding: 0px 0 10px 0;
}
.comment-content {
    padding: 0 20px;
}

.reply span {
    padding: 0px 0 0px 17em;
}
.content-flex span {
    font-size: 18px;
    font-weight: 500;
}
.Comment {
    padding: 0px 0 30px 0;
 
}
.Comment-txt p {
    font-size: 16px;
    /* color: darkgray; */
    font-weight: 500;
}
.Comment-txt span {
    font-size: 18px;
    font-weight: 500;
}
.user-box {
    display: flex;
    padding: 10px 0px 10px 0px;
}
.user {
    margin: 0 4px 0 0;
}
.submit button {
    width: 100%;
    padding: 6px 0px;
    border: none;
    background: #800000;
    color: #FFF;
    font-size: 20px;
    border-radius: 6px;
    font-weight: 600;
}
.comment-b h3 {
    font-size: 26px;
    padding: 1px 5px 16px 5px;
    font-weight: 600;
}

.comment-box {
    background: #EEF3FA;
    padding: 40px 60px;
}

/*blog-detail-end*/
/*donate-detail*/
.pure-water img {
    width: 100%;
}
.pure-water{
    padding: 0 0 40px 0;
}
.dollor p {
    font-size: 30px;
    font-weight: 500;
}
.dollor span {
    color: #800000;
}
.dollor {
    padding: 0 0 20px 0;
}
.progress-bar {
    background: #800000;
}
.donate-detail {
   padding: 70px 0;
}
.donate-now-btn a {
    padding: 10px 10px;
    color: #FFF;
    border-radius: 8px;
    background: #800000;
    font-size: 16px;
    font-weight: 600;
        box-shadow: 0 0 4px 1px #999494
}
.donate-now-btn {
    padding: 40px 0;
}
.miguel {
    display: flex;
    padding: 20px 0;
}
.miguel-content {
    padding: 0 12px;
}
.miguel-content p {
    font-size: 17px;
    font-weight: 600;
}
.miguel-content span {
    font-size: 14px;
    font-weight: 700;
    color: grey;
}

.donator {
    background: #EEF3FA;
    padding: 25px 50px;
}
.pure-water-txt h3 {
    font-size: 28px;
    font-weight: 700;
}
.pure-water-txt1 p {
    font-size: 15px;
}

/*donate-detail-end*/