body{
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    word-wrap: break-word;
    position: relative;
    min-height: 100vh;
    padding-bottom: 100px;
    overflow-x:hidden!important;
}

/* Global */
.container{
    width: 90%;
    margin: auto;
    overflow: hidden;
}

a{
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

.dark{
    padding: 15px;
    background: #35424a;
    color: #ffffff;
    margin: 10px 0 10px 0;
}

button{
    cursor: pointer;
}

/* Header */
header{
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 70px;
    border-bottom: #ff9900 3px solid;
    font-size: 14px;
}

header #branding{
    float: left;
    width: 50%;
}

header #branding img{
    width: 85%;
}

header #address{
    width: 30%;
    float: left;
    font-weight: bold;
    text-align: center;
}

header #bbb{
    float: left;
    width: 20%;
    margin-top: 10px;
}

header #address a{
    font-size: 14px;
}

/* Nav */
nav{
    background-color: #ff9900;
    float: left;
    width: 100%;
    position: relative;
}

nav ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li{
    display: inline-block;
    padding: 0 20px 0 20px;
}

nav a{
    display: block;
    line-height: 40px;
}

nav .current a{
    font-weight: bold;
}

nav a:hover{
    font-weight: bold;
}

.dropdown ul{
    display: none;
    position: absolute;
    top: 40px;
}

nav ul li:hover > ul{
    display: inherit;
}

.dropdown li{
    width: 230px;
    float: none;
    display: list-item;
    position: relative;
    border: 1px solid #ffffff;
    background-color: #ff9900;
    border: none;
}

.dropdown > a:after{
    content: ' ▼';
}

.dropdown > a:only-child:after{
    content: '';
}

/* Showcase */
#showcase{
    min-height: 500px;
    background: url('../images/IMG_1226_crop.jpg') no-repeat;
    background-size: 100%;
    text-align: center;
    color: #ff9900;
    width: 100%;
}

#showcase h1{
    text-transform: uppercase;
    margin-top: 100px;
    font-size: 48px;
    margin-bottom: 10px;
}

#showcase p{
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 15px;
}

.shade-box{
    background-color: rgba(0, 0, 0, 0.6);
}

.button_1{
    height: 38px;
    background: #ff9900;
    border: 0;
    padding: 0 20px 0 20px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Boxes */
#boxes{
    margin-top: 50px;
}

#boxes .box{
    float: left;
    text-align: center;
    width: 20%;
}

#boxes .box img{
    width: 150px;
}

/* Main-col */
#main-col{
    float: left;
    width: 65%;
}

.page-title{
    padding-top: 10px;
    font-size: 36px;
}

/* Service Request */
#service-request{
    float: none;
    width: 40%;
    align-content: center;
    text-align: center;
    overflow: auto;
}

#service-request input, #service-request textarea{
    width: 300px;
}

/* Sidebar */
#sidebar{
    float: right;
    width: 25%;
    margin-top: 10px;
}

#sidebar h3{
    text-align: center;
}

#sidebar p{
    padding-bottom: 10px;
}

#sidebar form{
    text-align: center;
    justify-items: left;
}

/* Form */
label span{
    display: inline-block;
    width: 120px;
    text-align: right;
}

input, textarea{
    width: 250px;
    box-sizing: border-box;
    border: 1px solid #999999;
}

/* Badges */

#badges{
    margin: 100px;
    padding: 10px;
    text-align: center;
}

#badges .award{
    float: left;
    text-align: center;
    width: 25%;
}

/* Footer */
footer{
    font-size: 15px;
    width: 100%;
    padding: 20px;
    margin-top: 20px;
    color: #000000;
    background-color: #ff9900;
    text-align: center;
    position: absolute;
    bottom: 0;
}

/* Media Queries */
@media(max-width: 768px){
    header #branding,
    header #address,
    header #bbb,
    nav,
    nav li,
    #boxes .box,
    #badges .award,
    article#main-col,
    article#service-request,
    aside#sidebar{
        float: none;
        text-align: center;
        width: 100%;
        margin: 0;
    }

    #branding img{
        width: 100%;
    }

    nav li:hover ul{
        right: 0;
        left: auto;
    }

    #showcase{
        background-image: url(/images/IMG_1226_crop_one.jpg);
    }

    #showcase h1{
        margin-top: 40px;
    }

    button{
        width: 60%;
    }

    form input[type="text"],
    form input[type="tel"],
    form input[type="email"],
    textarea{
        width: 60%;
        margin-bottom: 5px;
    }
    
}