@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Work+Sans:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');
:root {
    /* --primary-color: #168755; */
    --primary-color: #5e8750;
    --secondary-color: #F8F616;
    --secondary-color2: #F8BE0B;
    --black-color: #333;
    --white-color: #ffffff;
    --font-work-sans: "Work Sans", sans-serif;
    --font-libre-baskerville: "Libre Baskerville", serif;
    --font-Roboto-flex: 'Roboto Flex', sans-serif;
    --font-size: 16px;
    --line-height: 1.5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 100%;
}

body {
    font-family: sans-serif;
    font-size: var(--font-size);
    line-height: var(--line-height);
    color: var(--black-color);
    font-family: var(--font-work-sans);
}


/************************************ Global Settings *************************************/


/* Preloader styles */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(94, 135, 80, 0.879), rgba(94, 135, 80, 0.92));
    /* Solid background color */
    /* display: flex;
  justify-content: center;
  align-items: center; */
    z-index: 9999;
}

.preloader .logo img {
    width: 100px;
    height: 100px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.preloader .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.preloader .loader>div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader .loader>div span {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--secondary-color2);
    border-radius: 50%;
    width: 104px;
    height: 104px;
    animation: spin 2s linear infinite;
}


/* Rotating animation keyframes */

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Hide the preloader when the content is loaded */

body.loaded .preloader {
    display: none;
}


/* font sizes */

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.4;
}

p {
    font-size: 1rem;
}


/* remove shadows on active buttons */

.btn:focus,
.btn:active {
    box-shadow: none !important;
}


/* line divider */

.line_div {
    width: 100%;
    border-bottom: 1px solid rgba(51, 51, 51, 0.174);
    margin: 1rem 0;
}

.line_secondary {
    width: 60px;
    height: 2px;
    background: var(--secondary-color2);
}

.line_div2 {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.174);
    padding: 1rem 0;
}


/* buttons */

.btn_primary2,
.btn_primary1 {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: all .3s ease-in;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 0;
}

.btn_primary3 {
    background-color: var(--secondary-color2);
    color: var(--black-color);
    border: 1px solid var(--secondary-color2);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: all .3s ease-in;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 0;
}

.btn_primary3:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
}

.btn_primary1:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.btn_primary2:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}


/* headline */

.headline h2 {
    font-family: var(--font-libre-baskerville);
    padding-left: 1rem;
    padding-right: 1rem;
}

.headline p {
    width: 75%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.headline p span {
    color: var(--primary-color);
}


/* anchor */

a {
    text-decoration: none !important;
}


/* second_header */

.second_headline h1 {
    font-family: var(--font-libre-baskerville);
    font-weight: 700;
    color: var(--white-color);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.174);
}

.second_headline nav .breadcrumb-item:first-child a,
.second_headline nav .breadcrumb-item {
    color: var(--white-color);
    transition: all .3s ease-in-out;
    font-size: 1rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.127);
    text-transform: uppercase;
    font-weight: 300;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    color: var(--white-color) !important;
    font-weight: 300;
}

.headline .breadcrumb-item+.breadcrumb-item::before {
    color: var(--black-color) !important;
    font-weight: 300;
}

.second_headline nav .breadcrumb-item:first-child a:hover {
    color: var(--primary-color) !important;
    font-weight: 300;
}

.news_story_box .breadcrumb-item+.breadcrumb-item::before {
    color: var(--black-color) !important;
    font-weight: 300;
}

.breadcrumb-item.active {
    font-weight: 300;
}


/* pagination */

.page_num .active>.page-link,
.page-link.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.page_num .page-link {
    color: var(--primary-color);
    box-shadow: none;
    border-radius: 0 !important;
}


/* hero saerch */

.hero_search {
    width: 600px;
}

.hero_search input,
.hero_search button {
    border-radius: 0;
    box-shadow: none !important;
    border: 1px solid var(--primary-color);
}

.hero_search input:focus {
    border: 1px solid var(--primary-color);
}

.hero_search button {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.hero_search button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color) !important;
    color: var(--white-color);
}


/************************************ End Global Settings *************************************/


/************************************ Navigation *************************************/

.navbar {
    background: var(--primary-color) !important;
    border: 1px solid rgba(108, 117, 125, 0.25) !important;
}


/* .stickyy {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
} */

.landing_top .navbar .navbar-brand img {
    height: 50px;
}

.landing_top .navbar .navbar-toggler,
.landing_top .navbar .btn-close {
    box-shadow: none;
    border: none;
}

.landing_top .navbar {
    border-bottom: 1px solid #33333322 !important;
}

.landing_top .navbar .nav-link.active {
    color: var(--secondary-color2);
    font-weight: 500;
}

.landing_top .navbar .nav-link {
    color: var(--white-color);
    transition: all .3s ease-in;
    text-transform: uppercase;
    font-weight: 300;
}

.landing_top .navbar .nav-link:hover {
    color: var(--secondary-color2);
}

.landing_top .offcanvas {
    background: var(--primary-color);
}

.landing_top .dropdown-menu .dropdown-item:active {
    background-color: var(--primary-color);
}


/* animate naviagation */


/* Custom animation duration and easing function */

.dropdown-menu {
    animation-duration: 0.3s;
    animation-timing-function: ease-in-out;
    background-color: #f7f7f7;
    border-radius: 0;
    border-right: none;
    border-bottom: none;
    border-left: none;
}


/* Fade-in animation for dropdown */

.dropdown-menu.fade-in {
    animation-name: fadeInDropdown;
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Fade-out animation for dropdown */

.dropdown-menu.fade-out {
    animation-name: fadeOutDropdown;
}

@keyframes fadeOutDropdown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}


/* end of navigation animation */

.landing_top .navbar-brand {
    font-family: var(--font-work-sans);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white-color);
}

.landing_top .nav_top_search {
    border-radius: 0px;
    border: 1px solid var(--white-color);
}

.landing_top .nav_top_search span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing_top .nav_top_search span i {
    font-size: 18px;
    color: var(--white-color);
    transition: .3s all ease-in-out;
}

.landing_top .nav_top_search:hover {
    background-color: var(--white-color);
    border-color: var(--white-color);
}

.landing_top .nav_top_search:hover i {
    color: var(--primary-color);
}

.search_modal .modal-content {
    border-radius: 0 !important;
}

.search_modal .modal-content .modal-body h5 {
    font-family: var(--font-libre-baskerville);
}

.search_modal .modal-content .modal-body input {
    border-radius: 0;
    box-shadow: none;
    background-color: rgba(108, 117, 125, 0.07);
}

.search_modal .modal-content button:last-child {
    color: var(--black-color);
}

.search_modal .modal-content button:first-child {
    background: var(--primary-color);
    color: var(--white-color);
}


/************************************* end of navigation *************************************/


/* *********************************** Hero Section  *****************************************/

.landing_top .hero-section {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(22, 135, 84, 0.300), rgba(22, 135, 84, 0.300)), url('/assets/img/backgrounds/seeds.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.landing_top .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.landing_top .hero-header {
    font-weight: bold;
    font-family: var(--font-libre-baskerville);
    color: var(--white-color);
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.35);
    line-height: 1.5;
}

.landing_top .hero-paragraph {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white-color);
    font-weight: 400;
}

.landing_top .hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.landing_top .btn_bottom {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.landing_top .btn_bottom a {
    font-size: 3rem;
    color: var(--white-color);
}

.landing_top .btn_bottom a:hover i {
    transform: translateY(-0.5rem);
    transition: all .3s ease-in-out;
}


/* *********************************** End Hero Section  *****************************************/


/* ***********************************  About Us  *****************************************/

.about_us {
    padding: 5rem 0 4rem 0;
}

#about_us .about_img img {
    height: 65vh;
    width: 100%;
}

#about_us .about_text .page_desc {
    color: var(--primary-color);
}

#about_us .about_text,
#about_us .about_img {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

#about_us .about_text h2 {
    font-family: var(--font-libre-baskerville);
}


/* *********************************** End About Us  *****************************************/


/* *********************************** Programmes  *****************************************/

#programmes {
    padding: 3rem 0 3rem 0;
}

#programmes .headline {
    margin-top: 4rem;
    margin-bottom: 2.5rem;
}

#programmes .program_card {
    border: 1px solid rgba(51, 51, 51, 0.074);
    padding: .8rem;
    background-color: rgba(235, 235, 235, 0.215);
    text-align: center;
    height: 100%;
}

#programmes .headline h2 {
    font-family: var(--font-libre-baskerville);
    font-weight: bold;
}

#programmes .headline p span {
    color: var(--primary-color);
}

#programmes .program_header h5 {
    color: var(--primary-color);
    font-weight: 500;
}

#programmes .program_card .top_card img {
    height: 100px;
    width: 100px;
    margin-bottom: .8rem;
}

#programmes .program_description a {
    text-decoration: none;
    color: var(--black-color);
    transition: all .3s ease-in-out;
    font-weight: 500;
    font-family: var(--font-libre-baskerville);
    font-weight: .9rem;
}

#programmes .program_description a:hover {
    color: var(--primary-color);
}


/* *********************************** End Programmes  *****************************************/


/* *********************************** Our Partners  *****************************************/

#partners {
    background: url('/assets/img/backgrounds/cricle_bg.png');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 7rem 0;
}

#partners .headline h2,
#partners .headline p {
    color: var(--white-color);
}

#partners .partners_slider {
    margin-top: 3rem;
}

#partners .partners_slider img {
    width: 100%;
}


/* *********************************** End Our Partners  *****************************************/


/* *********************************** Work  *****************************************/

#work {
    margin: 5rem 0;
}

#work .headline {
    margin-bottom: 3rem;
}

#work .work_card_link {
    text-decoration: none;
    margin-bottom: 1rem;
}

#work .work_card_link .work_card {
    border: 1px solid rgba(51, 51, 51, 0.074);
    background-color: rgba(235, 235, 235, 0.215);
    height: 100%;
    margin: 0 !important;
}

#work .work_card_link .work_card .work_bottom {
    padding: .5rem;
}

#work .work_card_link .work_card .work_top .img_box {
    height: 350px;
    overflow: hidden;
}

#work .work_card_link .work_card .work_top .img_box img {
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
}

#work .work_card_link .work_card .work_bottom .work_header h5 {
    font-family: var(--font-libre-baskerville);
    color: var(--black-color);
    text-align: center;
    transition: all .3s ease-in-out;
    margin: 0;
}

#work .work_card_link:hover .work_card .work_bottom .work_header h5 {
    color: var(--primary-color);
}

#work .work_card_link:hover .work_card .work_top .img_box img {
    transform: scale(1.1);
    filter: brightness(130%);
}


/* *********************************** Our Work  *****************************************/


/* *********************************** Our News *****************************************/

#our_news {
    padding: 6rem 0;
    background-color: #ebebeb80;
}

#our_news .headline {
    margin-bottom: 3rem;
}

.news_card {
    background-color: var(--primary-color);
    transition: all .3s ease-in-out;
}

.news_card .img_box {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.news_card .img_box img {
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
}

.news_card:hover .img_box img {
    transform: scale(1.1);
}

.news_card .news_desc {
    position: absolute;
    transition: all .3s ease-in-out;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(16, 16, 16));
}

.news_card .news_desc .news_top {
    padding: .8rem;
    position: absolute;
    bottom: 0;
    left: 0;
}

.news_card .news_desc .news_top span {
    color: var(--white-color);
    font-weight: 300;
}

.news_card .news_desc .news_top .news_category {
    margin-bottom: .3rem;
}

.news_card .news_desc .news_heading h6 a {
    color: var(--white-color);
    text-decoration: none;
    font-family: var(--font-libre-baskerville);
    margin-bottom: 0;
}


/* ***********************************  End Our News  *****************************************/


/* ***********************************  Events  *****************************************/

#events {
    background-color: #ebebeb80;
    padding-bottom: 6rem;
}

#events .event_heading {
    margin-bottom: 2rem;
}

#events .single_event {
    color: var(--white-color);
}

#events .event_heading h4 {
    font-family: var(--font-libre-baskerville);
}

.events_box {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    /* background: var(--primary-color); */
    background-color: var(--white-color);
    transition: all .3s ease-in-out;
}

.events_box .events_text {
    display: flex;
    justify-content: start;
    align-items: center;
    color: black;
}

.events_box .events_text .events_left {
    background-color: var(--primary-color);
    padding: .5rem;
}

.events_box .events_text .events_right h6 {
    margin-bottom: 0;
    font-family: var(--font-libre-baskerville);
}

.events_box .events_text .events_right {
    padding: .5rem 1rem;
}

.events_box .events_text .events_left small span {
    display: block;
    text-align: center;
    color: var(--white-color);
}

.events_box .events_text .events_left small span:last-child {
    font-weight: 500;
    font-size: 1.2rem;
}

.events_box .events_text .events_left small span:first-child {
    text-transform: uppercase;
    font-weight: 300;
}

.events_box .event_img {
    height: 350px;
    overflow: hidden;
}

.events_box .event_img img {
    transition: all .3s ease-in-out;
    height: 100%;
}

.events_box:hover .event_img img {
    transform: scale(1.1);
    filter: brightness(103%);
}

#event_list {
    margin: 6rem 0;
}


/* ***********************************  End Events  *****************************************/


/* ***********************************   Footer  *****************************************/

#footer {
    padding: 4rem 0 2rem 0;
    background-color: var(--black-color);
}

#footer .footer_top h5 {
    color: var(--white-color);
    font-family: var(--font-libre-baskerville);
}

#footer .footer_top input,
#footer .footer_top .Newletter button {
    border-radius: 0 !important;
    border: 1px solid var(--white-color);
    box-shadow: none;
}

#footer .footer_top .Newletter button {
    background-color: var(--primary-color);
    color: var(--white-color);
    transition: all .3s ease-in;
    font-weight: 500;
    border: 1px solid var(--primary-color);
}

#footer .footer_top .Newletter button:hover {
    background-color: var(--secondary-color2);
    color: var(--black-color);
    border: 1px solid var(--secondary-color2);
}

#footer .footer_top .social_icon,
#footer .footer_top .Newletter {
    margin-top: 1rem;
}

#footer .footer_top.right {
    text-align: right;
}

#footer .footer_top .social_icon>div {
    display: flex;
    justify-content: end;
}

#footer .footer_top .social_icon>div span {
    height: 35px;
    width: 35px;
    background-color: var(--primary-color);
    margin-left: 12px;
    position: relative;
    transition: all .3s ease-in-out;
    border: var(--primary-color);
}

#footer .footer_top .social_icon>div span:hover {
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
}

#footer .footer_top .social_icon span i {
    color: var(--white-color);
    font-size: 1.4rem;
    line-height: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease-in-out;
}

#footer .footer_top .social_icon span:hover i {
    color: var(--primary-color);
}

#footer .footer_bottom {
    margin-top: 1.5rem;
}

#footer .footer_bottom h6 {
    text-transform: uppercase;
    color: var(--white-color);
}

#footer .footer_bottom p {
    color: var(--white-color);
    font-weight: 300;
}

#footer .footer_bottom p.contact_info {
    display: flex;
    justify-content: start;
    align-items: start;
    margin-bottom: .4rem;
}

#footer .footer_bottom p.contact_info span {
    font-size: .9rem;
}

#footer .footer_bottom p.contact_info span:first-child {
    margin-right: .3rem;
}

#footer .footer_bottom ul,
#footer .footer_bottom ul li {
    padding-left: 0 !important;
    list-style: none !important;
}

#footer .footer_bottom ul li a {
    color: var(--white-color);
    font-weight: 300;
    transition: all .3s ease-in-out;
}

#footer .footer_bottom ul li a:hover {
    color: var(--primary-color);
}

#bottom_footer {
    background: #000000de;
    padding: 1rem 0;
}


/* ***********************************  End Footer  *****************************************/


/* all pages hero */

.landing_top .alt_hero.hero {
    background: linear-gradient(rgb(94, 135, 80), rgba(94, 135, 80, 0.478)), url("/assets/img/backgrounds/milletsevents.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 50vh;
}

.landing_top .alt_hero.hero .hero_section {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}


/* end of all pages hero */


/* ***********************************  About Page  *****************************************/

.landing_top .alt_hero.about {
    background: linear-gradient(rgba(0, 0, 0, 0), #fff), url("/assets/img/backgrounds/rice-field.jpg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    height: 30px;
}

#about_details {
    padding: 4rem 0 6rem 0;
    background-color: var(--white-color);
}

#about_details .about_headline {
    margin: 1.3rem 0;
}

#about_details .about_headline h3 {
    font-family: var(--font-libre-baskerville);
}

#about_statements {
    background: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0.746)), url('/assets/img/backgrounds/reaching-out.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
    filter: brightness(97%);
}

#about_statements .statement_box .stat_img {
    height: 60px;
    width: 60px;
}

#about_statements .statement_box {
    margin: 1rem 0 1rem 0;
    padding: 1rem .5rem;
}

#about_statements .statement_box .stat_img img {
    width: 100%;
    height: 100%;
}

#about_statements .statement_box .state_desc h5 {
    /* text-transform: uppercase; */
    color: var(--primary-color);
    font-weight: 500;
    font-family: var(--font-libre-baskerville);
    margin-top: .5rem;
    text-transform: uppercase;
}

#about_statements .statement_box .state_desc p {
    color: var(--black-color);
}

#about_value {
    padding: 4rem 0;
}

#about_value .value_text,
#about_value .value_img {
    padding: 1rem;
}

#about_value .value_text {
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

#about_value .value_text>div {
    width: 100%;
}

#about_value .value_text ul {
    list-style: none;
    padding-left: 0;
}

#about_value .value_text h4 {
    color: var(--primary-color);
    font-family: var(--font-libre-baskerville);
    margin-bottom: 1rem;
}

#about_value .value_text ul {
    background-color: rgba(128, 128, 128, 0.074);
    padding: 1rem;
    border: 1px solid rgba(51, 51, 51, 0.078);
}

#about_value .value_text ul li {
    margin-bottom: .1rem;
}

#about_value .value_text ul i {
    margin-right: .3rem;
    color: var(--primary-color);
}


/* ***********************************  End About Page  *****************************************/


/* ***********************************   Contact Page  *****************************************/

#contact-us {
    margin: 5rem 0;
}

#contact-us .contact_top {
    margin: 1.5rem 0;
}

#contact-us .contact_info,
#contact-us .chat_form {
    padding: 1rem 1.5rem;
}

#contact-us .chat_form {
    background-color: #ebebeb66;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

#contact-us .chat_form textarea,
#contact-us .chat_form button,
#contact-us .chat_form input {
    border-radius: 0 !important;
    box-shadow: none;
}

#contact-us .chat_form textarea:focus,
#contact-us .chat_form input:focus {
    border-color: var(--primary-color);
}

#contact-us .contact_info img {
    margin-top: 1rem;
}

#contact-us .contact_info h6 {
    font-family: var(--font-libre-baskerville);
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 1.2rem;
}

#contact-us .contact_info p a,
#contact-us .contact_info p {
    color: var(--black-color);
    font-size: .95rem;
    color: #6c757d;
}

#contact_bottom .map_layer {
    margin: 4rem 0 0 0;
}

#contact_bottom .map_layer iframe {
    height: 60vh !important;
    width: 100%;
}

#contact_bottom .contant_form {
    background-color: #ebebeb80;
    margin-bottom: 0;
    margin-top: 1.5rem;
    border: 1px solid rgba(51, 51, 51, 0.074);
}

#contact_bottom .contant_form textarea,
#contact_bottom .contant_form input {
    font-size: .9rem;
    border-radius: 0;
    box-shadow: none;
    transition: all .3s ease-in-out;
    color: gray;
}

#contact_bottom .contant_form textarea:hover,
#contact_bottom .contant_form input:hover {
    border: 1px solid var(--primary-color);
}


/* ***********************************  End Contact Page  *****************************************/


/* ***********************************  Reports  *****************************************/

#reports_real {
    padding: 5rem 0;
}

#reports_real .report_box {
    background-color: #ebebeb66;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

#reports_real .report_box .report_img {
    height: 320px;
    width: 100%;
    overflow: hidden;
}

#reports_real .report_box .report_img img {
    height: 100%;
    width: 100%;
    transition: all .3s ease-in;
}

#reports_real .report_box:hover .report_img img {
    transform: scale(1.01);
    filter: brightness(110%);
}

#reports_real .report_box .report_top {
    padding: .5rem;
    text-transform: uppercase;
}

#reports_real .report_box .report_top small:first-child {
    color: var(--primary-color);
}

#reports_real .report_box .report_top p {
    margin-bottom: 0 !important;
}

#reports_real .report_box .line_div {
    margin: 0 !important;
}

#reports_real .report_box .report_bottom h5 {
    margin: .8rem .5rem;
    font-family: var(--font-libre-baskerville);
}

#reports_real .report_box .report_bottom .view_download .btn-group .btn {
    border-radius: 0;
}

#reports_real .report_box .report_bottom .view_download .btn-group .btn:first-child {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    text-transform: uppercase;
    font-size: .9rem;
}

#reports_real .report_box .report_bottom .view_download .btn-group .btn:last-child {
    background-color: var(--secondary-color2);
    border-color: var(--secondary-color2);
    text-transform: uppercase;
    font-size: .9rem;
    color: var(--black-color);
}


/* ***********************************  end of reports  *****************************************/


/* ***********************************   complete report  *****************************************/

#complete-report-top {
    padding: 10rem 0 5rem 0;
}


/* #complete-report-top .left_box {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  background-color: var(--white-color);
} */

#complete-report-top .report_img {
    width: 100%;
    height: 350px;
}

#complete-report-top .report_img img {
    height: 100%;
    width: 100%;
}

#complete-report-top .left_box .line_div {
    margin: 0 !important;
}

#complete-report-top .left_box .socials {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem !important;
}

#complete-report-top .left_box .socials span a {
    color: var(--primary-color);
    padding: .4rem .5rem;
    font-size: 1.1rem;
    transition: all .3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

#complete-report-top .left_box .socials span a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: var(--primary-color) 0px 1px 3px 0px, var(--primary-color) 0px 0px 0px 1px;
}

#complete-report-top .right_box {
    padding: 0 2rem;
}

#complete-report-top .right_box .top_breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    float: left;
    color: gray !important;
    font-weight: 300;
}

#complete-report-top .right_box .top_breadcrumb .breadcrumb a.breadcrumb-item {
    color: var(--primary-color);
    transition: all .3s ease-in-out;
    font-weight: 300;
}

#complete-report-top .right_box .top_breadcrumb .breadcrumb a.breadcrumb-item:hover {
    color: gray;
    font-weight: 300;
}

#complete-report-top .right_box .topic_head h2 {
    font-family: var(--font-libre-baskerville);
    margin-top: 1.5rem;
}

#complete-report-top .right_box .report_basic p {
    font-size: 1.1rem;
    margin-bottom: .5rem;
}

#complete-report-top .right_box .report_basic p span {
    font-weight: 300;
}

#complete-report-top .right_box .report_basic p span:first-child {
    color: var(--primary-color);
}


/* ***********************************  end complete rep0rts  *****************************************/


/* ***********************************  complete news stories  *****************************************/

#complete_story_news {
    padding: 8rem 0 5rem 0;
}

#complete_story_news .news_story_box .date_header p {
    margin-bottom: .5rem;
}

#complete_story_news .news_story_box .date_header h2 {
    font-family: var(--font-libre-baskerville);
    margin-top: 0 !important;
}

#complete_story_news .news_story_box .top_image_section {
    height: 70vh !important;
    height: 100%;
    overflow: hidden !important;
}

#complete_story_news .news_story_box .top_image_section img {
    height: 100%;
    width: 100%;
}

#complete_story_news .news_story_box .author_name p {
    font-style: italic;
    color: var(--primary-color);
    font-family: var(--font-libre-baskerville);
    margin-top: -.5rem;
}

#complete_story_news .news_story_box .header_bottom {
    margin-top: 1rem;
}

#complete_story_news .news_story_box .enquiry_box {
    background-color: #ebebeb66;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

#complete_story_news .news_story_box .enquiry_box h6 {
    text-transform: uppercase;
    font-weight: 400;
}

#complete_story_news .news_story_box .enquiry_box p {
    margin-bottom: 0;
}

#complete_story_news .news_story_box .enquiry_box span {
    color: var(--primary-color);
    font-weight: 500;
}

#complete_story_news .news_story_box .enquiry_box span a {
    color: var(--primary-color);
    transition: all .3s ease-in-out;
}


/* ***********************************  end complete new and stories  *****************************************/


/* ***********************************  Our Team  *****************************************/

#our_team {
    margin: 6rem 0;
}

#our_team .team_card {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background-color: rgba(235, 235, 235, 0.476);
    margin-top: 1rem;
}

#our_team .team_card .team_box img {
    height: 290px;
    width: 100%;
}

#our_team .team_card .team_content {
    padding: 1rem 1rem .5rem 1rem;
}

#our_team .team_card .team_content h5 {
    font-family: var(--font-libre-baskerville);
}

#our_team .team_card .team_content .social_links div {
    display: flex;
    align-content: center;
    justify-content: space-between;
    margin-top: .5rem;
}

#our_team .team_card .team_content .social_links div a {
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: all .3s ease;
}


/* ***********************************  End  Our Team  *****************************************/


/* ***********************************  Gallery  *****************************************/

#gallery {
    margin: 9rem 0 6rem 0;
}

#gallery .gallery_work {
    margin-top: 1rem;
}

#gallery .gallery_work img {
    transition: all .3s ease-in-out;
}

#gallery .gallery_work img:hover {
    filter: brightness(103%);
}


/* ***********************************  End  Gallery  *****************************************/


/* *********************************** Qoute  *****************************************/

#qouted {
    background: linear-gradient(rgba(94, 135, 80, 0.57), rgba(94, 135, 80, 0.376)), url('../img/backgrounds/drinkingwater.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    margin-top: 3rem;
}

#qouted .qoute h2 span {
    font-weight: 700;
    font-family: var(--font-libre-baskerville);
    color: var(--secondary-color2);
}

#qouted .qoute h2 {
    font-weight: 500;
    font-family: var(--font-work-sans);
    font-style: italic;
    color: var(--white-color);
}


/* ***********************************  End  Qoute  *****************************************/


/* list group about us */

.approach .list-group {
    border-radius: 0;
}

.approach .list-group li {
    color: var(--white-color);
    border-color: rgba(255, 255, 255, 0.164);
    background-color: transparent;
}

.approach h2 {
    font-family: var(--font-libre-baskerville);
    color: var(--white-color);
}

#about_approach {
    background: var(--primary-color);
    padding: 6rem 0;
}


/* end of list group about us */

#project_gallery {
    padding: 6rem 0 1rem 0;
}

#project_gallery .headline h2 {
    color: var(--primary-color);
}


/* end of projects images */


/* hide programmes section */

#hidden-section {
    display: none;
    opacity: 0;
}

#hidden-section strong {
    font-weight: 500;
}

#hidden-section span {
    color: var(--primary-color);
}


/* end of hide programmes section */


/* Media queries for different screen sizes */


/* Extra small devices (portrait phones) */

@media (max-width: 575.98px) {
    body {
        font-size: 14px;
    }
    h1 {
        font-size: 2.1rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    p {
        font-size: 0.9rem;
    }
    /* qoute  */
    #qouted .qoute h2 {
        font-size: 1.2rem;
    }
    #about_value .value_text {
        padding: 1rem 0;
    }
    #about_value .value_text h4 {
        text-align: center;
    }
    #about_approach,
    #about_statements {
        clip-path: polygon(50% 3%, 60% 0, 100% 0, 100% 100%, 0 100%, 0 0, 40% 0);
    }
    /* hero */
    .hero_search {
        width: 300px;
    }
    #complete-report-top .top_breadcrumb {
        display: none;
    }
    #complete-report-top .right_box {
        padding: 0;
    }
    /* homepage */
    .landing_top .hero-content {
        width: 90%;
    }
    .landing_top .hero-header {
        font-size: 1.3rem;
    }
    .landing_top .hero-paragraph {
        font-size: .9rem;
    }
    .landing_top .btn_bottom {
        bottom: 15px;
    }
    .landing_top .btn_bottom i {
        font-size: 1.3rem;
    }
    #about_us .about_img img {
        height: 100%;
        display: none;
    }
    .btn_primary3,
    .btn_primary2,
    .btn_primary1 {
        font-size: .8rem;
    }
    #about_us .about_text {
        text-align: center;
    }
    #about_us .about_text .page_desc {
        margin-bottom: 10px !important;
        width: 100%;
    }
    #about_us .about_text a {
        text-align: center;
    }
    #about_us .about_text h2 {
        font-size: 1.7rem;
        font-weight: 700;
    }
    #about_us .about_text p {
        display: -webkit-box;
        -webkit-line-clamp: 7;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    #about_us .about_text .about_link {
        margin-right: auto;
        margin-left: auto;
    }
    .about_us {
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    .headline p {
        width: 100%;
    }
    #work .work_card_link .work_card .work_top .img_box {
        height: 300px;
    }
    #work .work_card_link .work_card {
        margin-bottom: 1.5rem;
    }
    #work .work_card_link .work_card .work_bottom .work_header h5 {
        font-size: 1rem;
    }
    #our_news .news_card .img_box {
        height: 100%;
    }
    #events .event_heading {
        text-align: center;
    }
    #events .event_button {
        justify-content: center !important;
        align-items: start !important;
        margin-bottom: 2rem;
    }
    #footer .footer_top .social_icon>div {
        justify-content: start;
    }
    #footer .footer_top.right {
        text-align: left !important;
        margin-top: 1.2rem;
    }
    #footer .footer_top .social_icon>div span {
        margin-right: 12px;
        margin-left: 0 !important;
    }
    /* end  of homepage */
    /* start of alt hero */
    .second_headline nav .breadcrumb-item:first-child a,
    .second_headline nav .breadcrumb-item,
    .landing_top .alt_hero.hero .hero_section nav li {
        font-size: .9rem !important;
    }
    /* end of alt hero */
    .coordinator_box img,
    .coordinator_details>div .line_secondary,
    .coordinator_box img,
    .coordinator_details>div h6,
    .coordinator_box img,
    .coordinator_details>div h5,
    .coordinator_box img,
    .coordinator_details>div p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    /* navigation bar icons dropdowns */
    .landing_top .dropdown-toggle::after {
        float: right;
        transition: all .3s ease-in;
    }
    .landing_top .dropdown-toggle.show::after {
        transform: rotate(180deg);
    }
    /* end of nav icons dropdowns */
}


/* Small devices (landscape phones) */

@media (min-width: 576px) and (max-width: 767.98px) {
    body {
        font-size: 15px;
    }
    h1 {
        font-size: 2.25rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.6rem;
    }
    p {
        font-size: 0.95rem;
    }
    /* hero */
    .hero_search {
        width: 490px;
    }
    #complete-report-top .right_box {
        padding: 1rem 0 0 0;
    }
    /* homepage */
    .landing_top .hero-content {
        width: 80%;
    }
    .landing_top .hero-paragraph {
        font-size: 1rem;
    }
    #about_us .about_img img {
        height: 100%;
        display: none;
    }
    .btn_primary2,
    .btn_primary1 {
        font-size: .8rem;
    }
    #about_us .about_text {
        text-align: center;
    }
    #about_us .about_text .page_desc {
        margin-bottom: 10px !important;
        width: 100%;
    }
    #about_us .about_text a {
        text-align: center;
    }
    #about_us .about_text h2 {
        font-size: 1.7rem;
        font-weight: 700;
    }
    #about_us .about_text p {
        display: -webkit-box;
        -webkit-line-clamp: 7;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    #about_us .about_text .about_link {
        margin-right: auto;
        margin-left: auto;
    }
    .about_us {
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    .headline p {
        width: 100%;
    }
    #work .work_card_link .work_card .work_top .img_box {
        height: 250px;
    }
    #work .work_card_link .work_card {
        margin-bottom: 1.5rem;
    }
    #work .work_card_link .work_card .work_bottom .work_header h5 {
        font-size: 1rem;
    }
    #our_news .news_card .img_box {
        height: 250px;
    }
    #footer .footer_top .social_icon>div {
        justify-content: start;
    }
    #footer .footer_top.right {
        text-align: left !important;
    }
    #footer .footer_top .social_icon>div span {
        margin-right: 12px;
        margin-left: 0 !important;
    }
    .landing_top .btn_bottom a {
        font-size: 2rem;
        color: var(--white-color);
    }
    .coordinator_box img,
    .coordinator_details>div .line_secondary,
    .coordinator_box img,
    .coordinator_details>div h6,
    .coordinator_box img,
    .coordinator_details>div h5,
    .coordinator_box img,
    .coordinator_details>div p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    /* end  of homepage */
    /* navigation bar icons dropdowns */
    .landing_top .dropdown-toggle::after {
        float: right;
        transition: all .3s ease-in;
    }
    .landing_top .dropdown-toggle.show::after {
        transform: rotate(180deg);
    }
    /* end of nav icons dropdowns */
}


/* Medium devices (tablets) */

@media (min-width: 768px) and (max-width: 991.98px) {
    body {
        font-size: 16px;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.75rem;
    }
    p {
        font-size: 1rem;
    }
    /* homepage */
    .landing_top .hero-content {
        width: 70%;
    }
    .landing_top .hero-paragraph {
        font-size: 1rem;
    }
    #about_us .about_img img {
        height: 40vh;
    }
    .btn_primary2,
    .btn_primary1 {
        font-size: .9rem;
    }
    #about_us .about_text .page_desc {
        margin-bottom: 10px !important;
    }
    #about_us .about_text h2 {
        font-size: 1.4rem;
    }
    #about_us .about_text p {
        display: -webkit-box;
        -webkit-line-clamp: 7;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .headline p {
        width: 100%;
    }
    #work .work_card_link .work_card .work_top .img_box {
        height: 290px;
    }
    #work .work_card_link .work_card {
        margin-bottom: 1.5rem;
    }
    #work .work_card_link .work_card .work_bottom .work_header h5 {
        font-size: 1rem;
    }
    #our_news .news_card .img_box {
        height: 280px;
    }
    /* end  of homepage */
    .coordinator_box img,
    .coordinator_details>div .line_secondary,
    .coordinator_box img,
    .coordinator_details>div h6,
    .coordinator_box img,
    .coordinator_details>div h5,
    .coordinator_box img,
    .coordinator_details>div p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    /* navigation bar icons dropdowns */
    .landing_top .dropdown-toggle::after {
        float: right;
        transition: all .3s ease-in;
    }
    .landing_top .dropdown-toggle.show::after {
        transform: rotate(180deg);
    }
    /* end of nav icons dropdowns */
}


/* Large devices (desktops) */

@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Your font sizes for large screens here */
}


/* Extra large devices (large desktops) */

@media (min-width: 1200px) {
    /* Your font sizes for extra large screens here */
}

#programme_img_section.biodiversity {
    background: /* linear-gradient(rgba(22, 135, 84, 0.150), rgba(22, 135, 84, 0.150)),  */
    url("/assets/img/backgrounds/seeds.webp");
    background-attachment: fixed;
    height: 70vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#programme_img_section.food_sec {
    background: /* linear-gradient(#16875426, rgba(22, 135, 84, 0.150)), */
    url("/assets/img/backgrounds/cropandpeople.webp");
    background-attachment: fixed;
    height: 70vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#programme_img_section.policy {
    background: /* linear-gradient(rgba(22, 135, 84, 0.150), rgba(22, 135, 84, 0.150)), */
    url("/assets/img/backgrounds/milletsevents.webp");
    background-attachment: fixed;
    height: 70vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#programme_img_section.environment {
    background: /* linear-gradient(rgba(22, 135, 84, 0.150), rgba(22, 135, 84, 0.150)),  */
    url("/assets/img/backgrounds/watersource.webp");
    background-attachment: fixed;
    height: 70vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#program_cordinator {
    padding: 7rem 0 2rem 0;
}

.coordinator_box,
.coordinator_details {
    padding: 1rem;
}

.coordinator_box img {
    width: 100%;
}

.coordinator_box img,
.coordinator_details>div {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.coordinator_details h5 {
    font-family: var(--font-libre-baskerville);
}

.coordinator_details h6 {
    font-weight: 300;
}

#find_resource {
    padding: 5rem 0;
    background: linear-gradient(rgba(22, 135, 84, 0.250), rgba(22, 135, 84, 0.250)), url('/assets/img/backgrounds/drinkingwater.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#find_resource .resource_details p {
    color: var(--white-color);
}