body{
    margin: 0px;
    padding: 0px;
}

nav{
    width: 100%;
    height: 60px;
    background-color: #ffff;
    box-shadow: 0px 0px 72px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
nav img {
    width: 150px;
    height: 39px;
    /* margin: 20px; */
    position: absolute;
    left: 0px;
    margin-left: 20px;
    margin-top: -10px;
}
nav div {
    margin: 20px;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
nav div a{
    margin-left: 10px;
    margin-right: 10px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: black;
    transition: 0.2s;
}
nav div a:hover{
    color: #498138;
    transition: 0.2s;
}
#contact{
    position: absolute;
    right: 0px;
    top: 0px;
    margin: 7px;
    padding: 10px 20px;
    background-color: #498138;
    border-radius: 5px;
    text-decoration: none;
    color: #ffff;
    transition: all .2s linear;
    font-family: 'Poppins', sans-serif;
}
#contact:hover{
    background-color: #229100;
    transition: all .2s linear;
}
.contact_selection{
    width: 200px;
    margin-top: 15px;
    right: 8px;
    position: fixed;
    background-color: #ffff;
    height: 0px;
    box-shadow: 0px 0px 72px rgba(0, 0, 0, 0.15);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all .2s linear;

}
.contact_selection a{
    transition: all .2s linear;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: black;
    padding: 30px 20px;
    width: 100%;
    text-align: center;
    text-decoration: none;

}

.contact_selection a:hover{
    transition: all .2s linear;
    background-color: #f2f2f2;
}
#mini_menu{
    width: 100%;
    height: 0%;
    background-color: #ffff;
    position: fixed;
    overflow: hidden;
    transition: all .2s linear;
    z-index: 100;
    margin-top: 10px;
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}
#mini_menu_btn{
    display: none;
    border: none;
    background-color: #498138;
    color: #ffff;
    font-family: 'Poppins', sans-serif;
    margin: 10px;
    padding: 10px 10px;
    border-radius: 5px;
}
#mini_menu_btn:hover{
    background-color: #229100;
}

#mini_nav_links {
    margin: 20px;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#mini_nav_links a{
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
    border: 20px;
    background-color: #f2f2f2;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: black;
    transition: 0.2s;
    padding: 20px;
    text-align: center;
}
#mini_nav_links a:hover{
    color: #000000;
    transition: 0.2s;
    background-color: #2291003a;
}