:root {
    /*--p-color: #01b1d7;*/
    /*--p-color: #007bff;*/
    --p-color: #164176;
    /*--s-color: #fa9b3d; warning*/
    /*--s-color: #da5455; pink red*/
    /*--s-color: #dc3545;*/
    --s-color: #f26a3b;
    --f-color: #323f76;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body, table {
    /*for english font*/
    /*font-family: "Open Sans", sans-serif;*/
    /*for gujarati font*/
    font-family: 'Baloo Bhai 2', cursive;
    font-size: 18px;
    color: var(--f-color) !important;
}

main {
    min-height: 70vh;
}

.bg-black {
    background: black !important;
}

.btn-primary, .bg-primary, .badge-primary, .card-primary {
    background: var(--p-color) !important;
    border-color: var(--p-color) !important;
}

.btn-warning, .bg-warning, .badge-warning, .card-warning {
    background: var(--s-color) !important;
    border-color: var(--s-color) !important;
    color: white !important;
}

    .btn-warning:hover {
        background: white !important;
        color: var(--s-color) !important;
    }

.text-primary {
    color: var(--p-color) !important;
}

.text-secondary {
    color: var(--s-color) !important;
}


a {
    color: var(--p-color);
}

    a:hover {
        color: #0dd3fe;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    /*for english font*/
    /*font-family: "Raleway", sans-serif;*/
    /*for gujarati font*/
    font-family: 'Baloo Bhai 2', cursive;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 40px;
    z-index: 99999;
}

    .back-to-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        background: var(--p-color);
        color: #fff;
        transition: all 0.4s;
    }

        .back-to-top i:hover {
            background: #03d1fe;
            color: #fff;
        }

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    background: #ececec;
    background: #000000;
    color: white;
}

    #topbar .contact-info a {
        line-height: 1;
        color: white;
        transition: 0.3s;
    }

        #topbar .contact-info a:hover {
            /*color: var(--p-color);*/
        }

    #topbar .contact-info i {
        color: white;
        padding: 4px;
    }

    #topbar .contact-info .phone-icon {
        padding-left: 20px;
        margin-left: 20px;
        border-left: 1px solid #e9e9e9;
    }

    #topbar .social-links a {
        /*color: var(--p-color);
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
  border-left: 1px solid #e9e9e9;*/
    }

        #topbar .social-links a:hover {
            color: var(--p-color);
        }

        #topbar .social-links a:first-child {
            border-left: 0;
        }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: var(--s-color);
    box-shadow: 0 0 10px #eaeaea;
}

    #header.header-scrolled {
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    }

    #header .logo h1 {
        font-size: 28px;
        margin: 0;
        line-height: 1;
        /*font-weight: 700;
        letter-spacing: 1px;*/
    }

        #header .logo h1 a, #header .logo h1 a:hover {
            color: var(--p-color);
            text-decoration: none;
        }

            #header .logo h1 a span, #header .logo h1 a:hover span {
                color: var(--s-color);
            }

    #header .logo img {
        padding: 0;
        margin: 0;
        /*max-height: 40px;*/
    }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
        float: left;
        padding: 0px 4px;
    }

    /*.nav-menu a {
        display: block;
        position: relative;
        color: white !important;
        padding: 10px 15px;
        transition: 0.3s;
        /*font-size: 14px;
  text-transform: uppercase;*/
    /*for english font*/
    /*font-family: "Poppins", sans-serif;
        font-weight: 500;
        /*for gujarati font*
        font-family: 'Baloo Bhai 2', cursive;
        font-size: 18px;
    }*/
    .nav-menu a {
        display: block;
        position: relative;
        color: white !important;
        padding: 10px 6px;
        transition: 0.3s;
        /* font-family: "Poppins", sans-serif; */
        font-weight: 500;
        font-family: 'Baloo Bhai 2', cursive;
        font-size: 17px;
    }

        .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
            color: var(--s-color) !important;
            background: white;
            text-decoration: none;
            /*box-shadow: 0 0 12px #bfbfbf;*/
            border-radius: 6px;
        }

    .nav-menu .drop-down ul {
        display: block;
        position: absolute;
        left: 8px;
        top: calc(100% - 30px);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        padding: 10px 0;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: ease all 0.3s;
        border-radius: 8px;
    }

    .nav-menu .drop-down:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .nav-menu .drop-down li {
        min-width: 180px;
        position: relative;
    }

    .nav-menu .drop-down ul a {
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 500;
        text-transform: none;
        color: var(--f-color) !important;
    }

        .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
            color: var(--p-color);
        }

    .nav-menu .drop-down > a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 5px;
    }

    .nav-menu .drop-down .drop-down ul {
        top: 0;
        left: calc(100% - 30px);
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
    }

    .nav-menu .drop-down .drop-down > a {
        padding-right: 35px;
    }

        .nav-menu .drop-down .drop-down > a:after {
            content: "\eaa0";
            font-family: IcoFont;
            position: absolute;
            right: 15px;
        }

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 80px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

    .mobile-nav-toggle i {
        color: var(--f-color) !important;
    }

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
    z-index: 1111111;
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: var(--f-color) !important;
        padding: 10px 20px;
        font-weight: 500;
        outline: none;
    }

        .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
            color: var(--p-color);
            text-decoration: none;
        }

    .mobile-nav .drop-down > a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        content: "\eaa1";
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 20px;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(31, 38, 39, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #fff;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    /*height: 70vh;*/
    background-color: rgba(31, 38, 39, 0.8);
    overflow: hidden;
    position: relative;
    padding: 0;
}

    #hero .slider-water-panel {
        position: absolute;
        bottom: 40px;
        z-index: 11;
        right: 0;
        left: 0;
        /*background: rgb(0 0 0 / 58%);*/
        background: rgb(255 255 255 / 58%);
        display: flex;
        justify-content: center;
    }

    #hero .carousel-item {
        width: 100%;
        height: 90vh;
        background-size: 100%;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
    }

        #hero .carousel-item::before {
            content: '';
            background-color: rgba(0, 0, 0, 0.1);
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
        }

    #hero .carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .carousel-content {
        text-align: center;
    }

    #hero h2 {
        color: #fff;
        margin-bottom: 30px;
        font-size: 48px;
        font-weight: 700;
    }

    #hero p {
        width: 80%;
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        margin: 0 auto 30px auto;
        color: #fff;
    }

    #hero .carousel-inner .carousel-item {
        transition-property: opacity;
        /*background-position: center top;*/
    }

    #hero .carousel-inner .carousel-item,
    #hero .carousel-inner .active.carousel-item-left,
    #hero .carousel-inner .active.carousel-item-right {
        opacity: 0;
    }

    #hero .carousel-inner .active,
    #hero .carousel-inner .carousel-item-next.carousel-item-left,
    #hero .carousel-inner .carousel-item-prev.carousel-item-right {
        opacity: 1;
        transition: 0.5s;
    }

        #hero .carousel-inner .carousel-item-next,
        #hero .carousel-inner .carousel-item-prev,
        #hero .carousel-inner .active.carousel-item-left,
        #hero .carousel-inner .active.carousel-item-right {
            left: 0;
            transform: translate3d(0, 0, 0);
        }

    #hero .carousel-control-prev, #hero .carousel-control-next {
        width: 10%;
    }

    #hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
        background: none;
        font-size: 48px;
        line-height: 1;
        width: auto;
        height: auto;
    }

    #hero .carousel-indicators li {
        cursor: pointer;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0 4px;
        transition: ease-in;
        opacity: .7;
    }

        #hero .carousel-indicators li.active {
            opacity: 1;
            background-color: var(--p-color);
        }

    #hero .btn-get-started {
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 32px;
        border-radius: 5px;
        transition: 0.5s;
        line-height: 1;
        margin: 10px;
        color: #fff;
        background: var(--p-color);
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }

        #hero .btn-get-started:hover {
            background: #019cbe;
        }

@media (max-width: 768px) {

    .section-title.bg-black h2 div {
        width: 74%;
    }

    #topbar .contact-info i {
        font-size: 10px !important;
    }

    footer table tr td {
        display: flex;
        flex-direction: column;
    }

    .donate-btn-home {
        /*right: auto !important;*/
        top: -50px !important;
    }

    .donate-form .form-group label {
        text-align: left !important;
    }

    .bank-detail {
        position: relative !important;
        width: 92% !important;
        margin-left: 8%;
    }

    #hero {
        height: auto;
    }

        #hero .carousel-item {
            /*height: 29vh;
        background-size: 100%;*/
            height: 50vh;
            background-size: cover;
        }

        #hero h2 {
            font-size: 28px;
        }

    .slider-water-panel img {
        height: 24px;
    }

    #header .logo img {
        max-width: 50px;
    }

    #hero .carousel-container {
        left: 12px !important;
        top: 56px !important;
    }

        #hero .carousel-container .btn-black {
            padding: 2px 6px !important;
            font-size: 10px;
        }

    .photo-gallery-overlay {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 11;
        background: transparent;
    }
}

@media (max-width: 992px) {
    #header {
        background: white;
        border-bottom: solid 1px;
    }

        #header .logo img {
            max-width: 50px;
        }

    .section-title h2 + .title-border {
        margin-top: 10px !important;
    }

    .text-left-small {
        text-align: left !important;
    }
    /*.section-title.bg-black{
        margin-bottom:0 !important;
    }*/
    .section-img-bg .sec-img {
        /*height: 50% !important;*/
        width: 100%;
    }
}

@media (min-width: 1024px) {
    #hero p {
        width: 60%;
    }

    #hero .carousel-control-prev, #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    /*#hero {
    height: 150vh;
  }
  #hero .carousel-item {
    height: 150vh;
  }*/
}

@media (min-width: 993px) and (max-width: 1200px) {
    #hero .carousel-item {
        height: 50vh;
    }
}

@media (min-width: 993px) and (max-width: 1110px) {
    /*.nav-menu > ul > li {
        padding: 0px 6px;
    }*/

    .nav-menu a {
        padding: 10px 2px;
        font-size: 11px;
    }

    #header-sticky-wrapper .container-fluid {
        padding-right: 0px;
    }

    /*.logo2 {
        left: 1% !important;
    }*/
}

@media (min-width: 1111px) and (max-width: 1280px) {
    .nav-menu a {
        padding: 10px 4px;
        font-size: 13px;
    }

    #header-sticky-wrapper .container-fluid {
        padding-right: 0px;
    }

    /*.logo2 {
        left: 1% !important;
    }*/
}

@media (min-width: 1281px) and (max-width: 1350px) {
    .nav-menu a {
        padding: 10px 6px;
        font-size: 14px;
    }

    #header-sticky-wrapper .container-fluid {
        padding-right: 0px;
    }

    /*.logo2 {
        left: 1% !important;
    }*/
}

@media (min-width: 1351px) and (max-width: 1550px) {
    .nav-menu a {
        padding: 10px 4px;
        font-size: 16px;
    }

    .nav-menu > ul > li {
        padding: 0px 4px;
    }

    #header-sticky-wrapper .container-fluid {
        padding-right: 0px;
    }

    /*.logo2 {
        left: 1% !important;
    }*/
}




/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
}

.section-bg {
    /*background-color: #f2fdff;*/
    background-color: #f3f5f5;
}

.section-title {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        /*text-transform: uppercase;*/
        margin-bottom: 20px;
        padding-bottom: 0;
        /*color: #354144;*/
        position: relative;
        z-index: 2;
    }

        .section-title h2 + .title-border {
            display: block;
            height: 4px;
            background: var(--s-color);
            width: 6%;
            margin: auto;
            margin-top: 18px;
        }

    .section-title span {
        position: absolute;
        top: 30px;
        color: #f3f5f5;
        left: 0;
        right: 0;
        z-index: 1;
        font-weight: 700;
        font-size: 52px;
        text-transform: uppercase;
        line-height: 0;
    }

    .section-title p {
        margin-bottom: 0;
        position: relative;
        z-index: 2;
    }

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .section-title span {
        font-size: 38px;
    }

    #hero .carousel-container {
        left: 12px !important;
        top: 36px !important;
    }

        #hero .carousel-container .btn-black {
            padding: 2px 6px !important;
            font-size: 10px;
        }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about .content h3 {
    font-weight: 500;
    line-height: 32px;
    font-size: 24px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding: 10px 0 0 28px;
        position: relative;
    }

    .about .content ul i {
        left: 0;
        top: 7px;
        position: absolute;
        font-size: 20px;
        color: var(--p-color);
    }

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# About List
--------------------------------------------------------------*/
.about-list {
    padding-top: 0;
}

    .about-list .icon-box h4 {
        font-size: 20px;
        font-weight: 700;
        margin: 5px 0 10px 60px;
    }

    .about-list .icon-box i {
        font-size: 48px;
        float: left;
        color: var(--p-color);
    }

    .about-list .icon-box p {
        font-size: 15px;
        color: #848484;
        margin-left: 60px;
    }

    .about-list .image {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 400px;
    }

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    background: url("../img/counts-bg.jpg") center center no-repeat;
    background-size: cover;
    padding: 80px 0 60px 0;
    position: relative;
}

    .counts::before {
        content: "";
        position: absolute;
        background: rgba(0, 0, 0, 0.7);
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .counts .title {
        position: relative;
        color: #fff;
        margin-bottom: 40px;
    }

        .counts .title h3 {
            font-size: 36px;
            font-weight: 700;
        }

    .counts .counters span {
        font-size: 48px;
        display: block;
        color: var(--p-color);
    }

    .counts .counters p {
        padding: 0;
        margin: 0 0 20px 0;
        font-size: 14px;
        color: #fff;
    }

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
    /*margin-bottom: 20px;*/
    padding: 20px;
    border-radius: 6px;
    background: #fff;
    height: 100%;
    transition: .4s all;
    overflow: hidden;
    position: relative;
}

    .services .icon-box .card {
        height: 100%;
    }

    /*.services .icon-box .card-body {
        display: none;
    }*/


    .services .icon-box .card-body {
        /*display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        opacity: 0;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        transition: 0.3s;
        text-align: center;
        background: rgb(0 0 0 / 70%);*/
        background: var(--s-color);
    }


    .services .icon-box:hover .card-body {
        opacity: 1;
        /*padding-bottom: 0;*/
    }

    .services .icon-box img {
        transition: .3s all;
    }

    .services .icon-box .card-body h4 {
        color: white;
    }



.icon-box:hover {
    transform: scale(0.95);
    box-shadow: 0 0 20px #a9a9a9;
    border-radius: 30px;
}

.services .icon-box i {
    float: left;
    color: var(--p-color);
    font-size: 40px;
}

.services .icon-box h4 {
    margin-left: 60px;
    font-weight: 700;
    /*margin-bottom: 15px;*/
    font-size: 18px;
    margin-bottom: 0;
}

    .services .icon-box h4 a {
        color: var(--f-color) !important;
        transition: 0.3s;
    }

.services .icon-box:hover h4 a {
    color: var(--p-color);
}

.services .icon-box p {
    margin-left: 60px;
    line-height: 24px;
    font-size: 18px;
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
    display: none;
}

    .services .icon-box p + div {
        display: none;
    }

.services img {
    height: 230px;
    width: 100%;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 0 35px 0;
    list-style: none;
    text-align: center;
}

    .portfolio #portfolio-flters li {
        cursor: pointer;
        margin: 0 15px 15px 0;
        display: inline-block;
        padding: 10px 20px;
        font-size: 12px;
        line-height: 20px;
        color: var(--f-color) !important;
        border-radius: 4px;
        text-transform: uppercase;
        background: #fff;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
    }

        .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
            background: var(--p-color);
            color: #fff;
        }

        .portfolio #portfolio-flters li:last-child {
            margin-right: 0;
        }

.portfolio .portfolio-wrap {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

    .portfolio .portfolio-wrap img {
        transition: 0.3s;
    }

    .portfolio .portfolio-wrap .portfolio-info {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        opacity: 0;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        transition: 0.3s;
        text-align: center;
        background: rgba(53, 65, 68, 0.6);
        padding-bottom: 30px;
    }

        .portfolio .portfolio-wrap .portfolio-info h4 {
            font-size: 20px;
            color: #fff;
            font-weight: 600;
        }

        .portfolio .portfolio-wrap .portfolio-info p {
            color: #fff;
            font-size: 14px;
            text-transform: uppercase;
        }

        .portfolio .portfolio-wrap .portfolio-info .portfolio-links {
            display: flex;
        }

            .portfolio .portfolio-wrap .portfolio-info .portfolio-links a {
                color: var(--p-color);
                margin: 0 4px;
                background-color: #fff;
                border-radius: 50px;
                width: 36px;
                height: 36px;
                transition: 0.3s;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .portfolio .portfolio-wrap .portfolio-info .portfolio-links a i {
                    font-size: 18px;
                    line-height: 0;
                }

                .portfolio .portfolio-wrap .portfolio-info .portfolio-links a:hover {
                    background: var(--p-color);
                    color: #fff;
                }

    .portfolio .portfolio-wrap:hover {
        box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
    }

        .portfolio .portfolio-wrap:hover .portfolio-info {
            opacity: 1;
            padding-bottom: 0;
        }

        .portfolio .portfolio-wrap:hover img {
            transform: scale(1.1);
        }

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    background: #fff;
}

    .team .member {
        position: relative;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        padding: 30px;
        border-radius: 10px;
    }

        .team .member .pic {
            overflow: hidden;
            width: 180px;
            border-radius: 50%;
        }

            .team .member .pic img {
                transition: ease-in-out 0.3s;
            }

        .team .member:hover img {
            transform: scale(1.1);
        }

        .team .member .member-info {
            padding-left: 30px;
        }

        .team .member h4 {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 20px;
            color: var(--f-color) !important;
        }

        .team .member span {
            display: block;
            font-size: 15px;
            padding-bottom: 10px;
            position: relative;
            font-weight: 500;
        }

            .team .member span::after {
                content: '';
                position: absolute;
                display: block;
                width: 50px;
                height: 1px;
                background: #b4c1c4;
                bottom: 0;
                left: 0;
            }

        .team .member p {
            margin: 10px 0 0 0;
            font-size: 14px;
        }

        .team .member .social {
            margin-top: 12px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

            .team .member .social a {
                transition: ease-in-out 0.3s;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50px;
                width: 32px;
                height: 32px;
                background: #c2cdcf;
            }

                .team .member .social a i {
                    color: #fff;
                    font-size: 16px;
                    margin: 0 2px;
                }

                .team .member .social a:hover {
                    background: var(--p-color);
                }

                .team .member .social a + a {
                    margin-left: 8px;
                }

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: url("../img/testimonials-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

    .testimonials::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(8, 10, 11, 0.7);
    }

    .testimonials .section-header {
        margin-bottom: 40px;
    }

    .testimonials .testimonial-item {
        text-align: center;
        color: #fff;
    }

        .testimonials .testimonial-item .testimonial-img {
            width: 100px;
            border-radius: 50%;
            border: 6px solid rgba(255, 255, 255, 0.15);
            margin: 0 auto;
        }

        .testimonials .testimonial-item h3 {
            font-size: 20px;
            font-weight: bold;
            margin: 10px 0 5px 0;
            color: #fff;
        }

        .testimonials .testimonial-item h4 {
            font-size: 14px;
            color: #ddd;
            margin: 0 0 15px 0;
        }

        .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
            color: rgba(255, 255, 255, 0.4);
            font-size: 26px;
        }

        .testimonials .testimonial-item .quote-icon-left {
            display: inline-block;
            left: -5px;
            position: relative;
        }

        .testimonials .testimonial-item .quote-icon-right {
            display: inline-block;
            right: -5px;
            position: relative;
            top: 10px;
        }

        .testimonials .testimonial-item p {
            font-style: italic;
            margin: 0 auto 15px auto;
            color: #eee;
        }

    .testimonials .owl-nav, .testimonials .owl-dots {
        margin-top: 5px;
        text-align: center;
    }

    .testimonials .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.4) !important;
    }

        .testimonials .owl-dot.active {
            background-color: var(--p-color) !important;
        }

@media (min-width: 1024px) {
    .testimonials {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .media .bg-warning {
    background: white !important;
    color: var(--s-color) !important;
    border-bottom: solid 1px #ccc !important;
    font-weight: 600;
}

.contact .media {
    transition: all .4s;
}

    .contact .media:hover {
        transform: scale(1.05);
    }

.contact .info-wrap {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.contact .info {
    background: #fff;
}

    .contact .info i {
        font-size: 24px;
        color: var(--p-color);
        float: left;
        width: 48px;
        height: 48px;
        background: #e2faff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

    .contact .info h4 {
        padding: 0 0 0 60px;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--f-color) !important;
    }

    .contact .info p {
        padding: 0 0 0 60px;
        margin-bottom: 0;
        font-size: 14px;
        color: #62787d;
    }

    .contact .info:hover i {
        background: var(--p-color);
        color: #fff;
    }

.contact .email-form {
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
    padding: 30px;
    background: #fff;
}

    .contact .email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .contact .email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
    }

        .contact .email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .contact .email-form input, .contact .email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
    }

    .contact .email-form input {
        height: 44px;
        padding-left: 12px;
    }

    .contact .email-form textarea {
        padding: 10px 12px;
    }

    .contact .email-form button {
        background: var(--p-color);
        border: 0;
        padding: 10px 24px;
        color: #fff;
        transition: 0.4s;
        border-radius: 4px;
    }

        .contact .email-form button:hover {
            background: #0dd3fe;
        }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f6f7f8;
    min-height: 40px;
}

    .breadcrumbs h2 {
        font-size: 24px;
        font-weight: 400;
    }

    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .breadcrumbs ol li + li::before {
                display: inline-block;
                padding-right: 10px;
                color: #4b5c61;
                content: "/";
            }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

    .portfolio-details .portfolio-details-container {
        position: relative;
    }

    .portfolio-details .portfolio-details-carousel {
        position: relative;
        z-index: 1;
    }

        .portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
            margin-top: 5px;
            text-align: left;
        }

        .portfolio-details .portfolio-details-carousel .owl-dot {
            display: inline-block;
            margin: 0 10px 0 0;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd !important;
        }

            .portfolio-details .portfolio-details-carousel .owl-dot.active {
                background-color: var(--p-color) !important;
            }

    .portfolio-details .portfolio-info {
        padding: 30px;
        position: absolute;
        right: 0;
        bottom: -70px;
        background: #fff;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 50px;
    }

        .portfolio-details .portfolio-description h2 {
            width: 50%;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0 0 0 0;
        }

@media (max-width: 768px) {
    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    /*background: #1f2627;*/
    background: /*url(../../assets/img/footer.png)*/ black;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0 0 30px 0;
    color: #fff;
}

    #footer .footer-top {
        /*background: #2a3336;*/
        border-bottom: 1px solid var(--f-color) !important;
        padding: 60px 0 30px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 24px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
            }

            #footer .footer-top .footer-info p {
                /*font-size: 14px;*/
                line-height: 24px;
                margin-bottom: 0;
                color: #fff;
            }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: var(--s-color);
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: var(--p-color);
                color: #fff;
                text-decoration: none;
            }

        #footer .footer-top h4 {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: var(--s-color);
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #fff;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: #27d8fe;
                    }

        #footer .footer-top .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 4px;
        }

            #footer .footer-top .footer-newsletter form input[type="email"] {
                border: 0;
                padding: 4px;
                width: calc(100% - 110px);
            }

            #footer .footer-top .footer-newsletter form input[type="submit"] {
                position: absolute;
                top: 0;
                right: -2px;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                background: var(--p-color);
                color: #fff;
                transition: 0.3s;
                border-radius: 0 5px 5px 0;
            }

                #footer .footer-top .footer-newsletter form input[type="submit"]:hover {
                    background: #0187a4;
                }

    #footer .copyright {
        text-align: center;
        padding-top: 30px;
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: #fff;
    }

fieldset {
    border: solid 1px #ccc;
}

legend {
    /*font-size: 14px;*/
    font-weight: 600;
    padding: 0 8px;
}

.form-group label {
    /*font-size: small;*/
}

.form-control {
    border-radius: 0;
    height: 38px;
    padding: 4px 10px;
    /*font-size: small;*/
    background: #fbfbfb;
}

    .form-control:focus, .form-control:hover {
        background-color: #f0f8ff;
        box-shadow: 0 0 2px var(--p-color);
    }

.form-group i {
    color: var(--p-color);
}

.carousel-item {
    background-size: cover;
}

/*form minister slider section
.owl-carousel .owl-item img {
    display: table;
    width: auto;
    max-width: 80px;
    margin: 0 auto;
}*/
.mini-text-wrap {
    margin-top: 15px;
    text-align: center;
}

    .mini-text-wrap > h5 {
        color: #0c0c0c;
        font-size: 14px;
        margin: 0px;
        line-height: 24px;
        font-weight: bold;
        height: 50px;
    }

    .mini-text-wrap > p {
        color: #8e8282;
        margin-bottom: 10px !important;
        line-height: normal;
        font-size: 13px;
    }

.footer-info .footer-logo {
    filter: brightness(0) invert(1);
}

.btn-primary {
    transition: .3s all;
}

    .btn-primary:hover {
        transform: scale(1.1)
    }

.bootstrap-datetimepicker-widget table th, .bootstrap-datetimepicker-widget table td.day {
    height: 30px;
    line-height: 30px;
    width: 30px;
    font-size: 13px;
}

.bootstrap-datetimepicker-widget table td span {
    font-size: 13px;
}

.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {
    background-color: var(--p-color);
}

/*.table {
    font-size: 14px;
}*/

.minister-img2 .media img {
    height: 130px;
    width: 140px;
}

.faq .card {
    margin-bottom: 20px;
    border: none;
    /*box-shadow: 0 0 4px grey;*/
    /*color: gray;*/
    border-radius: 0;
    font-weight: 600;
}

    /*.faq .card-body {
    font-size: 14px;
    color: black;
    letter-spacing: 1px;
}*/

    .faq .card .card-header {
        padding: 0;
        background-color: white;
        /*padding-left: 8px;*/
    }

        .faq .card .card-header button:not(.collapsed) {
            background: var(--s-color);
            color: white;
        }

        .faq .card .card-header button {
            width: 100%;
            text-align: left;
            font-weight: 500;
            padding: 16px;
            color: var(--s-color);
            padding-right: 48px;
            border-radius: 0;
            display: flex;
            align-items: center;
            font-size: inherit;
        }

            .faq .card .card-header button:hover {
                text-decoration: none;
                color: white;
                border-radius: 0;
            }

            .faq .card .card-header button:focus {
                box-shadow: none;
            }

            .faq .card .card-header button:after {
                /*content: "\f107";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    float: right;*/
                float: right;
                content: "\ea99";
                position: absolute;
                right: 15px;
                speak: none;
                font-style: normal;
                font-weight: normal;
                font-variant: normal;
                text-transform: none;
                white-space: nowrap;
                overflow-wrap: normal;
                direction: ltr;
                line-height: 1;
                font-feature-settings: "liga";
                -webkit-font-smoothing: antialiased;
                font-family: IcoFont !important;
                font-size: 20px;
            }

            .faq .card .card-header button.collapsed:after {
                /*content: "\f106";*/
                content: "\eaa1";
            }

        /*.faq .card .card-header button::before {
        content: "Q";
    position: absolute;
    background: #ffffff;
    color: var(--p-color);
    font-weight: bold;
    text-align: center;
    border-radius: 4px 0 0 4px;
    top: 0px;
    left: 0;
    padding: 17px 14px;
    font-size: 16px;
}
    .faq .card .card-header button.collapsed:before {
        background: black;
        color: #ffffff;
    }*/

        .faq .card .card-header:hover {
            background: var(--s-color);
        }

.portfolio-details .card-header {
    background-color: #d4e9ff;
}

.dashboard .card img {
    height: 300px;
    width: 100%;
}

.dashboard .icon-box {
    margin-bottom: 20px;
    transition: .5s all;
}

    .dashboard .icon-box h4 {
        font-size: 18px;
        font-weight: bold;
    }

#topbar i {
    border: solid 1px white !important;
    border-radius: 6px;
    margin-right: 6px !important;
    padding: 3px !important;
    transition: 0.3s;
    color: white;
}

    #topbar i:hover {
        background: var(--p-color);
        color: white;
    }

.text-danger {
    color: #f12438 !important;
}

.wapp-icon {
    display: none;
    position: fixed;
    right: 16px;
    bottom: 100px;
    z-index: 111111;
    height: 40px;
    width: 40px;
    background: linear-gradient( 45deg, #4caf50, #7ae200);
    line-height: 45px;
    text-align: center;
    border-radius: 10px;
}

    .wapp-icon i {
        color: white;
        font-size: 24px;
    }

.btn-link.focus, .btn-link:focus {
    text-decoration: none;
}

.notes {
    background: var(--s-color);
    color: white;
    font-size: 12px;
    padding: 10px;
    margin-top: 16px;
}

    .notes ul li {
        background-color: transparent;
        padding: 2px;
    }

.accordion-form .card {
    margin-bottom: 16px;
    border-radius: 0;
}

.accordion-form .card-header {
    padding: 0px;
    background-color: #b4d0f3;
    border-radius: 0;
}

    .accordion-form .card-header h5 button {
        width: 100%;
        color: var(--p-color);
        font-weight: bold;
        text-align: left;
        position: relative;
        padding-left: 28px;
    }

        .accordion-form .card-header h5 button span {
            position: absolute;
            background: var(--p-color);
            left: -20px;
            top: -2px;
            bottom: 0;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
        }

.btn-link:hover {
    text-decoration: none;
}

.btn.focus, .btn:focus {
    box-shadow: none;
}

.accordion-form .card-header h5 button:after {
    float: right;
    content: "\eaa1";
    position: absolute;
    right: 15px;
    font-style: normal;
    font-weight: normal;
    overflow-wrap: normal;
    line-height: 1;
    font-family: IcoFont !important;
    font-size: 20px;
}

.accordion-form .card-header h5 button.collapsed:after {
    /*content: "\f106";*/
    /*content: "\efc0";*/
    content: "\ea99";
}



.nav-pills-custom .nav-link {
    /*box-shadow: 0 0 10px #bdbdbd;*/
    background: #fff;
    position: relative;
    margin-bottom: 16px;
    padding: 16px 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: gray;
    background: white;
}

    .nav-pills-custom .nav-link.active {
        color: #45b649;
        background: #fff;
        font-weight: bold;
    }

    .nav-pills-custom .nav-link span {
        background: var(--p-color);
        display: inline-block;
        color: white;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        text-align: center;
        line-height: 24px;
        float: right;
    }

/* Add indicator arrow for the active tab */
@media (min-width: 992px) {
    .nav-pills-custom .nav-link::before {
        content: '';
        display: block;
        border-top: 8px solid transparent;
        border-left: 10px solid white;
        border-bottom: 8px solid transparent;
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
        opacity: 0;
    }

    .logo2 {
        position: absolute;
        z-index: 11;
        background: white;
        padding: 10px;
        top: -8px;
        box-shadow: 0 1px 6px 0 rgb(0 0 0 / 16%);
        /*left: 3%*/
    }

        .logo2 img {
            /*width: 130px;*/
            width: 110px;
        }
}

.nav-pills-custom .nav-link.active::before {
    opacity: 1;
}

.tab-form .tab-content {
    /*box-shadow: 0 0 10px #bdbdbd;*/
    border-radius: .25rem;
    background: white;
}

    .tab-form .tab-content .form-group label {
        text-transform: uppercase;
        font-weight: bold;
        color: gray;
    }

    .tab-form .tab-content .form-group .form-control {
        /*background: white;*/
        box-shadow: 0 0 10px #c3c3c3;
        /*border: none;*/
    }

.amount small {
    display: inline-block;
    width: 168px;
}


.pulse {
    animation: pulse 2s infinite;
}

    .pulse:hover {
        animation: none;
    }

@-webkit-keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}


/*#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 36%;
    left: 14%;
    right: auto;
}*/

/*#hero .carousel-content {
    background: #000000;
    padding: 6px;
    border: solid white 6px;
    border-style: dotted;
    padding-bottom: 12px;
}*/

#hero h2 {
    margin-bottom: 0;
}

.btn-black {
    /*background:black;
    color:white;
    border:solid var(--s-color);
    transition:.5s all;*/
    background: var(--s-color);
    color: white;
    border: solid white;
    transition: .5s all;
    text-transform: uppercase;
}

    .btn-black:hover {
        background: white;
        color: black;
        box-shadow: 0 0 10px black;
    }

/*.donor table td, .donor table th{
    vertical-align:middle;
}*/
.donor table h6 {
    margin-bottom: 0;
}

.donor2 th, .donor2 td {
    border-top: none;
}

.loader-container {
    position: fixed;
    background: rgba(0,0,0, .6);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 11111;
    display: none;
}

.loader-div {
    height: 100vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 11111;
}

    .loader-div img {
        -moz-animation: spinHorizontal 4s infinite linear;
        -o-animation: spinHorizontal 4s infinite linear;
        -webkit-animation: spinHorizontal 4s infinite linear;
        animation: spinHorizontal 4s infinite linear;
    }

@keyframes spinHorizontal {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.trustee p {
    margin-bottom: 0;
}

.font2 {
    font-family: 'Baloo Bhai 2', cursive;
    font-size: 18px;
}

.do-dont ul {
    list-style: none;
    padding: 0;
    border-radius: 16px;
}

    .do-dont ul li {
        display: flex;
        align-items: baseline;
        margin-bottom: 8px;
    }

        .do-dont ul li i {
            margin-right: 6px;
        }

/*#topbar {
    display: none !important;
}*/

.places-by ul {
    list-style: none;
    padding: 0;
}

    .places-by ul li {
        /*border-bottom: solid 1px #ccc;*/
        margin-bottom: 6px;
    }

.how-to-reach {
    background: url(/assets/img/map.jpg);
    background-size: cover;
}

/*loader*/
.loader-container {
    position: fixed;
    background: rgba(0,0,0, .6);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 11111;
    display: block;
}

.loader-div {
    height: 100vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 11111;
}

    .loader-div img {
        -moz-animation: spinHorizontal 4s infinite linear !important;
        -o-animation: spinHorizontal 4s infinite linear !important;
        -webkit-animation: spinHorizontal 4s infinite linear !important;
        animation: spinHorizontal 4s infinite linear !important;
    }

@keyframes spinHorizontal {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}
/*loader*/

/*form section right left center background image*/
.section-title.bg-black {
    background: #fff !important;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}

    .section-title.bg-black h2 {
        color: var(--f-color) !important;
    }


.section-img-bg {
    position: relative;
}

    .section-img-bg .sec-img {
        position: absolute;
        height: 100%;
        top: 0;
        bottom: 0;
        opacity: .2;
        max-width: 100%;
        z-index: -1;
    }

.opacity-02 {
    opacity: .2 !important;
}

.section-img-bg .i-right {
    right: 0;
}

.section-img-bg .i-left {
    left: 0;
}

.section-img-bg .i-center {
    left: 20%;
}
/*form section right left center background image*/

.w-35 {
    width: 40% !important;
}

.w-86 {
    width: 86% !important;
}

/*sou logo animation*/
.animate-spin {
    -moz-animation: spinHorizontal1 8s infinite linear;
    -o-animation: spinHorizontal1 8s infinite linear;
    -webkit-animation: spinHorizontal1 8s infinite linear;
    animation: spinHorizontal1 8s infinite linear;
}

@keyframes spinHorizontal1 {

    0% {
    }

    50% {
        transform: rotateY(180deg);
    }

    50%,100% {
        transform: rotateY(360deg);
    }
}
/*sou logo animation*/

.notes {
    background: #ffe8a1;
    color: black;
    font-size: 16px;
    padding: 20px;
    margin-top: 16px;
    border-radius: 10px;
    box-shadow: 0 0 10px #d7d7d7;
    line-height: 28px;
}

.blinker-ani {
    animation: blinker 3.0s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0
    }
}

.Premium-effects {
    position: relative;
    overflow: hidden;
    z-index: 0;
    /*OR
    position: relative;
    display: inline-flex!important;
    justify-content: center;
    align-items: center;
    height: 28px!important;
    line-height: 1!important;
    background-color: #ffa531;
    border-radius: 14px;
    text-align: center;
    min-width: 110px;
    padding: 0 6px;
    z-index: 0;
    overflow: hidden;*/
}

    .Premium-effects:after {
        position: absolute;
        top: 0;
        left: 0;
        transform: translateY(-100%);
        z-index: -1;
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        background-color: var(--p-color);
        border-radius: 50%;
        animation: Premium-effects 4s infinite;
    }

    .Premium-effects:after {
        content: "";
    }

@keyframes Premium-effects {
    0% {
        transform: translateY(-100%)
    }

    50% {
        transform: translateY(-40%)
    }

    75% {
        transform: translateY(25%)
    }

    100% {
        transform: translateY(50%)
    }
}

.donate-form .form-group label {
    text-align: right;
    padding-right: 0;
}

.donate-form .form-group .form-control {
    height: 34px;
}

.donate-form .form-group {
    align-items: center;
}

.donate-btn-home {
    position: absolute;
    right: 6px;
    top: 26px;
}

.donate-btn-homeheader {
    position: absolute;
    right: 6px;
}

.dos i {
    color: green;
}

.dont i {
    color: red;
}

.places .icon-box p {
    display: block;
    /*line-height: 1.2;*/
    margin-top: 6px;
    /*color: #9f9f9f;*/
}

.places .icon-box .card-body {
    background: white !important;
    border-radius: 30px;
}

    .places .icon-box .card-body h4 {
        color: var(--f-color);
    }

.places .icon-box, .places .icon-box .card {
    border-radius: 30px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}

.places .col-sm-6 {
    margin-bottom: 16px;
    padding-left: 0;
}


.do-dont .icofont-check-circled::before {
    content: "\eed7";
    color: white;
    background: green;
    border-radius: 50%;
    padding: 0px 1px;
}

.do-dont .icofont-close-circled::before {
    content: "\eedd";
    color: white;
    background: red;
    border-radius: 50%;
    padding: 0px 1px 0px 2px;
}

.places .icon-box p + div {
    display: block;
}

.places .icon-box:hover {
    transform: scale(1);
}

.places .icon-box .card img {
    height: 330px;
}
.bank-detail {
    position: absolute;
    right: 15px;
    width: 360px;
}

footer a {
    position: relative;
}

.back-btn {
    position: absolute;
    right: 15px;
    top: 2px;
    display: flex;
    align-items: center;
    font-size: 20px;
}

.limited-line {
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 6 !important;
    -webkit-box-orient: vertical !important;
}

.limited-line2 {
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 12 !important;
    -webkit-box-orient: vertical !important;
}

.mobile-button {
    top: 20px !important;
}

.container2 img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .sweet-alert {
        z-index: 11111 !important;
    }

        .sweet-alert .sa-icon {
            margin: auto;
        }

        .sweet-alert p p {
            margin-bottom: 4px;
        }

    .sweetalertConfirmation {
        height: 200px !important;
        overflow: auto !important;
        border: solid 1px #eaeaea !important;
        padding: 2px 10px 0px 22px !important;
        box-shadow: 0 0 6px #bebebe;
        border-radius: 6px;
    }
}

.prasad img {
    height: 90px;
    width: 90px;
}

.prasad p {
    font-size: 30px;
}

.prasad small {
    font-size: 16px;
}
