body{
    font: 15px/1.5 Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    background-color: #f8f8f8;
}

/*Global*/
.container{
    width: 90%;
    margin: auto;
    overflow: hidden;
    }

ul{
    margin: 0;
    padding: 0;
}

.button_1{
    background-color: #b0c4de;
    color: black;
    padding: 8px;
    font-size: 14px;
    font-weight: bold;
    border-color: black solid ;
    cursor: pointer;
}

.dark{
    padding: 15px;
    background: #35424a;
    color: BLACK;
    margin-top: 10px;
    margin-bottom: 20px;
}

.contact{
    padding: 15px;
    background: #f0f0f0;
    color: BLACK;
    margin-top: 10px;
    margin-bottom: 20px;
    border: black 1px solid;
}

.video{
    padding: 15px;
    background: #ffffff;
    color: #2F4F4F;
    margin-top: 10px;
    margin-bottom: 10px;
    border: black 1px solid;
}
/*Header*/
header{
    background: #eff3f8;
    color: #2F4F4F;
    padding-top: 5px;
    min-height: 70px;
    border-bottom: #43464B 2px solid;
}

header a{
    color: #43464B;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header li{
   /*missing??*/
    display: inline;
    padding: 0 20px 0 20px;
}

header #branding{
    float: left;
}

header #branding h1{
    margin: 0;
}

header nav{
    float: right;
    margin-top: 10px;
}

header .highlight, header .current a{
    color: #2F4F4F;
    font-weight: bold;
}

header a:hover{
    color: #2F4F4F;
    font-weight: bold;
}

/*showcase*/

#newsletter{
    padding: 5px;
    color: #2F4F4F;
    background: #F7F9F9;
    border-bottom: #43464B 1px solid;
}

#newsletter h1{
    float: left;
}

#newsletter form{
    float: right;
    margin-top: 15px;
}

#newsletter input[type="email"]{
    padding: 4px;
    height: 35px;
    width: 250px;
}

/* boxes */
#boxes{
    margin-top: 20px;
    padding-left: 35px;
    padding-right: 20px;
    
}

#boxes .box{
    float: left;
    text-align: center;
    width: 30%;
    padding: 20px;
}

#boxes .box img{
    width: 280px;
    
}

#boxes h3{
    font-weight: bold;
}

#boxes p{
    font-weight: bold;
}

#boxes h1{
    font-size: 20px;
    font-weight: bold;
    padding-left: 20px;
}
/* sidebar */

aside#sidebar{
    float: right;
    width: 30%;
    margin-top: 10px;
}

aside#sidebar .quote input,aside#sidebar .quote textarea{
width: 90%;
padding: 5px;
}

/* main-col */

article#main-col{
    float: left;
    width: 65%;
}

.map{
    background-color: #f0f0f0;
    float: left;
    border: black 1px solid;
    margin-top: 20px;
    margin-bottom: 20px;
}

/*loans-table*/

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

/*services*/

ul#services li{
    list-style: none;
    padding: 20px;
    border: #cccccc solid 1px;
    margin-bottom: 5px;
    background: #e6e6e6;
}

footer{
    padding: 20px;
    margin-top: 0px;
    color: #43464B;
    background-color: #eff3f8;
    text-align: center;
    border-top: #43464B 3px solid
}

footer p{
    font-weight: bold;
}


/*properties-gallery*/
div.gallery {
    border: 1px solid #ccc;
    
}

div.gallery:hover {
    border: 1px solid #777;
}

div.gallery img {
    width: 100%;
    height: auto;
    
}

div.desc {
    padding: 15px;
    text-align: center;
}

* {
    box-sizing: border-box;
   
}

.responsive {
    padding: 10 10px 0 10px;
    float: left;
    width: 25%;
}


/*Start button*/

.buttonArea{
    float: center;
    padding-top: 30px;
    padding-bottom: 150px;
    padding-left: 0px;
    padding-right: 100px;
}


.dropbtn {
    background-color: #ffffff;
    color: black;
    padding: 8px;
    font-size: 16px;
    border-color: black solid ;
    cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: #ffffff;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 115px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {background-color: #f1f1f1}

.show {display:block;}

/*Stop button*/

/*media queries*/
@media(max-width: 768px){
    header #branding,
    header nav,
    header nav li,
    #newsletter h1,
    #newsletter form,
    #boxes .box,
    article#main-col,
    aside#sidebar,
    .map,
    video{
        float: none;
        text-align: center;
        width: 100%;
    }

    header{
        padding-bottom: 20px;
    }

    #showcase h1{
        margin-top: 40px;
    }

    #newsletter button, .quote button{
        display: block;
        width: 100%
    }

    #newsletter form input[type="email"], .quote input, .quote textarea{
        width:100%;
        margin-bottom: 5px;
    }

    /*properties*/

    .responsive {
        width: 100%;
    }
}

    .clearfix:after {
    content: "";
    display: table;
    clear: both;
}

   