body{
    background-color: #efefef;
}

h1, h2{
    font-family: 'Merriweather', serif;
}

nav{
    min-height: 50px;
    background-color: white;
}

#navrow{
    margin-right: auto;
    margin-left: auto;
}

nav i{
    font-size: 30px;
}

#nav-menu{
    list-style-type: none;
    display: none;
    color: black;
}

nav a{
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    color: black;
}

.users{
    padding-top: 10px;
    text-align: right;
}

.header{
    min-height: 200px;
    max-height: 280px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-image: url('../img/dallas.png');
    text-align: center;
}

#content{
    background-color: white;
    border-radius: 5px;
    position: relative;
    top: -50px;
    padding: 20px;
}

#content h2{
    text-align: center;
}

#company, #services, #contact{
    margin-top: 20px;
    margin-bottom: 20px;
}

#company h2{
    margin-bottom: 20px;
}

#services, #mission, #contact{
    padding-top: 50px;
    text-align: center;
}

#services i{
    font-size: 70px;
    color: gray;
}

#mission{
    background-color: #177562;
    color: white;
    padding-bottom: 50px;
}

#contact p{
    margin-top: 10px;
}

.brand-btn{
    background-color: #177562;
    padding: 15px;
    border-radius: 25px;
    font-size: 20px;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.brand-btn a{
    color: white;
}

.brand-btn a:hover{
    color: white;
}

#prefooter img{
    position: relative;
    top: 33px;
}

footer{
    background-color: black;
    color: white;
    padding-top: 50px;
    text-align: center;
}

footer ul{
    list-style-type: none;
    text-align: center;
}

footer li{
    display: block;
}

footer a{
    color: white;
}

footer i{
    color: white;
    font-size: 20px;
    float: none;
}

#service-list{
    background-color: white;
    margin-top: 50px;
    border-radius: 5px;
    padding-top: 30px;
}

.services{
    margin-top: 60px;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.service-item{
    text-align: center;
    width: 90%;
    height: 200px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.51);
    -moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.51);
    box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.51);
}

#contact-page{
    background-color: white;
    margin-top: 50px;
    padding: 30px;
    text-align: center;
}

#contact-page h1{
    border-bottom: 1px solid gray;
    margin-bottom: 30px;
}

#testimonials{
    margin-top: 50px;
    padding: 30px;
}

#testimonials h1{
    text-align: center;
}

#testimonials blockquote{
    height: 100%;
}

.testimonial-row{
    margin-top: 0px;
    margin-bottom: 0px;
}

.testimonial-row p{
    border-left: 1px solid gainsboro;
    padding-left: 10px;
    color: gray;
    height: 100%;
}

.testimonial-row p span{
    font-style: italic;
    font-weight: lighter;
}

@media only screen and (min-width: 640px){
    #nav-menu{
        display: inline !important;
    }
    
    #nav-menu li{
        display: inline-block;
        margin-top: 10px;
        margin-right: 10px;
    }
    
    .header{
        min-height: 360px;
    }
    
    footer{
        text-align: justify;
    }
    
    footer ul{
        text-align: right;
    }
    
    footer li{
        display: inline-block;
        margin: 5px;
    }
    
    footer i{
        float: right;
    }
    
    .service-item{
        height: 300px;
    }
    
    .testimonial-row{
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

a:hover{
    color: #177562;
}

.logo-img{
    max-height: 50px;
}

.emphasize{
    font-weight: bold;
}

.full-height{
    height: 100%;
}

.flood{
    width: 100%
}

.whiteout{
    background-color: white;
    border-radius: 5px;
}

.clear-pad{
    padding: 0px;
}

/* pulled from https://www.labnol.org/internet/embed-responsive-google-maps/28333/*/
.google-maps {
        position: relative;
        padding-bottom: 75%; /* This is the aspect ratio */
        height: 0;
        overflow: hidden;
    }
    .google-maps iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }