body{
  font: 15px/1.5 Arial, Helvetica,sans-serif;
  padding:0;
  margin:0;
}

.container{
  width:80%;
  margin:auto;
  overflow:hidden;
}

ul{
  margin:2;
  padding:2;
  list-style-type: disk;
  text-align: left;
  line-height:200%;
}

ul.a{
  margin:2;
  padding:2;
  list-style-type: disk;
  text-align: left;
  line-height:200%;
  border-left: 5px solid green;
}

ul.b{
  margin:2;
  padding:2;
  list-style-type: disk;
  text-align: left;
  line-height:200%;
  border-left: 5px solid red;
}

.button_1{
  height:38px;
  background:#e8491d;
  border:0;
  padding-left: 20px;
  padding-right:20px;
  color:#ffffff;
}

.dark{
  padding:10px;
  background:#f2f2f2;
  color:#000000;
  margin-top:10px;
  margin-bottom:10px;
}

.darkzero{
  padding:0px;
  color:#000000;
  margin:0px auto;
  line-height:250%;
}

.content{
  padding-left:20px;
  background:#f8f8f8;
  margin:0px auto;
  border: #cccccc solid 1px;
  line-height: 200%;
}

* {
  box-sizing: border-box;
}

.column {
  float: left;
  padding: 10px;
  height: 120px; /* Should be removed. Only for demonstration */
}

.left, .right {
  width: 25%;
}

.middle {
  width: 50%;
  text-align: justify;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.column img {
    max-width: 150px;
    max-height: 150px; 
    width: 100%;
    display: block;
    margin: auto;
}


@media screen and (max-width: 800px) {
  .column {
    width: 100%;
  }
  
  }
  
.spacer {
	border-bottom: #cccccc solid 1px;
}

.spacer2 {
	margin-top: 20px;
}

header{
  background: #000;
  color: #ffffff;
  padding-top:30px;
  min-height:70px;
  border-bottom: #FFFBF0 2px solid;
}

header a{
  color:#ffffff;
  text-decoration:none;
  text-transform: uppercase;
  font-size:16px;
}

header li{
  float:left;
  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:#e8491d;
  font-weight:bold;
}

header a:hover{
  color:#cccccc;
  font-weight:bold;
}

.navbar {
  overflow: hidden;
  background-color: #333;
  width:100%;
  margin:auto;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 140px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Showcase */
#showcase{
  min-height:400px;
  background:url('1.jpg') no-repeat 0 -400px;
  text-align:center;
  color: #FFFBF0;
  
}

#showcase h1{
  margin-top:100px;
  font-size:55px;
  margin-bottom:10px;
}

#showcase p{
  font-size:20px;
}


#newsletter{
  padding:15px;
  color:#ffffff;
  background: #000;
}

#newsletter h1{
  float:left;
}

#newsletter form {
  float:right;
  margin-top:15px;
}

#newsletter input[type="email"]{
  padding:4px;
  height:25px;
  width:250px;
}

#boxes{
  margin-top:20px;
  background: #FFFBF0;
}

#boxes .box{
  float:left;
  text-align: center;
  width:30%;
  padding:10px;
}

#boxes .box img{
  width:90px;
}

/* Sidebar */
aside#sidebar{
  float:right;
  width:30%;
  margin-top:10px;
  padding:5px;
  font-size:1em;
}

aside#sidebar .quote input, aside#sidebar .quote textarea{
  width:90%;
  padding:0px;
}


article#main-col{
  float:left;
  width:65%;
}


ul#services li{
  list-style: circle;
  padding:20px;
  border: #cccccc solid 1px;
  margin-bottom:5px;
  background:#f8f8f8;
}

footer{
  padding:20px;
  margin-top:20px;
  color:#ffffff;
  background-color: #000;
  text-align: center;
}

/* Media Queries */
@media(max-width: 768px){
  header #branding,
  header nav,
  header nav li,
  #newsletter h1,
  #newsletter form,
  #boxes .box,
  article#main-col,
  aside#sidebar{
    float:none;
    text-align:center;
    width:100%;
  }

  header{
    padding-bottom:20px;
  }

  #showcase h1{
    margin-top:40px;
  }

  #newsletter button, .quote button{
    display:block;
    width:98%;
  }

  #newsletter form input[type="email"], .quote input, .quote textarea{
    width:90%;
    margin-bottom:5px;
  }
}
