
*{
    box-sizing: border-box;
    font-family:'Gotham', sans-serif;
    color: rgb(240, 238, 238);
    
    
    
}
html, body{
    margin: 0;
    padding: 0;
    max-width: 99%;
    margin: 0 auto;
    min-height: 40px;
    
    
}


/* navigation */

.navbar{
    position: fixed;
    left:0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: #fff;
    min-height: 120px;
    z-index: 100;
}

.brand-title{
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    margin-left: 25px;


}
.navbar-links ul{
    margin: 0;
    padding: 0;
    display: flex;
}
.navbar-links li{
    list-style: none; 
    font-size: 1.2rem;
 }

 .navbar-links li a {
    text-decoration: none; 
    color:#fff;
    padding:1rem;
    display: block;
 }

 .navbar-links li:hover {
   background-color: #555;
   
 }

.toggle-button {
    position: absolute;
    top: 2.5rem;
    right: 2rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height:30px;

}
.toggle-button .bar {
    height: 4px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
}

@media only screen and (max-width: 1000px){
    .toggle-button{
        display: flex;
    }
    .navbar-links{
        display:none;
        width: 100%;
    }

    .navbar{
        flex-direction: column;
        align-items: flex-start;
    }
   

    .navbar-links ul{
        width: 100%;
        flex-direction: column;
        margin-top: 20px;
        padding-top: 8px;
        background-color: rgb(78, 77, 77);
        

    }
    .navbar-links li{
        text-align: center;
        font-size: 28px;
        border-bottom: solid #fff;
        padding: 10px;
        
    }
    .navbar-links li:last-of-type{
        border-bottom: none
    }


    .navbar-links a{
        padding: .5rem 1rem;
    }

    .navbar-links.active{
        display:flex;
    }

    .brand-title{
        margin-top: 42px;
    }
    
    
}



.wrapper{
width: 95%;
margin: 0 auto;

}
/* Buttons */

.container{
    display: flex;
    flex-wrap: wrap;
    /* background-color: rgba(128, 128, 128, 0.276); */
    justify-content: space-evenly;
    font-size: 2em;
    /* below is important */
    height: 56em; 
    
    
}



a.btn {
    background-color: hsl(0, 0%, 90%);
    border: 1px solid #f8f2f2;
    outline: none;
    cursor: pointer;
    padding: .5em 1em;
    border-radius: .3em;
    margin: 25px;
    flex-basis: 100%;
    font-size: 1.3em;
    font-style: inherit;
    text-decoration: none;
    display:flex;
    justify-content: center;
    align-items: center;
    


}

.btn:first-of-type{
    margin-top: 160px;
}


.btn.btn-accent{
    background-color: hsl(116, 45%, 50%);
     border-color: hsl(116, 45%, 50%);
     /* color: #fff; */
     min-height: 190px;
     
}

.btn-accent:hover, .btn-accent:focus{
    background-color: hsl(116, 45%, 45%);
    box-shadow: 0 0 5px 0 hsl(116, 45%, 20%);
}

.btn.btn-accent2{
    background-color: hsl(0, 0%, 15%);
    border-color: hsl(0, 0%, 50%);
    /* color: #fff; */
    min-height: 190px;
}
.btn-accent2:hover, .btn-accent2:focus{
    background-color: hsl(0, 0%, 20%);
    box-shadow: 0 0 5px 0 hsl(0, 0%, 20%);
}

/* Footer  */
.footer-bottom{
position: absolute;
left:0;
right: 0;
bottom: 1;
display: flex;
flex-wrap: wrap;
justify-content: center;
background-color: #333;
/* min-height: 140px; */
color: #fff;
width: 100%

}
/* Footer Begin */

footer{
    color:white;
    background-color:#333;
    position:absolute;
    left: 0;
    right: 0;
    margin-top: 25px;
    
    

}

.footer-container{
    display:flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.8em;
}

.flex-row{
    list-style:none;
    
   
}
ul.flex-row{
    display: flex;
    flex-wrap: wrap;
    justify-content:  center;
    padding: 0;
    
}

.flex-row li{
    margin: 30px;
    font-size: 1.2em;

}

li.logo-footer{
height: 1em;

}

li.phone{
    margin: auto;
}
span.phone-number{
    line-height: 98px;
    margin-right: 20px;
}

/* span.email{
    line-height: 98px;
} */


/* left off on email */