body {
    font: 100%/120% Arial, Helvetica, Geneva, sans-serif;
    color: gray;
    background-color: silver;
}

#container {
    width: 100%;
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    background-color: white;
/*    box-shadow: 0 10px 20px 0 rgba(80, 80, 80, 0.5);
*/
}
  
	
	
header {
  -webkit-box-shadow: 0 10px 20px 0 rgba(192, 192, 192, 0.8);
          box-shadow: 0 10px 20px 0 rgba(192, 192, 192, 0.8);
	}
	
	
	
nav {
    font-size: 85%;
    margin: 1em;
    text-align: center;
}

main {
  padding: 0 2em;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*
section {
}
*/

/*
aside {
}
*/

footer {
  background-color: aliceblue;
  font-size: 85%;
  margin-top: 1em;
  padding: 1em;
  text-align: center;
  
  display:-webkit-box;
  
  display:-ms-flexbox;
  
  display:flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  
  -webkit-box-shadow: 
    inset 0 6px 15px 0 rgba(192, 192, 192, 0.7);
  
          box-shadow: 
    inset 0 6px 15px 0 rgba(192, 192, 192, 0.7); 
}






/*Images*/
img {
    max-width: 100%;
    height: auto;
} 

.zoom50 {
 max-width: 50%;
}

footer .left img {max-width: 60%;}
	
figure {
   width: auto;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

aside figure {
    border: silver solid thin;
    background-color: white;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    -webkit-box-shadow: 0 5px 10px 1px rgba(192, 192, 192, 0.75);
            box-shadow: 0 5px 10px 1px rgba(192, 192, 192, 0.75);
    padding: 1em 1em 2em 1em;
}
aside figcaption {
    text-transform: capitalize;
    text-align: center;
  padding-top:0.8em;
}

footer figcaption{font-size: small}



  
.columns {
    list-style-type: none;

 -moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2; 
}
  
  
  
/*Nav links*/
nav a:link,
nav a:visited {
    color: #77aada;
    padding-right: 1.2em;
    padding-left: 1.2em;
    text-decoration: none;
    line-height: 190%;
}
nav a:hover,
nav a:active {
    text-decoration: none;
    color: #597886;
}
  
  
  
/*Links  */
a:link,
a:visited {
    color: #95c5da;
    text-decoration: none;
}
a:hover,
a:active {
    color: #7096a6;
    text-decoration: none;
}
  
  
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #7f7f7f;
    line-height: 120%;
    font-weight: normal;
    font-style: normal;
}

h1 {
    font-size: 2em;
    margin: .5em 0;
    text-shadow: 2px 2px 2px silver;
}
h3 {font-size: 1.2em}
h4 {
    font-weight: bold;
    margin: 0;
    padding: 0;
}
h5 {
    color: #a5cbe7;
    font-weight: bold;
    padding: 0 0 2%;
    margin: 0;
}



  
/*  Lists*/
main ul {
  padding: 0 2em;
  list-style-type: circle;
}
main li {
    padding-bottom: 0.5em;
}
 

/* HR */
hr {
    height: 1px;
    margin: 25px 0;
    border: 0;
}
hr:after {
    display: block;
    content: '';
    height: 20px;
    background-image: radial-gradient(farthest-side at center top, #cccccc 0%, rgba(255, 255, 255, 0) 100%);
}


  
/*  Quotes*/
blockquote {
    display: block;
    background: #fff;
    padding: 15px 20px 15px 45px;
    margin: 0 0 20px;
    position: relative;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    -webkit-box-shadow: 2px 2px 15px #ccc;
            box-shadow: 2px 2px 15px #ccc;
}
blockquote::before {
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 300%;
    font-weight: bold;
    color: #999;
    position: absolute;
    left: 10px;
    top: 5px;
}
blockquote::after {
    content: "";
}

/* BUTTON*/
button {
    background-color: #f5f5f5;
    border: #9eb1da solid thin;
    border-radius: 15px;
    margin: 0 auto;
}

  
/*  Blocked Drains Hotline Button*/
.blocked-drains-hotline {
    background-color: #eaedf2;
    margin-right: auto;
    margin-left: auto;
    margin:0 auto 1em;
    width: 90%;

    border: silver solid thin;
    border-radius: 20px;
    -webkit-box-shadow: 0 10px 20px 0 rgba(209, 209, 209, 0.6);
            box-shadow: 0 10px 20px 0 rgba(209, 209, 209, 0.6);
  
    display: -webkit-box;
  
    display: -ms-flexbox;
  
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;   
}

.box {
    padding: 0 0.4em;
}

.calltext {
    font-size: 110%;
}
					




/*Media Queries*/
@media only screen and (min-width: 580px) {

nav {font-size: 100%;}
.blocked-drains-hotline {width: 85%;}
.calltext {font-size: 150%;}

main{
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-webkit-box-orient:  horizontal;
-webkit-box-direction:  normal;
    -ms-flex-flow:  row wrap;
        flex-flow:  row wrap;
} 

section {
-webkit-box-flex: 2;
    -ms-flex: 2;
        flex: 2;
margin-left: 1em;
margin-right: 2em
}
  
article figure {
max-width:  70%;
  
  }

aside {
-webkit-box-flex: 1;
    -ms-flex: 1;
        flex: 1;
}
  
  

footer{
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-webkit-box-orient:  horizontal;
-webkit-box-direction:  normal;
    -ms-flex-flow:  row wrap;
        flex-flow:  row wrap;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
-webkit-box-align:center;
    -ms-flex-align:center;
        align-items:center;
}

.left {
-webkit-box-flex: 1;
    -ms-flex: 1;
        flex: 1;
-webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
        order: 2
}

.middle {
-webkit-box-flex: 2;
    -ms-flex: 2;
        flex: 2;
}

/*.right {}*/
  
} /*End of Media Query +580*/



  
  
  
/*.center {
    margin: 0 auto;
    text-align: center;
}
img.center {
    margin: 0 auto;
    display: block;
}*/