/*--------------------------------------------------------------------------*\
  Styling Elements applied to entire webpage.
\*---------------------------------------------------------------------------*/

* {
  box-sizing: border-box;
  padding: 0;
  margin:  0;
  font-family:  "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
                "Lucida Sans", Arial, sans-serif;
}

body {
  background-color: #d9dcd6;
  color: #ffffff;
}

/*----------------------------------------------------------------------------*\
  #HEADER - PAGEHEADER
/*----------------------------------------------------------------------------*/

.pageHeader {
  display: table;
  width:    100%;
  padding:  20px;
  background-color: #2a607c;
}

.pageHeader h1 {
  font-size: 48px;
  display: table-cell;
  vertical-align: text-bottom;
}
.seo {
  color: #d9dcd6;
}

/*------------------------------------------*\
  #NAV 
    Navigation links at top of page
\*------------------------------------------*/
nav {
  display: table-cell;
  float: right;
  font-size: 20px;
}

.menu {
  display: table-cell;
  list-style-type: none;
}

.menu > li {
  display: inline;
  margin-right: 20px;
}

.menu a {
  color: #ffffff;
}


/*--------------------------------------------------------------------------*\
  #MAIN
\*---------------------------------------------------------------------------*/

/* Image of the Horiseon team working. Main focal pint of the page. */

#teamImage {
  margin-bottom: 2%;
  max-height: 800px;
  width:      100%;
  object-fit: cover;
}

/*--------------------------------------------------------------------------*\
  #SECTION
\*---------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------*\
  Company service products contained in the below element floated on the
  left side of the page in a similarly colored container. Each section has the
  elements. Background color is analogous to page header background color with
  optimal contrast to text Color.  
\*---------------------------------------------------------------------------*/

#productsContainer {
  display: inline-block;
  height: 100%;
  width:  75%;
  margin-left: 1%; 
}

.product {
  display: inline-block;
  min-height: 300px;
  width:      100%;
  margin-bottom:  20px;
  padding:        50px;
  border-radius: 25px;
  background-color: #382a7c; 
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.productImage {
  height:     auto;
  max-width:  100%;
  object-fit: cover;
}

.productTitle {
  margin-bottom: 20px;
  font-size: 36px;
}

.productText {
  font-size: 16px;
}

.floatLeft {
  float: left;
  margin-right: 25px;
}

.floatRight {
  float: Right;
  margin-left: 25px;
}

/*--------------------------------------------------------------------------*\
  #ASIDE
\*---------------------------------------------------------------------------*/

#resultsContainer {
  float: right;
  clear: both;
  height: 100%;
  width:  20%;
  margin-right:  1%;
  margin-bottom: 15px;
  padding:       20px;
  background-color: #2a7c45;
  border-radius: 20px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

/*--------------------------------------------------------------------------*\
  #SECTION - ASIDE 
   
\*---------------------------------------------------------------------------*/
.result {
  width: 100%;
  padding-bottom: 15px;
}

.resultTitle {
  margin-bottom: 10px;
  margin-top:    5px;
  text-align: center;
}

.resultImage {
  display: block;
  height:     auto;
  max-width:  100%;
  object-fit: cover;
  margin: 10px auto;
}

.result p {
  padding-bottom: 10px;
  font-size: 16px; 
}

/*--------------------------------------------------------------------------*\
  #FOOTER
\*---------------------------------------------------------------------------*/
#pageFooter {
  clear: both;
  padding: 20px;
  text-align: center;
  color: #000000;
}

#pageFooter h2 {
  font-size: 20px;
}
