<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", "Open Sans"
}

body {
    height: 100vh;
    /* background-color: rgb(200, 200, 200); */
    font-family: "Montserrat";
}

li {
    list-style: none;
}

a { 
    text-decoration: none; /* Removes underline */
    color: black;
    font-size: 1rem;
}

a:hover {
    color: orangered;
}

/* HEADER */
header {
    background-color: #a8846c;
    /* height: 118px; */
    position: relative;
    padding: 0 2 rem;
}

.navbar {
    width: 100%;
    height: 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}

.navbar .toggle_btn i {
    color: black;
    font-size: 1.5rem;
    cursor: pointer;
    /* display: none; */
}

/* DROPDOWN MENU */
.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 120px;
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open {
    height: 240px;
}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .navbar .links {
        display: none
    }
    
    .navbar .toggle_btn {
    display: block;
    }

    .dropdown_menu {
        display: block;
    }
}

@media (max-width: 576px) {
    .dropdown_menu {
        left: 2rem;
        width: unset;
    }
}

/* PARALLAX SCROLLING */
.parallax {
    background-image: url("homepage1.png");
  
    /* Set a specific height */
    min-height: 600px; 
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

h1 {
    color: black;
    font-family: "Montserrat";
    text-align: center;
}

p{
    font-family: "Montserrat";
    text-align: center;
}

.kingdom {
    display: flex;
    padding: 20px;
    justify-content: space-between;
}

.kingdom .h2 {
    text-align: left;
}

.kingdom li {
    list-style-type: square;
}

.kingdom p {
    align-items: left;
}

/* OUR WORK */

.our-work {
    padding: 20px;
    background-color: #a8846c;
    align-items: left;
}

.our-work p{
    /* padding: 20px;
    background-color: #a8846c; */
    align-items: left;
}

.education-container {
    display: flex;
    padding: 20px;
    justify-content: space-between;
}

.health-container {
    display: flex;
    padding: 20px;
    justify-content: space-around;
}

.water-container {
    display: flex;
    padding: 20px;
    justify-content: space-around;
}

.microenterprise-container {
    display: flex;
    padding: 20px;
    justify-content: space-around;
}

.form {
    align-items: center;
}
/* OUR IMPACT */

.our-impact {
    padding: 20px;

}
.impact-container {
    display: flex;
    padding: 20px;
    justify-content: space-around;
}

.impact-container li {
    list-style-type: square;
    padding: 5px;
}

.payment { 
    align-items: center;
}

.payment li{ 
    list-style-type: square;
    padding: 5px;
}
/* FOOTER */

footer {
    background-color: #a8846c;
    padding-top: 25px;
}

.container {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}
.footer-contact {
    margin-left: 10px;
}
.footer-content {
    width: 100%;
}

h3 {
    /* font-size: 28px; */
    margin-bottom: 15px;
    text-align: center;
}

.footer-content p{
    width: 200px;
    margin: auto;
    padding: 7px;
    align-items: center;
}

.footer-content ul {
    text-align: center;
}

.list {
    padding: 0
}

list li {
    width: auto;
    text-align: left;
    list-style-type: none;
    padding: 7px;
    position:relative
}

.list li::before {
    content: "";
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 100%;
    width: 0;
    height: 2px;
    background: orange;
    transition-duration: .5s;
}

.list li::after {
    width: 70px;
}

.bottom-bar {
    background: rgb(232, 228, 224);
    text-align: center;
    padding: 8px 0;
    margin-top: 25px;
}



  

</pre></body></html>