
/* FONT IMPORTS - START */
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&display=swap');
/* FONT IMPORTS - END */




/* GENERAL ELEMENTS - START */
html{
    scroll-behavior: smooth;
}
a {
    font-family: 'Jost', sans-serif;
    color: #253e23;
}
/* GENERAL ELEMENTS - END */




/* ANIMATIONS - START */
@keyframes bounce{
    100%{
        transform: translateY(15px);
    }
}
@keyframes change_color_from_white_to_green {   
    100%{
        background-color: #253e23;
        color: white;
    }
}
/* ANIMATIONS - END */




/* HEADER - START */
header{
    overflow: hidden;
    width: 100vw;
    height: 10vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    position: fixed;
    font-weight: 600;
    box-shadow: 0px 2px 7.5px rgba(94, 121, 108, 0.5);
}
    header menu{
        height: 100%;
        width: 100%;
    }
        header menu nav { 
            height:100%;
            width: 100%;
        }
            header menu nav ul {
                width: 100%;
                height: 100%;
                display: flex;
            }

                menu nav ul li {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    height: 100%;
                    margin: auto;
                    font-size: calc(1rem + 0.3vw);
                    transition: 0.5s;
                }
                    menu nav ul li a{
                        text-decoration: none;
                    }
                menu nav ul li:hover{
                    background-color: #253e23;
                }
                menu nav ul li:hover a{
                    color: white;
                }
/* HEADER - END */




/* MAIN - START */
main{
    overflow:hidden;
}
    .main-article-section1{
        width: 100vw;
        min-height: 75vh;
        padding-top: 20vh;
        padding-bottom: 5vh;
        background-color: #c1d9be;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
        .main-article-section1 form{
            /* overflow: hidden; */
            height: 90%;
            width: 90%;
        }
            .form-element-wrapper{
                display: flex;
                width: 100%;
                flex-direction: column;
                justify-content: center;
                align-items: left;
                margin-bottom: 5vh;
                font-size: calc(1rem + 1vw);
            }
                .form-element-wrapper label{
                    padding-bottom: 1vw;
                    color: #253e23;
                    font-family: 'PT Sans Narrow', sans-serif;
                    font-weight: 500;
                    /* font-family: 'Jost', sans-serif; */
                    
                }
                .form-element-wrapper input{
                    border-radius: 5px;
                    padding: 1vw;
                    color: #253e23;
                    font-family: 'PT Sans Narrow', sans-serif;
                    /* font-family: 'Jost', sans-serif; */
                    font-size: calc(1rem + 0.5vw);
                }
                .message-wrapper textarea{
                    border-radius: 5px;
                    height: 30vh;
                    resize:none;
                    padding: 2vw;
                    font-size: calc(1.25rem + 0.5vw);
                    font-family: 'PT Sans Narrow', sans-serif;
                    /* font-family: 'Jost', sans-serif; */
                }
                .button-wrapper button{
                    overflow: hidden;
                    margin: auto;
                    width: 25%;
                    padding: .75rem;
                    color: white;
                    background-color: #253e23;
                    border: none;
                    border-radius: 50px;
                }



                
