 * {
    box-sizing: border-box;
}

body {
  margin: 0 10% 0 10%; 
  background-color: #565656;
}

.body {
  background-color: #ffffff;
}

/* single column containing logo graphic*/
.ieclogo {
    width: 100%;    
    background-color: #ffffff;
    text-align: center;
    padding: 1% 1% 1% 1%;
}

/* single column containing line 1 of title*/
.titleline1 {
    width: 100%;
    background-color: #ffffff;
    color: red;
    text-align: center;
    font-family: 'Open Sans', 'sans-serif';
    font-size: 2.0em;
    font-weight: normal;
    padding: 0% 1% 0% 1%;
}

/* single column containing line 2 of title*/
.titleline2 {
    width: 100%;
    background-color: #ffffff;
    color: blue;
    text-align: center;
    font-family: 'Open Sans', 'sans-serif';
    font-size: 2.0em;
    font-weight: normal;
    padding: 0% 1% 0% 1%;
}

/* single column containing line 3 of title*/
.titleline3 {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    font-family: 'Open Sans', 'sans-serif';
    font-size: 2.0em;
    font-weight: normal;
    padding: 0% 1% 1% 1%;
}

/* start of responsive navigation bar*/
.topnav {
  overflow: hidden;
  background-color: #A1A1A1;
}

.topnav a {
  float: left;
  display: block;
  font-family: 'Open Sans', 'sans-serif';
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1.4em;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.active {
  background-color: #878686;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 768px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
}

/* end of responsive navigation bar*/

/* create two responsive equal height columns for main content*/
.col-container {
    display: table;
    width: 100%;
}
.col.left {
    display: table-cell;
    width: 60%;
    background-color: #FFFFFF;
    color: #817f7f;
    text-align: left;
    font-family: 'Quicksand', 'sans serif';
    font-size: 1.2em;
    font-weight: normal;
    line-height: 20px;
    padding: 1% 1% 1% 1%;
    }

.col.right {
    display: table-cell;
    width: 40%;
    background-color: #FFFFFF;
    color: #817f7f;
    text-align: center;
    font-family: 'Quicksand', 'sans serif';
    font-size: 1px;
    font-weight: lighter;
    padding: 0% 1% 1% 1%;
    }

@media only screen and (max-width: 768px) {
    .col.left, .col.right { 
        display: block;
        width: 100%;
    }
}
/* end of two responsive equal height columns for main content*/

/* single column main content for industries page*/
.mainsinglecol {
    display: table-cell;
    width: 100%;
    background-color: #FFFFFF;
    color: #817f7f;
    text-align: left;
    font-family: 'Quicksand', 'sans serif';
    font-size: 1.2em;
    font-weight: normal;
    line-height: 20px;
    padding: 1% 1% 1% 1%;
    }
/* end of single column main content for industries page*/

/* create four responsive equal height columns for contact logos*/
.logos-container {
    display: table;
    width: 100%;
}
.logos {
    display: table-cell;
    width: 25%;
    background-color: #A3A3A3;
    color: #ffffff;
    text-align: center;
    font-family: 'Quicksand', 'sans serif';
    font-size: 1.2em;
    font-weight: normal;
    line-height: 25px;
    padding: 0% 1% 0% 1%;
    }

@media only screen and (max-width: 768px) {
    .logos { 
        display: block;
        width: 100%;
    }
}
/* end of four responsive equal height columns for contact logos*/


/* single column footer*/
.footer {
    width: 100%;
    background-color: #A3A3A3; 
    color: #ffffff;
    text-align: center;
    font-family: arial;
    font-size: 1.0em;
    font-weight: lighter;
    line-height: 25px;
    padding: 2% 1% 1% 1%;
}

A.contact:hover {color:red;}

A.contact {
color: #FFFFFF;
text-decoration: none; 
}

/* places images vertically in middle of container*/
img {
   max-width: 100%;
   vertical-align: middle; 
   height: auto;
    }

/* removes margin on mobile devices*/
@media only screen and (max-width: 768px) {
    body { 
        margin: 0;
    }
}









