*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Slab', serif;
}

body{
    overflow-x: hidden;
}

.nav_container{
    display: flex;
    height: 100px;
    width: 100vw;
    background-color: #E47617;
    justify-content: space-between;
}

.nav_logo_container{
    width: 50vw;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.nav_logo_container img{
    height: 80px;
}

.nav_logo_container p{
    padding-left: 20px;
    color: rgb(255, 255, 255);
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 20px
}

.lg_ul{
    display: flex;
    padding-right: 30px;
    height: 100%;
    align-items: center;
}

.lg_ul li{
    text-decoration: none;
    list-style: none;
    padding-right: 20px;
    color: white;
}

.page_content{
    margin-top: 50px;
}

.about_vdf{
    width: 100vw;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.about_vdf img{
    height: 250px
}

.about_vdf_content{
    margin-top: 20px;
    width: 70vw;
}

.about_vdf_content p {
    font-size: 20px;
    text-align: center;
}

.btn_donate {
    background-color: #61A375;
    color: white;
    padding: 19px;
    border: none;
    font-size: 15px;
}

.footer{
    margin-top: 50px;
    width: 100vw;
    padding: 15px;
    background-color: #E47617;
}

.donate_content{
    margin-top: 50px;
}

.about_donation{
    width: 100vw;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.about_donation img{
    height: 700px
}

.about_donation_content{
    margin-top: 20px;
    width: 70vw;
}

.about_donation_content {
    font-size: 20px;
    text-align: center;
    border: 2px solid #E47617;
    padding: 10px;
    border-radius: 10px
}

a{
    text-decoration: none;
    color: white;
}

@media only screen and (min-width: 600px){
    .nav_mobile_icon{
        display: none;
    }

    .nav_mobile_content{
        display: none;
    }
}

@media only screen and (max-width: 600px) {

    .nav_container{
        flex-wrap: wrap;
    }

    .nav_logo_container{
        width: 75vw;
    }

    .nav_logo_container img {
        height: 70px;
    }

    .nav_logo_container p{
        font-size: 20px
    }

    .nav_container ul{
        display: none;
    }

    .nav_mobile_icon{
        height: 100%;
        width: 20vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav_mobile_icon span i{
        color:white
    }

    .nav_mobile_content{
        width: 100vw;
        height: 0px;
        background-color: #E47617;
        border-top: 1px solid white;
        transition: all .9s ease;
    }

    .nav_mobile_content ul{
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    .nav_mobile_content ul li{
        list-style: none;
        padding-top: 10px;
        color: white;
    }

    .about_donation img{
        width: 93vw;
        height: 37vh;
    }
}