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

html {
    scroll-behavior: smooth;
}

body {
    font-size: 17px;
    line-height: 1.4;
    color: #555555;
    /* color: #000; */
    background-color: #fff;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
}



a {
    display: inline-block;
    color: #555555;
    transition: all 0.3s linear;
    text-decoration: none;
}

a:hover {
    color: #106a39;
}

span {
    display: inline-block;
}

img {
    display: inline-block;
}

p {
    margin-bottom: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    line-height: 1.4;
    color: #2b2b2b;
    /* padding-bottom: 5px; */
    margin-bottom: 10px;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 25px;
}

ul {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

.spacing {
    padding: 30px 0;
}

/*  */

.header_wrapper {
    width: 100%;
    min-height: 90px;
}

header.header {
    position: relative;
    z-index: 99;
    padding: 10px 0;
    background: #fff;
    font-size: 18px;
    border-bottom: 1px solid #aaa6;
    transition: all 0.3s linear;
    position: fixed;
    width: 100%;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    width: 210px;
}

.header .logo a {
    display: block;
}

.header .logo a img {
    width: 100%;
}

.header .header_nav {
    display: flex;
    align-items: center;
}

.navigation {
    padding: 0 15px;
}

.navigation ul {
    display: flex;
}

.navigation ul li {
    margin: 0 10px;
}

.navigation ul li a {
    padding: 5px 10px;
    position: relative;
    color: #181822;
    font-weight: 400;
    font-size: 16px;
}

.header .header_nav .contact_button a {
    color: #106a39;
    padding: 7px 28px;
    border: 1.5px solid #106a39;
    border-radius: 10px;
    font-weight: 400;
}

.navigation ul li a:hover {
    color: #106a39;
}

.navigation ul li a:after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #106a39;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}

.navigation ul li a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}
.home_about{
    padding-top: 0;
}

.home_about .content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: CENTER;
}

.home_about .content .image_section {
    width: 100%;
    /* max-width: 50%; */
    flex: 1;
}

.home_about .content .text {
    width: 100%;
    /* max-width: 50%; */
    flex: 1;
}

.home_about .content .image_section .image_wrap {
    width: 100%;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_about .content .image_section .image_wrap img {
    width: 100%;
}

.home_about .content .image_section .image_wrap img.rotateimg {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    animation: 15s linear infinite rotation;
    height: 100%;
}

.home_about .content .image_section .image_wrap img.robotimg {
    max-width: 63px;
}

@keyframes rotation {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.home_about .content .text h6,
h6.text {
    font-size: 18px;
    color: #106a39;
    display: inline-block;
    position: relative;
    font-weight: 500;
}

.home_about .content .text h6:before,
h6.text::before {
    content: "";
    position: absolute;
    top: -15px;
    width: 100%;
    border: 1px solid #106a39;
}

.home_about .content .text h3 {
    padding: 10px 0;
    margin: 0;
}

.button_wrap.readmore {
    padding-top: 20px;
    text-align: center;
}

.button_wrap.readmore a {
    color: #106a39;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.button_wrap.readmore a img {
    margin-left: 10px;
    width: 34px;
}

.home_banner .banner_image img {
    width: 100%;
}

.home_banner .button_wrap {
    position: absolute;
    bottom: 230px;
    left: 50px;
    padding: 20px 30px;
}

.home_banner .banner_content {
    position: relative;
}

.home_banner .button_wrap span {
    display: block;
    margin-bottom: 13px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    opacity: 0.5;
}

.home_banner .button_wrap a img {
    width: 100%;
    max-width: 160px;
}

.video_section .video_content {
    position: relative;
    width: 100%;
}

.video_section .video_content .video_image {
    width: 100%;
}

.video_section .video_content .content {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 540px;
}

.video_section .video_content .content h4 {
    color: #fff;
    font-size: 45px;
}

.video_section .video_content .content .play_button a {
    color: #fff;
    border: 2.5px solid #fff;
    padding: 5px 30px;
    border-radius: 16px;
    font-size: 20px;
}

.video_section .video_content .content .play_button a i {
    margin-right: 15px;
}

.video_section .video_content .content .play_button {
    padding: 25px 0;
}

.home_card {}

/* 
.home_card .card_wrap {
    display: flex;
    justify-content: center;
    padding: 0 30px;
    overflow: hidden;
}

.home_card .card_wrap ._card {
    display: flex;
    flex-direction: column;
    padding: 6px;
    transform: skew(20deg);
}

.home_card .card_wrap ._card .card_header {
    display: flex;
    justify-content: space-between;
    height: 163px;
    align-items: flex-start;
}

.home_card .card_wrap ._card .card_header {}

.home_card .card_wrap ._card .card_header .image img {
    width: 100%;
    max-width: 80%;
}

.home_card .card_wrap ._card .card_header .number {
    font-size: 30px;
    font-weight: bold;
    color: #A1A1A1;
    background-color: #aaaaaa73;
    padding: 10px 20px;
    transform: skew(-20deg);
}

.home_card .card_wrap .item {
    transform: skew(-20deg);
    padding: 15px 35px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.home_card .card_wrap ._card .card_body {
    padding-top: 20px;
}

.home_card .card_wrap ._card .card_body h5 {
    font-size: 20px;
    color: #106A39;
}

.home_card .card_wrap ._card .card_body p {
    margin: 0;
}

.home_card .card_wrap ._card .card_header .image {
    text-align: right;
} */

.home_card .card_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.home_card .card_wrap .card {
    padding: 10px;
}

.home_card .card_wrap .card img {
    width: 100%;
}

.slider_wrap .item img {
    width: 100%;
}

.slick-dots li button {
    background-color: #aaa;
    border-radius: 50%;
    width: 15px;
    height: 15px;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li.slick-active button {
    background-color: #fff;
}

.slider_wrap .slick-dots {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 11px;
}

.contribution_content {
    position: relative;
}

.contribution_content .image {
    width: 100%;
}

.contribution_content .image img {
    width: 100%;
}

.contribution_content .text {
    position: absolute;
    top: 100px;
    width: 100%;
    text-align: center;
    color: #fff;
}

.contribution_content .text p {
    font-size: 25px;
    font-weight: 400;
}

.contribution_content .text h2 {
    font-size: 60px;
    color: #fff;
}

.contribution .contribution_data {
    color: #fff;
    position: absolute;
    bottom: 100px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.contribution .contribution_data h5 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 0;
}

.contribution .contribution_data .data_details {
    width: 100%;
    text-align: center;
    padding: 20px;
    max-width: 200px;
}

.contribution .contribution_data h5 small {
    font-size: 12px;
}

.vision .title {
    text-align: center;
}

.vision .title h3 span {
    padding: 0 23px 0 15px;
}

.vision .vision_image {
    padding: 50px 0;
}

.vision .vision_image .slick-track {
    display: flex;
    align-items: center;
}

.vision .vision_image .image_wrap {
    padding: 10px;
}

.vision .vision_image .image_wrap img {
    width: 100%;
}

.vision p {
    text-align: center;
}

.country .image_wrap {
    padding: 15px 0 15px 30px;
}

.home_about .content .text h6 img {
    width: 76px;
    margin-top: 5px;
}

.fundraising .privacy_banner .image_wrap {
    display: flex;
    width: 80%;
    justify-content: space-between;
    position: absolute;
    bottom: -20px;
    left: auto;
    left: 0;
    margin: 0 auto;
    right: 0;
}

.fundraising .privacy_banner .image_wrap img {
    width: 80px;
}


.contribution_content.mobile {
    display: none;
}

/* Footer */

footer.footer {
    box-shadow: 0px 6px 40px #0906370f;
    margin-top: 20px;
    padding: 30px 0;
}

.footer .footer_content {
    display: flex;
    justify-content: space-between;
}

.footer .footer_content .item {
    width: 100%;
    padding-right: 40px;
    flex: 1 1 auto;
}

.footer .footer_content .item:last-child {
    padding-right: 0;
    max-width: 18%;
}

.footer_logo img {
    width: 100%;
    max-width: 200px;
}

.footer .button_wrap span {
    font-size: 16px;
    padding-bottom: 15px;
    display: block;
}

.footer .button_wrap a img {
    width: 100%;
    max-width: 120px;
}

.footer .copyright {
    margin: 0;
    padding: 6px 0;
    font-weight: bold;
}

.footer .footer_content .item h5 {
    padding-top: 10px;
    font-size: 17px;
    margin-bottom: 10px;
}

.footer_links ul {
    display: flex;
    flex-wrap: wrap;
}

.footer_links ul li {
    width: 100%;
    max-width: 50%;
    margin-bottom: 15px;
}

.social_links ul li {
    margin-bottom: 15px;
}

.social_links ul li i {
    font-size: 16px;
    margin-right: 14px;
    width: 27px;
    height: 27px;
    border: 1px solid #106a39;
    padding: 5px;
    border-radius: 50%;
    justify-content: center;
    display: flex;
    align-items: end;
    color: #106a39;
}

.social_links ul li a {
    display: flex;
    align-items: center;
}

.footer .footer_content .item.contact p b {
    display: block;
    padding-bottom: 5px;
}

.footer .footer_content .item.contact p {
    margin-bottom: 10px;
}

.footer .footer_content .item.contact ul li a {
    font-weight: 400;
}

/* Contact us page  */

.contactus_content {
    display: flex;
    align-items: center;
    width: 100%;
}

.contactus_content .map_section,
.contactus_content .form_section {
    width: 100%;
    max-width: 50%;
    padding: 20px;
}

.contactus_content .map_section img {
    width: 100%;
}

.contactus_content .form_section .form_title {
    padding: 20px 0;
}

.form_field {
    width: 100%;
    margin-bottom: 20px;
}

.form_field label {
    display: block;
    margin-bottom: 5px;
}

.form_field .input {
    width: 100%;
    background: #f6f6f6;
    border: none;
    min-height: 55px;
    border-radius: 12px;
    padding: 10px 15px;
    transition: all 0.3s linear;
    outline: none;
    border: 2px solid transparent;
}

.form_field .input:focus {
    border: 2px solid #106a39;
}

.contactus_content .form_section {
    padding: 20px 55px;
}

.form_field textarea.input {
    height: 150px;
}

.contactus_content .button {
    border-radius: 8px;
    border: 1px solid #106A39;
    background-color: #106A39;
    color: #fff;
    padding: 8px 24px;
    cursor: pointer;
    font-size: 16px;
}

.contactus_content .button_wrap {
    text-align: right;
}


/* Privacy Policy */

.privacy_banner {
    padding: 23px 0 62px 0;
    background: #dfefe5 0% 0% no-repeat padding-box;
    box-shadow: 0px 6px 40px #0906370f;
    position: relative;
}

.privacy_banner .container {
    display: flex;
    max-width: 1200px;
    position: relative;
    justify-content: flex-end;
}

.privacy_banner .banner_title {
    width: calc(100% - 160px);
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.animated_image {
    width: 160px;
    height: 160px;
    padding-right: 20px;
}

.animated_image .rotate_img {
    width: 100%;
    animation: 15s linear infinite rotation;
}

.animated_image img.robotimg {
    position: absolute;
    width: 42px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.animated_image .image_wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Privacy_policy_content {
    width: 100%;
    position: relative;
}

.Privacy_policy_container {
    background: #ffffff 0% 0% no-repeat padding-box;
    border-radius: 32px;
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding: 45px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-top: -45px;
}

.privacy_banner .banner_title h3 {
    letter-spacing: 2.36px;
    font-size: 50px;
    margin-bottom: 0;
}

.Privacy_policy_container p {
    line-height: 1.7;
    margin-bottom: 25px;
}

.privacy_banner .banner_bg {
    position: absolute;
    left: 50%;
    top: 33%;
    transform: translate(-50%, -50%);
    width: 70%;
    z-index: -1;
}

.privacy_banner .banner_bg img {
    width: 100%;
}

.faqs .privacy_banner .banner_bg img {
    max-width: 390px;
}

/* FAQs */

.faqs .accordion_container {
    max-width: 780px;
    margin: 0 auto;
    padding: 20px 0;
}

.faqs .accordion_head {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #2b2b2b;
    padding-right: 20px;
}

.faqs .accordion_body {
    padding-top: 15px;
    color: #686868;
}

.faqs .Privacy_policy_container .accordion_body p {
    margin-bottom: 0;
}

.faqs .plusminus {
    float: right;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    right: 10px;
}

.faqs .accodion_item {
    border: 1px solid #d8d8d8;
    border-radius: 16px;
    margin-bottom: 15px;
    padding: 15px 20px;
    position: relative;
}

/* About */

.Privacy_policy_container ._section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.Privacy_policy_container ._section .content {
    width: 100%;
}

.Privacy_policy_container ._section .image_wrap {
    width: 100%;
    text-align: center;
    max-width: 30%;
    padding: 20px;
}

.Privacy_policy_container ._section .image_wrap img {
    width: 100%;
}

.Privacy_policy_container ._section .content h4 {
    font-size: 20px;
}

.Privacy_policy_container ._section.full_width .image_wrap {
    max-width: 100%;
}

.Privacy_policy_container ._section.full_width {
    display: block;
}




.funcraising_content {
    display: flex;
}

.funcraising_content .image_wrap img {
    width: 100%;
}

.funcraising_content .content {
    width: 100%;
    max-width: 50%;
    padding: 20px;
}

.funcraising_content .excel_view {
    width: 100%;
    max-width: 50%;
    padding-right: 30px;
    text-align: center;
}

.funcraising_content .download-button {
    border-radius: 8px;
    border: 1px solid #106A39;
    background-color: #106A39;
    color: #fff;
    padding: 8px 24px;
    cursor: pointer;
    font-size: 16px;
    margin: 0 auto;
}

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


.funcraising_content .image_wrap {
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 10px;
}

.Privacy_policy_content p.text {
    margin-bottom: 5px;
}
.Privacy_policy_content a{
    color: #106a39;
    font-weight: 500;
}


.Privacy_policy_content ul {
    list-style: disc;
    padding-left: 35px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.Privacy_policy_content ul li {
    margin-bottom: 10px;
}

.Privacy_policy_content h4 {
    font-size: 21px;
    padding: 10px 0;
}

.home_about p,
.vision p{
    line-height: 1.8;
}

.header .contribution_link::after{
    display: none;
}

.aboutus_page .Privacy_policy_container p {
    margin-bottom: 0;
}


.validation-error p {
    margin: 0;
    font-size: 14px;
    text-align: left;
    padding: 0;
}



/*////////////////////////// Media /////////////////////////////*/


@media (max-width:575px){
    body{
    font-size: 15px;
    }
}