@media screen and (min-width:668px){
    header{
        display: flex;
    }
    a#menu{
        display: none;
    }
    .navigation{
        display: flex;
        flex-direction: row;
        background-color: white;
    }
    .navigation a{
        display: flex;
        color:var(--primary-color);
        padding: 3em;
    }
    .navigation a:hover, .navigation a:active{
        font-weight:bold;
        background-color: white;
        border-bottom: 3px solid var(--second-color);
        padding-bottom: 5px;
    }
    .hero-section img{
        width: 1000px;
        height: 500px;
    }
    div .hero-text{
        background-color: rgba(255, 255, 255, 0.574);
        position: absolute;
        margin:10px;
        border-radius: 5px;
        
    }
    .hero-text{  
        padding:30px;
    }
    .hero-text p {
        padding: 20px 0 20px;
        font-size: 20px;
        font-weight: 500;
    }
    .more{
        display: flex;
        flex-direction: row;
        justify-content:space-around;
        align-items: center;
        height: 15em;
    } 
    .mission{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    .mission img{
        width: 500px;
        height: 333px;
    }
    footer p{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        margin-left:40px;
       }
   
       /* join page styling */
       fieldset{
        width: 700px;
    }
    .mform input[type="text"],
.mform input[type="tel"],
.mform input[type="email"]
{
    background-color: var(--second-color);
    display:block;
    border:solid 1px var(--second-color);
    border-radius: 6px;
    padding: .75rem;
    color:#556065;
    width:100%;
    max-width: 670px;
    appearance:none;
}

       
}