* {
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0; 
}
html {
    width:100%;
    height: 100%;
}
body {
    width: 100%;
    min-height: 100%;
	position: relative;
}
a {
    font-family: 'Ubuntu', sans-serif;
}

h1 {
    width: 100%;
    text-align: center;
    padding: 5px;
    margin-top: 20px;
    font-family: 'Ubuntu', sans-serif;
}
h2 {
    /*position:absolute;
    clear:both;*/
    text-align:center;
    width:100%;
    margin:10px 0;
}
h3 {
    padding:5px
}
.pre-header {
    background: rgb(53, 52, 52);
    height: auto;
    width: 100%;
    color: rgb(204, 204, 204);
    text-align: center;
}

header {
    width: 100%;
    height: auto;
    margin-bottom: -5px;
    padding: 0 200px;
    display: inline-block;
    background: #ffffff;
}

header .img1 {
    float: left;
    margin: 5px 0;
    padding: 10px 0;  
}

header .img2 {
    float: right;
    margin: 10px 0 5px 0px;
}

#navbar {
    font-size: 1rem;
    width: 100%;
    /*background: #9b9a9a;*/
    height: 60px;
    padding-top: 10px;
    text-align: center;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(155,154,154,1) 58%);
}

#navbar .current {
    color: rgba(139, 62, 61, 1.00);
    font-weight: bold;
}
#navbar ul {
    padding: 10px 15px;
    list-style: none;
    /*border: 1px solid red;*/
}
/*This makes ul li go left of header*/
#navbar ul li {
    display: inline-block;
    position: relative;
}
/*This sets values for un-ordered list items in "ul li a"*/
#navbar ul li a {
    padding: 0 20px;
    color: rgb(46, 46, 46);
    text-decoration: none;
}
/*This makes ul li ul size and hidden beneath ul li, "z-index" only when hover drop-down not remaining*/
#navbar ul li ul {
    z-index: 1;
    text-align: left;
    position: absolute;
    top: 18px;
    background: rgb(155, 154, 154);
    margin-top: 0px;
    width: 180px;
    display: none;
}
/*This displays ul li ul when hovering*/
#navbar ul li:hover ul {
    display: block;
    transition: 0.4s;
}
/*This gives width of "ul li ul li" relevant to parent"ul li"*/
#navbar ul li ul li {
    width: 140px;
}
#navbar ul li ul li a{
    display: block;
    color: #ffffff;
    padding: 15px 0px 15px 0px;
    /*border-bottom: 1px solid #d8c0cd;*/
    transition: all 0.3s;
}
#navbar ul li ul li a:hover {
    padding-left: 10px;
    transition: all 0.3s;
}

/*This sets ul li background color and react time while hovering*/
#navbar ul li a:hover {
    color: #5e5c5c;
    transition: 0.3s;
}

/*Showcase*/
#showcase{
    position: absolute;
    width: 100%;
    height: 330px;
    background-image: url(../images/chimney1.png);
    background-color: black;
    background-repeat: no-repeat;
    background-size : cover;
    opacity: 1.0;
    text-align: center;
    color: white;
}

#showcase h1{
    padding: 100px 10px 10px 10px;
    color: #d3e0e2;
    font-size: 30px;
}

#showcase p{
    margin: 10px 10px 20px 10px;
    font-size: 20px;
}

#showcase .showcase-content {
    height: 200px;
    margin-top: 10px;
}

#showcase .showcase-content .btn {
    bottom: 0;
    padding: .5rem 1rem;
    text-decoration: none;
    background: rgba(139, 62, 61, 1.00);
    color: white;
    border: 1px solid transparent;
    border-radius: 1px;
}

#showcase .showcase-content .btn:hover {
    color: white !important;
    background: hsl(0, 0%, 43%);
}

.main-body {
    width: 80%;
    padding-top: 320px;
	padding-bottom: 40px;
    background: white;
    height: auto;
    margin: auto;
    text-align: center;
}

.main-body h1 {
    margin: 20px;
}

.main-body .polaroid {
    width: 30%;
    bottom: 0;
    height: auto;
    background: rgba(139, 62, 61);
    display: inline-block;
    box-shadow: 1rem 1rem 1rem -1rem;
}

.main-body .container {
    height: 100px;
    background: rgba(139, 62, 61);
}

.main-body .left {
    float: left;
    left: 0;
    margin-right: 20px;
}

.main-body .center {
    margin: 0 auto 0 5px;
}

.main-body .right {
    top: 0;
    right: 0;
    float: right;
    margin-left: 20px;
}
.content {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    /*position: relative;*/
}
.content-left {
    float: left;
    height: 450px;
    left: 0;
    width: auto;
    padding: 40px;
    margin:30px 0 0 150px;
    border: 1px solid #c5c1c1;
    background: #dce5f5;
    border-radius: 2px;
    font-size: 1.2em;
}
form {
    float:right;
    height: auto;
    top: 0;
    right: 0;
    width: 40%;
    padding: 10px 15px 10px 10px;
    margin:30px 150px 40px 0;
    border: 2px solid #c5c1c1;
    background: #dce5f5;
    border-radius: 2px;
}
form label {
    width: 100%;
    padding: 15px 20px 5px 20px;
}
form input {
    width: 75%;
    margin: 5px 110px 10px 20px;
    padding: 5px;
    border: 2px solid #c5c1c1;
    border-radius: 2px;
}
form textarea {
    width: 90%;
    margin: 5px 30px 5px 20px;
    padding: 5px;
    border: 2px solid #c5c1c1;
    border-radius: 2px;
}
.stronger {
    font-size: 1.2em;
    margin-left: 20px;
}
button {
    color: white;
    background: #464646;
    margin: 10px 5px 5px 20px;
    padding: 7px 19px;
    border: 2px solid #444444;
    border-radius: 3px;
    font-weight: bold;
    cursor: pointer;
}
button:hover {
    background: #6e6e6e;
    color: #f0f0f0;
} 
footer {
	position: absolute;
    width: 100%;
    height: 35px;
    margin-top: 30px;
	margin-bottom: -40px;
    clear: both;
    text-align: center;
    background: gray;
    color: white;
    bottom: 0;
    
}
   
footer .text {
    padding: 10px 0;
    font-size: .7em;
    color: white;
}