/* 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 - START */
    main article{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        line-height:calc(1rem + 1.75vh);
    }
        /* SECTION1 - START */
        .main-article-section1{
            padding-top: 20vh;
            padding-bottom: 5vh;
            width: 100vw;
            display: flex;
            align-items: center;
            flex-direction: column;
            background-color: #c1d9be;
        }
            .main-article-section1-h1-wrapper{
                padding: 3vw;
                padding-left: 5vw;
                color: #253e23;
                font-size:calc(1rem + 3vw);
                font-family: 'Jost', sans-serif;
                font-weight: 700;
                text-align: left;
            }
                .main-article-section1-h1-wrapper span{
                    background-color: #253e23;
                    color: white;
                }
        .main-article-section1-h2-wrapper{
            color: #253e23;
            padding: 2vw;
            padding-left: 5vw;
            font-size: calc(1rem + .75vw);
            font-family: 'PT Sans Narrow', sans-serif;
            font-weight: 600;
        }
        #a-registerwithus{
            text-decoration: none;
            background-color: white;
            padding: 1rem;
            border-radius: 25px;
            font-size: 1.25rem;
            font-weight: 600;
        }
            #main-article-section1-go-down-animated-link{
                border: solid 1px #253e23;
                border-radius: 50%;
                padding: 1rem;
                font-size: 1.5rem;
                color: #253e23;
                animation: bounce 0.5s ease-in forwards infinite alternate;
            }
        /* SECTION1 - END */




        /* SECTION2 - START */
        .main-article-section2{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100vw;
            padding-top: 5vh;
            padding-bottom: 5vh;
        }
            .main-article-section2-h2-wrapper{
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                margin: auto;
                font-weight: 600;
                /* padding-bottom: 5vh; */
            }
                .main-article-section2-h2-wrapper h2 {
                    color: #253e23;
                    padding: 5vw;
                    padding-bottom: 2.5vw;
                    font-size: calc(1rem + .75vw);
                    font-family: 'PT Sans Narrow', sans-serif;
                }
        .chart-wrapper{
            padding: 1vw;
            border: 1px solid #253e23;
            border-radius: 7px;
            width: 90%;
            border: 1px solid black;
        }

        /* SECTION2 - END */
        



        /* SECTION3 - START */
        .main-article-section3{
            background-color: #c1d9be;
            width: 100vw;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding-top: 5vh;
            padding-bottom: 5vh;

        }
            .main-article-section3-h2-wrapper h2 {
                color: #253e23;
                padding: 5vw;
                padding-bottom: 2.5vw;
                font-size: calc(1rem + 1vw);
                font-family: 'PT Sans Narrow', sans-serif;
                font-weight: 600;
            }
            .maps-wrapper{
                width: 90%;
                height: 90vh;
                border: 1px solid #253e23;
                border-radius: 7px;
                
            }
                .maps-wrapper iframe{
                    width: 100%;
                    height: 100%;
                }
        /* SECTION3 - END */

        

        
/* MAIN - END */



