@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600);

/*Image citation below                               
pexels-henry-&-co-2341290 all slider images use this image,
 back ground image uses pexels-andrew-neel-3143922.gif,https://www.pexels.com/license/

Web site citations below
HTML - CSS - 508 — 960 Grid System by Nathan Smith.
Licensed under GPL and MIT. Overlay effects via jQuery.
Slider element comes from Codepen. Copyright (c) 2020 by Mark Peck (https://codepen.io/doodlemarks/pen/aFcly)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

1360 Grid system is an update of Nathan Smiths 960 grid system created by David Anglin and released under the creative commons license.

Font citation. 
All fonts are provided by Apple and came installed on a Mac desk top.
   http://images.apple.com/legal/sla/docs/OSX1011.pdf

*/
html {
  border-top: 5px solid #fff;
  background-color: #4b9ca4;
  color: #2a2a2a;
}
#wrapper {
  margin: 0 auto;
  padding: 0;
  font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
  background: url("img/pexels-andrew-neel-3143922.gif") no-repeat center;
  background-size: 100%;
  height: 1200px;
}
h1 {
  color: #4b9ca4;
  text-align: center;
  font-weight: 300;
  height: 60px;
  font-size: 50px;
}
#slider {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
#slider ul {
  position: relative;
  margin: 0;
  padding: 0;
  height: 300px;
  list-style: none;
}
#slider ul li {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  height: 300px;
  background: #ccc;
  text-align: center;
  line-height: 300px;
}
a.control_prev, a.control_next {
  position: absolute;
  top: 40%;
  z-index: 999;
  display: block;
  padding: 4% 3%;
  width: auto;
  height: auto;
  background-color: #2a2a2a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  opacity: 0.8;
  cursor: pointer;
}
a.control_prev:hover, a.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
}
a.control_prev {
  border-radius: 0 2px 2px 0;
}
a.control_next {
  right: 0;
  border-radius: 2px 0 0 2px;
}
.slider_option {
  position: relative;
  margin: 10px auto;
  font-size: 18px;
}
div {
  height: 100px;
  /*background-color:darkgreen;*/
}
.p1, .p2, .p3, .p4, .p5, .p6, .p7, .p8 {
	text-align: center;
  margin-top: 20px;
  height: 400px;
  font-size: 40px;
  color: #4b9ca4;
  background-color: rgba(31, 31, 31, .80);
}
.p3 {
  /*background-color:lightgreen;*/
  background-color: rgba(31, 31, 31, .80);
}
.p1 {
  font-size: 50px;
  background-color: rgba(31, 31, 31, .50);
}
.p4 {
  /*background-color:lightgreen;*/
  margin-top: 20px;
  font-size: 30px;
  background-color: rgba(31, 31, 31, .70);
}

.p2 {
  background-color: rgba(31, 31, 31, .50);
  font-size: 50px;
}
.p5 {
  font-size: 40px;
  background-color: rgba(31, 31, 31, .80);
}
.p6 {
  background-color: rgba(31, 31, 31, .50);
  font-size: 60px;
}
.p6 a {
	color:#4b9ca4;
	background-color: rgba(240,255,255,.75);
	border-radius: 10px;
	margin-top: 75px;
}
.p6 a:hover {
	color:azure;
	background-color: rgba(75,156,164,0.75);
}
footer {
  color: #4b9ca4;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  background-color: rgba(31, 31, 31, .50);
	margin-top: 110px;
}