@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 400;
    line-height: 25px;
    font-family: 'montserrat-font';
    color: #555555;
    font-size: 14px;
}


/***** Font Files *****/

@font-face {
    font-family: 'amplesoft-font';
    src: url(../font/fonnts.com-AmpleSoftPro-Medium.ttf);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'montserrat-font';
    src: url(../font/Montserrat-Regular.ttf);
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 0px 0px;
    border: unset;
    border-radius: 0px;
    color: #ffffff;
    z-index: 1;
    background: #ffffff00;
    position: relative;
    font-size: 15px;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    font-family: 'montserrat-font';
    font-weight: 600;
    text-transform: uppercase;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 0px;
    background-color: #72d21900;
    z-index: -1;
    transition: all 250ms
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'amplesoft-font';
    font-size: 45px;
    line-height: 1.1;
    color: #000000;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'amplesoft-font';
    font-size: 75px;
    line-height: 1.1;
    color: #e6c652;
    font-weight: 500;
    margin: 0 0 8px;
}

h3 {
    font-family: 'amplesoft-font';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 6px;
}

h4 {
    font-family: 'amplesoft-font';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'amplesoft-font';
    font-size: 21px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 8px;
}

h6 {
    font-family: 'montserrat-font';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 0px 0;
    position: relative;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: start;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000000;
    padding: 10px 25px;
    font-size: 14px;
    font-family: 'montserrat-font';
    font-family: 'montserrat-font';
    font-weight: 600;
    text-transform: uppercase;
}

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

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #90a959;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 12px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 12px;
    line-height: 20px;
    background: #90a959;
    border: 1px solid #90a959;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #1b412b;
    color: #ffffff !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.banner_text p {
    color: #000000;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    /* background: rgba(0, 0, 0, 0.1); */
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */
/* Header Banner Css Start */

.container-fluid {
    padding: 0px 80px;
}

.dis-block {
    display: block;
}

.banner-img img {
    width: 100%;
    height: 90vh;
    margin: 0 auto;
    object-fit: cover;
    object-position: top;
}

.banner-img {
    width: 89.8%;
    margin: 0 auto;
}

.header-logo {
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 10px;
}

.theme-btn-sd {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
}

.theme-btn-sd-text {
    background: #1b412b;
    padding: 10px 24px 10px;
    border-radius: 6px;
}

.theme-btn-sd-img {
    background: #1b412b;
    padding: 8px 16px 8px;
    border-radius: 6px;
}

.theme_btn:hover .theme-btn-sd-text {
    background: #c7a672;
    color: #ffffff;
}

.theme_btn:hover .theme-btn-sd-img {
    background: #c7a672;
}

.banner_text {
    padding-left: 30px;
    background: #ffffff96;
    padding: 20px 30px;
    border-radius: 0px 10px 10px 0px;
    /*position: relative;*/
    /*left: 150px;*/
}

.theme-btn-color {
    background: #90a959;
}

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

.banner_text h5 {
    /* color: #fff; */
    font-size: 14px;
}

.banner_text p {
    line-height: 25px;
    width: 96%;
}

.banner-social {
    position: absolute;
    top: 19%;
    right: 0px;
    width: 73px;
}

section.main_slider {
    position: relative;
}

.menuSec:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    height: 100%;
    width: 82px;
    background: #90a959;
}

.banner-social ul li a i {
    height: 36px;
    width: 36px;
    border: 1px solid #8c8c8c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 14px;
    color: #878787;
}

.banner-social-heading h5 {
    transform: rotate(-91deg);
    margin-bottom: 0;
    line-height: unset;
    font-family: 'montserrat-font';
    font-size: 14px;
}


.banner-social-heading {
    padding-top: 220px;
    position: relative;
}

.banner-social ul li a {
    text-align: center;

}

.banner-social ul {
    margin-left: 19px;
}

.banner-social-heading:before {
    position: absolute;
    content: '';
    top: 0;
    right: 36px;
    height: 74%;
    width: 1px;
    background: #e6e6e6;
}

.banner-social ul li a i:hover {
    background: #1b412b;
    color: #fff;
}

section.main_slider:before {
    position: absolute;
    content: '';
    bottom: -88px;
    left: 0;
    height: 90px;
    width: 81px;
    background: #90a959;
}

section.main_slider:after {
    position: absolute;
    content: '';
    bottom: -88px;
    right: 0;
    height: 90px;
    width: 81px;
    background: #90a959;
}

/* Header Banner Css End */
/* About Css Start */

section.about-sec {
    margin: 100px 0px;
}

/* About Css End */

/*  Advocacy Sec Css Start */
.advocacy-top-heading {
    width: 40%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
}

section.advocacy-sec {
    margin-bottom: 100px;
    padding: 40px 0px 80px;
    background: #507731;
}

.advocacy-top-heading p {
    color: #fff;
}

.advocacy-box-text {
    text-align: center;
    background: #fff;
    padding: 20px 20px;
    width: 90%;
    margin: 0 auto;
    border-radius: 5px;
    margin-top: -20px;
    position: relative;
    z-index: 1;
}

.advocacy-box-text h3 {
    font-size: 26px;
}

.advocacy-box>img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.community-event-top-heading {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

/*  Advocacy Sec Css End */

/* Community Events Sec Css Start */

.community-event-img img {
    width: 94%;
}

.community-event-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0px 0px 12px 0px #00000030;
    padding: 40px 40px;
    border-radius: 6px;
    position: relative;
    top: 40px;
}

.community-event-box-date-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 57%;
    border: 1px solid #cdd7e4;
    padding: 7px 6px;
    gap: 20px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 30px;
}

.community-event-box-date-time p {
    margin-bottom: 0;
}

.community-event-box-date {
    display: flex;
    align-items: center;
    gap: 10px;
}

.community-event-box-date-time:before {
    position: absolute;
    content: '';
    top: 2px;
    left: 45%;
    height: 90%;
    width: 1px;
    background: #cdd7e4;
}

.community-event-box-date i {
    color: #90a959;
}

.community-event-box-date p {
    color: #000;
}

.community-event-box-text h5 {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.community-event-box-text {
    width: 66%;
}

.community-event-box-location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.community-event-box-location i {
    color: #90a959;
}

.community-event-box-location p {
    margin-bottom: 0;
}

.community-event-box:before {
    position: absolute;
    content: '';
    top: 20%;
    right: 27%;
    height: 63%;
    width: 1px;
    background: #e8edf2;
}

.community-event-box-img {
    text-align: center;
}

.community-btn {
    margin-bottom: 10px;
}

.pagination-ul ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    gap: 18px;
}



.pagination-ul ul li a {
    color: #81aa24;
    border: 1px solid #81aa24;
    padding: 14px 20px;
    font-size: 18px;
    border-radius: 8px;
    font-weight: 600;
}

.pagination-ul ul li a:hover {
    background: #507731;
    color: #fff;
}

.pagination-ul ul li.pagination-ul-icon a {
    border: unset;
}

section.community-event-sec {
    margin-bottom: 100px;
}

/* Community Events Sec Css End */


/* Support Mission Css End */
section.support-mission-sec {
    background-image: url(../images/support-mission-img-bg.png);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
    margin-bottom: 100px;
}

.donation-box-select {
    width: 100%;
    margin: 20px 0px 40px auto;
    font-family: 'amplesoft-font';
}

.donation-box-select .input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #bcd1b4;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.donation-box-select .currency {
    background: #4b6f3a;
    color: white;
    padding: 12px 20px;
    font-size: 24px;
    height: 100%;
    border-radius: 7px;
    border: 1px solid #000;
    font-family: 'montserrat-font';
}

.donation-box-select #amountInput {
    width: 100%;
    padding: 12px;
    border: none;
    outline: none;
    font-size: 20px;
    color: #4b6f3a;
    text-align: center;
    font-family: 'montserrat-font';
}

.donation-box-select .amount-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.donation-box-select .amount-btn {
    padding: 8px 14px;
    border-radius: 5px;
    border: unset;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    color: #a8a8a8;
    font-family: 'montserrat-font';
}

.donation-box-select .amount-btn.active {
    background: #4b6f3a;
    color: white;
    border: 1px solid #000;
}

.support-mission-box {
    background: #fff;
    padding: 20px 40px 30px;
    border-radius: 10px;
    text-align: center;
}

/* Support Mission Css Start */

/* client reviews start*/

.testimonial {
    margin-bottom: 80px;
}

.client_main {
    border-radius: 10px;
    padding: 50px 20px;
    text-align: center;
    border: 1px solid #ebebeb;
    position: relative;
    transition: all ease-in .3s;
}

.client_main:hover {
    background: #90a959;
}

.client_main h3,
.client_main h4,
.client_main p {
    transition: all ease-in .3s;
}

.client_main:hover h3,
.client_main:hover h4,
.client_main:hover p {
    color: #ffffff;
}

.client_quote {
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px 20px;
    border: 1px solid #fff;
    background: #507731;
    z-index: 1;
    border-radius: 5px;
}

.client_main h3 {
    font-size: 27px;
    margin-bottom: 10px;
    font-weight: 400;
    color: #171717;
}

.client_main h4 {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 400;
    color: #171717;
}

.client_avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.client_avatar img {
    height: 100px;
    width: 100px;
    object-fit: cover;
}

.client_slider .slick-slide {
    opacity: 1;
}

.client_heading {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
}

/* client reviews end*/

/* Blog Sec Start */


ul.blog-page-box-ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin: 10px 0px;
}

.blog-page-box {
    margin-bottom: 0px;
    position: relative;
}

.blog-page-box>img {
    width: 100%;
}

.blog-page-box-text {
    padding: 10px 30px 10px 10px;
    background: #fff;
    
}

.blog-page-box-text p {
    margin-bottom: 0;
}

ul.blog-page-box-ul li {
    text-transform: uppercase;
    font-family: 'montserrat-font';
    font-size: 15px;
}

section.blog-sec-page {
    margin-bottom: 100px;
}

ul.blog-page-box-ul li i {
    color: #90a959;
}

.blog-page-box h3 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 10px;
}

/* Blog Sec End */

/* footer */

.footerSec {
    background-color: #507731;
    padding-top: 40px;
    padding-bottom: 20px;
}

.contact_info h4,
.quick_links h4,
.service_links h4,
.newsletter h4 {
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 400;
}

.ftr_links p {
    margin-bottom: 25px;
    width: 90%;
    color: #a2a6a2;
}

.contact_info,
.ftr_links,
.quick_links,
.service_links,
.newsletter {
    margin-top: 20px;
}

.quick_links ul li,
.service_links ul li {
    margin-bottom: 15px;
}

.contact_info ul li {
    margin-bottom: 40px;
}

.quick_links ul li a,
.service_links ul li a {
    color: #a8bb98;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    font-family: "Montserrat", sans-serif;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 5px;
    font-weight: 400;
}

.contact_info ul li a {
    color: #a8bb98;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    font-family: "Montserrat", sans-serif;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 10px;
    font-weight: 400;
}

.newsletter p {
    margin-bottom: 20px;
    width: 100%;
    font-size: 14px;
    transition: color 0.3s;
    font-family: "Montserrat", sans-serif;
    color: #91aa7e;
}

.newsletter form input {
    width: 100%;
    height: 55px;
    background-color: transparent;
    border: 1px solid #a8bb98;
    border-radius: 5px;
    padding: 0 20px;
    color: #ffff;
    font-family: 'montserrat-font';
}

.newsletter form input::placeholder {
    color: #91aa7e;
}

.ftr_btm1 p {
    text-align: center;
    color: #8aa476;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
}

.ftr_btm {
    padding: 15px 0;
    background-color: #507731;
    border-top: 1px solid #628546;
}

.newsletter button {
    background-color: #90a959;
    margin-top: 12px;
    color: #fff;
    font-family: 'montserrat-font';
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    padding: 12px 50px;
    border-radius: 8px;
}

.social_links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
}

.social_links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: transparent;
    line-height: 35px;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    border-radius: 100%;
    margin-right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.ftr_logo {
    margin-bottom: 30px;
}

button.themebtn {
    border: none;
    margin-top: 30px;
    padding: 0;
}

.social_links a:hover {
    background-color: #ffffff;
    transform: scale(1.1);
    color: #628546;
}

.contact_info {
    padding-left: 40px;
}

/* footer */

/* Inner Banner Css Start */
.banner-img.innaer-banner {
    height: 520px;
}

.banner_text.inner-banner-text h1 {
    font-size: 80px;
}

/* Inner Banner Css End */
/* Advocacy Inner Css Start */
section.advocacy-sec.advocacy-inner {
    margin: 100px 0px;
    background: #fff;
    padding: unset;
}

.advocacy-top-heading.advocacy-inner-heading p {
    color: #000;
}


section.advocacy-sec.advocacy-inner .advocacy-box-text {
    box-shadow: 0px 0px 14px 0px #00000026;
    margin-bottom: 30px;
}

/* Advocacy Inner Css End */




.custom-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
    z-index: 1;
    position: absolute;
    bottom: 0;
    right: 90px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}

.slider-btn.prev {
    border: 1px solid #cfcfcf00;
    background-color: transparent;
    color: #cfcfcf00;
}

.slider-btn.next {
    border: 1px solid #cfcfcf00;
    background-color: transparent;
    color: #cfcfcf00;
}

.slider-btn.prev:hover {
    border: 1px solid #ab492e;
    background-color: #ab492e;
    color: #fff;
}

.slider-btn.next:hover {
    border: 1px solid #cfcfcf;
    background-color: #ab492e;
    color: #fff;
}

.current-slide {
    font-size: 40px;
    color: #ffffff;
    font-family: 'amplesoft-font';
}



.total-slide {
    color: #ffffff;
    font-size: 18px;
    font-family: 'amplesoft-font';
}

.event-box>img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}

.event-box {
    padding: 10px;
    box-shadow: 0px 0px 13px 0px #5077316e;
    border-radius: 10px;
}

section.event-sec {
    margin: 100px 0px;
}

.ongoing-events-ul ul li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 12px;
    font-family: 'amplesoft-font';
}

.ongoing-events-ul ul li:before {
    position: absolute;
    content: '';
    top: 10px;
    left: 0;
    height: 5px;
    width: 5px;
    background: #90a959;
    border-radius: 50%;
}

.ongoing-events-ul h2 {
    margin-bottom: 20px;
}

.event-btn-text {
    margin-top: 30px;
}

section.blog-sec-page.inner-page-blog {
    margin: 100px 0px;
}

.resources-detail-box img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: top;
}


/* InnerPage Contact Us start */

.contact-pag-form form {

    position: relative;

}

.contact-pag-form .form-group {

    position: relative;

}

.contact-pag-form .form-group::after {

    content: "";

    height: 53px;

    width: 10px;

    position: absolute;

    left: 40px;

    top: 5px;

    background-size: 10px 50px;

    background-image: url(../images/aroow-forward.png);

    background-repeat: no-repeat;

}

.contact-pag-form .form-group1::after {

    content: "";

    height: 53px;

    width: 10px;

    position: absolute;

    right: 40px;

    top: 5px;

    left: unset;

    transform: rotate(180deg);

    background-size: 10px 50px;

    background-image: url(../images/aroow-forward.png);

    background-repeat: no-repeat;

}

.contact-pag-form form input.form-control {

    height: 60px;

    font-size: 15px;

    padding-left: 15px;

    border: 1px solid #bdbdbd;

    line-height: 0;

    box-shadow: none;

    color: black;

    font-weight: 400;

    background-color: transparent;

    margin-top: 26px;

    display: flex;

    border-radius: 5px;

}

.contact-pag-form form select.form-control {

    height: 60px;

    font-size: 15px;

    padding-left: 25px;

    border: 1px solid #bdbdbd;

    box-shadow: none;

    color: black;

    font-weight: 400;

    background-color: transparent;

    margin-top: 20px;

    display: flex;

    border-radius: 5px;

}

.contact-pag-form .form-group:before {

    content: "";

    position: absolute;

    background-image: url(../images/contact-line.png);

    width: 8px;

    height: 47px;

    background-repeat: no-repeat;

    left: 40px;

    top: 5px;

}

.contact-pag-form .form-group:before {

    content: "";

    position: absolute;

    background-image: url(../images/contact-line.png);

    width: 50px;

    height: 50px;

}

.contact-pag-form form input.form-control::placeholder {

    color: #909091;

}

.contact-main-sec .them-btn-1:hover {

    background-color: #00006d;

    transition: 0.3s all;

}

.contact-pag-form form textarea.form-control {

    font-size: 15px;

    padding-left: 15px;

    padding-top: 20px;

    border: 1px solid #c6c6c6;

    letter-spacing: 0;

    box-shadow: none;

    resize: unset;

    background-color: transparent;

    margin-top: 20px;

    color: #000000;

    border-radius: inherit;

    border-radius: 6px;

    height: 150px;

    scroll-behavior: unset;

    position: relative;

}

.contact-pag-form .detailss {

    position: relative;

}

.contact-pag-form .detailss i {

    position: absolute;

    top: 20px;

    color: #7e7e7e;

    left: 13px;

    font-size: 20px;

}

.contact-pag-form .email {

    padding: 0;

}

.contact-pag-form h4 {

    font-size: 62px;

    line-height: 70px;

    font-weight: 500;

    text-transform: capitalize;

    color: #fff;

}

.contact-pag-form form textarea.form-control::placeholder {

    color: #909091;

}

.contact-pag-form ::-webkit-input-placeholder {

    /* Chrome/Opera/Safari */

    color: #909091;

}

.contact-pag-form ::-moz-placeholder {

    /* Firefox 19+ */

    color: rgba(18, 28, 42, 0.55);

}

.contact-pag-form :-ms-input-placeholder {

    /* IE 10+ */

    color: rgba(18, 28, 42, 0.55);

}

.contact-pag-form :-moz-placeholder {

    /* Firefox 18- */

    color: rgba(18, 28, 42, 0.55);

}

.cicle-icon i {

display: flex;

align-items: center;

justify-content: center;

font-size: 25px;

border: transparent;

height: 60px;

width: 60px;

border-radius: 50px;

color: #90a959;

background: #fff;

border: 1px solid #90a959;
}

.cicle-icon img {

    margin: 0 auto;

}

.contact-info {

background: #90a959;

width: 100%;

margin-bottom: 10px;

border: 1px solid #c6c6c6;

display: flex;

align-items: center;

justify-content: flex-start;

padding: 20px;

/* border-radius: 10px; */
}

.contact-main-sec h4 {

    font-size: 40px;

    color: #000000;

    font-weight: 400;

    line-height: 60px;

    /* font-family: 'AGENCYB'; */

    margin-bottom: 0px;

}

.contact-main-sec p span {

    display: block;

}

.contact-main-sec p {

    font-size: 16px;

    color: #fff;

    margin-bottom: 0;

    font-family: "Oswald";

    text-transform: capitalize;

}

.contact-main-sec h2 {

    margin: 0;

    font-size: 20px;

    color: #fff;

    /* font-family: 'Brunson'; */

    text-transform: uppercase;

    font-weight: 400;

    line-height: 34px;

}

.contact_text p {

font-size: 15px;

line-height: 25px;

color: #8b8b8b;

padding-top: 0px;

font-weight: 400;

letter-spacing: 1px;
}

.contact_text p a {

font-size: 12px;

color: #fff;

text-decoration: none;

transition: 0.5s ease-in-out;

display: block;

font-family: 'montserrat-font';
}

.mailt {

    padding-left: 30px;

}

.contact_text a:hover {

    color: #8b8b8b;

}

.contact_text p a.email-text:hover {

    color: #8b8b8b;

}

.contact-us {

    padding: 6% 0;

}

.contact-head {

    text-align: center;

}

.contact-head h2 {

    font-size: 50px;

    color: #000;

    text-transform: uppercase;

}

.lg-btn {

    width: 100%;

}

.cp {

    font-size: 17px;

    line-height: 27px;

}

.contact_heading {

    margin-bottom: 30px;

}

.contact_heading h2 {

    font-size: 45px;

    color: #000000;

    font-weight: bolder;

}

.contact-side-bar {

    padding-top: 0;

    margin-left: 20px;

}

.contact-main-sec {

    padding: 100px 0;

}

.contact-pag-form .form-group i {

    position: absolute;

    top: 20px;

    color: #7e7e7e;

    left: 13px;

    font-size: 20px;

}

.contact-pag-form .form-group1 i {

    right: 13px;

    left: unset;

    color: #7f7f7f;

    pointer-events: none;

}

.contact-pag-form {

    margin-top: 0;

}

.contact-pag-form button {

    margin-top: 30px;

}

.contact-pag-form .detailss::after {

    content: "";

    height: 53px;

    width: 10px;

    position: absolute;

    left: 40px;

    top: 5px;

    background-size: 10px 50px;

    background-image: url(../images/aroow-forward.png);

    background-repeat: no-repeat;

}

.cicle-icon {

    margin: 0 17px 0 0;

}

.contact-side-bar h4 {

    padding: 0 0 30px 0;

    font-size: 40px;

    text-transform: uppercase;

    font-weight: 300;
}

/* InnerPage Contact Us end */



/* donate sec */

.donate-box {
    overflow: hidden;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 .125rem .3125rem rgba(0, 0, 0, .3);
}

.inner-donate-box {
    padding: 25px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #90a959;
}

.inner-donate-box h3 {
    color: #fff;
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.inner-donate-box h3::before {
    width: 60px;
    height: 5px;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 5px;
    position: absolute;
    background-color: #fff;
}

.inner-donate-box p {
    color: #fff;
    width: 80%;
    margin: auto;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

.inner-donate-box a {
    color: #333;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    align-items: center;
    padding-block: .5rem;
    padding-inline: .9rem;
    border-radius: 9999px;
    background-color: #fff;
    box-shadow: 0 .0625rem .25rem rgba(0, 0, 0, .25);
}

.inner-donate-box a i {
    color: #90a959;
}

.selcet-amount-box {
    padding: 25px;
}

.selcet-amount-box h5 {
    font-size: 17px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-family: 'montserrat-font';
    border-bottom: 1px solid #ccc;
}

.selcet-amount-box p {
    margin-bottom: 15px;
}

.donation-options {
    gap: 2%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    align-items: center;
    justify-content: center;
}

.donation-box {
    width: 32%;
    padding: 15px;
    color: #000;
    font-size: 14px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-family: 'Montserrat';
    border: 2px solid #ffc60d;
}

.giveuser-box {
    padding: 25px 25px 0px;
}

.giveuser-box h5 {
    font-size: 17px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-family: 'montserrat-font';
    border-bottom: 1px solid #ccc;
}

.giveuser-box p {
    margin-bottom: 15px;
}

.giveuser-box input {
    width: 100%;
    height: 55px;
    padding-left: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    border: 1px solid #000;
}

.giveuser-box input.pl-af {
    padding-left: 45px;
}

.giveuser-box i {
    top: 20px;
    left: 30px;
    color: #2d2d2d;
    position: absolute;
}

.donate-box-h6 {
    padding: 15px;
    text-align: center;
    margin-bottom: 15px;
    background-color: #fff;
}

.donate-box-h6 h6 {
    font-style: italic;
}

.donate-sum-box {
    padding: 25px;
}

.donate-sum-box h5 {
    font-size: 20px;
    padding-bottom: 15px;
    font-family: 'montserrat-font';
}

.donate-sum-box ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}

.donate-sum-box ul li:last-child {
    border: none;
}

.donate-sum-box ul li p {
    color: #000;
}

.billing-box {
    padding: 0px 25px;
}

.billing-box h5 {
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    font-family: 'montserrat-font';
    border-bottom: 1px solid #ccc;
}

.billing-box input,
.billing-box select {
    height: 55px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #000;
}

.billing-box button {
    width: 100%;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    border-radius: 10px;
    font-family: 'montserrat-font';
    background-color: #507731;
}

.billing-box p {
    gap: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 45px;
    justify-content: center;
}

.billing-box p i {
    color: #f3b806;
}

section.inner-event-sec {
    margin: 100px 0px;
}











/* donate sec */





.meet-up-sd-box-text .community-event-box-date-time {
    margin-bottom: 8px;
    width: 86%;
    border: unset;
    padding: 0px;
}


.meet-up-sd-box-text {
    background: #fff;
    box-shadow: 0px 0px 10px 0px #50773180;
    padding: 25px 10px;
    border-radius: 6px;
    margin: 0 auto;
    width: 94%;
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

.meet-up-sd-box a img {
    width: 100%;
    border-radius: 10px;
    height: 300px;
}

section.meet-up-sec {
    margin-bottom: 100px;
}

section.meet-up-sec.event-meet-inner {
    margin-top: 100px;
}

.table-equal td a {
    color: #000;
}

.table-equal td {
    font-family: 'montserrat-font';
    color: #000;
}



.table-info-sec {
    padding: 90px 0px 0px;
}

.hiring-info-main ul li {
    font-family: 'montserrat-font';
    color: #000;
    margin-bottom: 10px;
}

.teble-heading h2 {
    text-align: center;
    margin-bottom: 30px;
}

.early-table-btn {
    margin: 30px 0px 40px;
    text-align: center;
}

.table-equal th,
.table-equal td {
    white-space: normal !important;
    word-wrap: break-word;
    vertical-align: top;
    width: 16.66%;
}

/*-------------------------------- Children Page Css Start ------------------------------------*/

.Resource-inr-sectabs {
    padding: 50px 0;
    margin-top: 89px;
    border-top: 1px solid #919191;
}

.tabs-resource-inrdrpdwn button.nav-link.active {
    background-color: #1b412b !important;
}

.tabs-resource-inrdrpdwn button.nav-link {
    font-size: 14px;
    font-family: 'montserrat-font';
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    text-align: justify;
}

.tabs-resource-inrdrpdwn .nav.flex-column {
    gap: 10px;
    margin-top: 20px;
    /* padding: 20px; */
    /* background: #ffff; */
    /* box-shadow: 0 0 8px 0px #00000066; */
}

.tabs-resource-inrdrpdwn {
    padding: 20px;
    background: #ffff;
    box-shadow: 0 0 8px 0px #00000066;
}
.founder-img img {
    width: 100%;
}
/*-------------------------------- Children Page Css End ------------------------------------*/

.quick-link-boxes {
    border: 2px solid #92a95c;
    padding: 20px 20px 20px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 220px;
}



.quick-link-boxes h2 {
    font-size: 20px;
    margin-bottom: 26px;
    /* height: 67px; */
}

.quick-link-boxes a {
    color: #fff;
    text-transform: capitalize;
    font-family: 'montserrat-font';
}
.quick-link-sec {
    padding-top: 100px;
}
.quick-link-box-img img {
    width: 50%;
    margin-bottom: 30px;
}
.quick-link-boxes img {
    width: 70%;
    margin-bottom: 30px;
}

section.main_slider .carousel-control-prev, .carousel-control-next {
    width: fit-content;
    color: #90a959;
    height: fit-content;
    margin: auto;
    opacity: 1;
}

section.main_slider .carousel-control-prev-icon {
    /* filter: invert(1); */
    background-color: #90a959;
    /* border-radius: 100%; */
}

section.main_slider .carousel-control-next-icon {
    /* filter: invert(1); */
    background-color: #90a959;
}

section.main_slider .carousel-control-next {
    right: 0px;
}

section.main_slider .carousel-control-prev {
    left: 5px;
}



.comunity-slider .slick-dots li button {
    color: #81aa24;
    font-size: 18px;
    border-radius: 8px;
    font-weight: 600;
    width: 30px;
    height: 30px;
}

.comunity-slider .slick-dots li button:before {
    display: none; /* default dot hide */
}

.comunity-slider .slick-dots li.slick-active button {
    font-weight: bold;
    color: #ff0000;
}


.comunity-slider ul.slick-dots {
    display: flex;
    justify-content: center;
    gap: 30px;
    bottom: -13%;
}

.comunity-slider .slick-dots li {
    width: 50px;
    height: 50px;
    /*50px:*/
    /*initial;*/
    margin: 0;
    padding: 0;
    border: 1px solid #81aa24;
    border-radius: 8px;
    display: grid;
    place-content: center;
}

.comunity-slider .slick-dots li.slick-active {
    background: #507731;
    color: #fff;
    opacity: 1;
}

.comunity-slider .slick-dots li.slick-active button {
    color: #fff;
    opacity: 1;
}

.comunity-slider .slick-prev:before, .comunity-slider .slick-next:before {
    content: '';
    position: absolute;
    background-image: url(https://www.nextchapterconnections.com/wp-content/themes/next-chapter/images/pagination-right-icon.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom;
    width: 20px;
    height: 10px;
    display: grid;
    place-content: center;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    opacity: 1 !important;
}

.comunity-slider .slick-prev, .comunity-slider .slick-next {
    top: auto;
    bottom: -13%;
    width: 50px;
    height: 50px;
    right: 20%;
    border-radius: 6px;
    z-index: 9;
    display: grid;
    place-content: center;
    opacity: 1;
}

.comunity-slider .slick-prev {
    right: auto;
    left: 20%;
    z-index: 9;
}

.comunity-slider .slick-prev:before {
    background-image: url(https://www.nextchapterconnections.com/wp-content/themes/next-chapter/images/pagination-left-icon.png);
}

.comunity-slider .slick-prev:hover, .comunity-slider .slick-next:hover {
    background: #507731;
}

.comunity-slider .slick-prev:hover:before, .comunity-slider .slick-next:hover:before {
    filter: brightness(5);
}


.comunity-slider .slick-slide {
    margin: 10px;
}
