html, body {
	margin: 0;
    padding: 0;
}
.active {
	background-color: #717171;
}

* {
	box-sizing: border-box
}


/* Variables : You can call these by doing var(x),
 *             where x is a specified variable in :root.
 * https://www.w3schools.com/css/css3_variables.asp */
 :root {
	--offblack:   #000000;
	--offwhite:   #fafafa;
	/* #3CC371 */
	--header-color: #2E8B57;
	--bg-color:   #355E3B;
	--bg-color-dark:   rgb(38, 75, 44);
	--bg-color-darker-shade:   rgb(32, 65, 38);
	  --link-color: #0da6f2;
	  --transitiontime: 0.5s;
  }
  
  /*used to give nice transition effects, to button actives and page theme changes*/
  * {
	-webkit-transition: all var(--transitiontime) ease-in-out;
	-moz-transition:    all var(--transitiontime) ease-in-out;
	-o-transition:      all var(--transitiontime) ease-in-out;
	-ms-transition:     all var(--transitiontime) ease-in-out;
	transition:         all var(--transitiontime) ease-in-out;
  }
  
  body {
	  
	background-color: var(--bg-color);
	font-family: "Georgia", "serif";
	font-size: 1em;
	color: var(--bg-color);
  }
  
  .content {
	background: var(--offwhite);
	padding: 3%;
	min-height: 100vh; /* will cover the 100% of viewport */
	overflow: hidden;
	display: block;
	position: relative;
	padding-bottom: 100px; /* height of your footer */
	height: 100%;
	width: 100%;
	color: var(--offblack);
	display: inline-block;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
}
  .overview {
	  padding-left: 2%;
  }
  .introphoto1 {
	  float: right;
	  font-size: 2em;
  }
  .intro1 {
	  float: left;
	  font-size: 2em;
	  overflow: auto;
  }
  .sub-footer {
	  text-align: center;
	  background: var(--bg-color);
	  color: #ceae68;
	  padding: 20px 0 20px 0;
	  font-size: 2em;
  }
  footer {
		  background: var(--offwhite);
		  color: var(--offwhite);
		  padding: 20px 0 20px 0;
		  text-align: center;
		  bottom: 0;
		  left: 0;
		  box-shadow:-50vw 0vh var(--bg-color),50vw 0vh var(--bg-color),-50vw 10vh var(--bg-color),50vw 10vh var(--bg-color), 0vw 10vh var(--bg-color);
  }
  
  footer a:after {  background: var(--offwhite);  }
  
  @media screen and (max-width: 978px) {
	  body { margin: 0; }
	  .sub-footer {font-size: 1em;}
	  footer { padding: 15px 15%; }
	  
	.content {
	  font-size: 1.1em;
		  /*padding: 2%;*/
	}
  }
  
  #divide {
		  height: 30px;
  }
  
  /* ***** HYPERTEXT ***** */
  
  a, button {
		  color: var(--link-color);
		  text-decoration: none;
		  display: inline-block;
		  position: relative;
  }
  
  a:after, button:after {
		  width: 0;
		  background: #ceae68;
		  height: 2px;
		  content: "";
		  transition: all var(--transitiontime) ease-in-out;
		  bottom: 0;
		  position: absolute;
		  right: 0;
  }
  
  a.underline:after, a:hover:after,
  button.underline:after, button:hover:after {
		  width: 100%;
		  left: 0;
  }
  
  /* ***** END HYPERTEXT ***** */
  
  /* ***** HEADER ***** */
  
  .header {
	background-color: var(--bg-color-darker-shade);
	font-family: "Georgia", "serif";
	/* line-height: 0.2; */
	box-shadow: 500px -0px 0px 50px var(--bg-color-darker-shade);
		/*box shadow numbers - used to fill in space with a color
		first number: how far left or right it is located
	  second number: how far up or down it is located
	  third number: how sharp or faded are the edges, 0px is sharp
	  fourth number: how wide it is
	  USE MORE THAN ONE BOX SHADOW TO FILL IN A SPECIFIC AREA
	  BUT ONE BOX SHADOW IS ALLOWED PER CSS CLASS OR ID
	  IN THIS CASE, WE USE THE TOPWRAPPER DIV TO ADD ANOTHER 
	  BOX SHADOW*/
  }
  
  .topwrapper{
	  background-color: var(--offwhite);
	  box-shadow: -500px 0px 0px 50px var(--offwhite);
	  
  }
  
  .middlewrapper {
	  box-shadow: -50px -0px 0px 50px var(--bg-color-darker-shade);
  }
  
  h1 { font-size: 2.4em; font-weight: normal; }
  
  h2 {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-style: italic;
	font-size: 2em;
  }
  
  h3 {
		  font-family: "Georgia", "serif";
		  font-style: italic;
		  font-weight: 700;
		  font-size: 1.6em;
		  line-height: 0;
		  padding: 9px;
  }
  
  .text {
	float: left;
	padding: calc(170px * .275) 5%;
  }
  
  #text1 {
	  color: var(--offblack);
  }
  
  #hdimg {
	float: right;
	height: 130px;
	padding: 10px 3%;
  }
  
  #duck {
		  float: left;
		  margin: 0 15px 0 0;
		  height: 88px;
  }
  
  svg {
	stroke: var(--offwhite);
	stroke-width: 8px;
  }
  
  /* Add a black background color to the top navigation */
  .topnav {
	  z-index: 1000;
	  overflow: hidden;
	  background-color: var(--bg-color);
	  font-size: .9em;
	  font-weight: bold;
	  width: 100%;
	  border-color: var(--bg-color);
	  box-shadow:-50vw 0vh,50vw 0vh;
	}
	
	/* Style the links inside the navigation bar */
	.topnav a {
	  float: left;
	  display: block;
	  /*color: #f2f2f2;*/
	  color: #ceae68;
	  text-align: center;
	  padding: 15px 20px 15px 20px;
	  text-decoration: none;
	  font-size: 20px;
	}
	
	/* Add an active class to highlight the current page */
	.active {
	  background: #717171;
	}
	
	/* Hide the link that should open and close the topnav on small screens */
	.topnav .icon {
	  display: none;
	}
	
	/* Dropdown container - needed to position the dropdown content */
	.dropdown {
	  float: left;
	  overflow: hidden;
	}
	
	/* Style the dropdown button to fit inside the topnav */
	.dropdown .dropbtn {
	  font-size: 17px; 
	  border: none;
	  outline: none;
	  color: white;
	  padding: 14px 16px;
	  background-color: inherit;
	  font-family: inherit;
	  margin: 0;
	}
	
	/* Style the dropdown content (hidden by default) */
	.dropdown-content {
	  display: none;
	  position: absolute;
	  background-color: #f9f9f9;
	  min-width: 160px;
	  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	  z-index: 1;
	}
	
	/* Style the links inside the dropdown */
	.dropdown-content a {
	  float: none;
	  color: black;
	  padding: 12px 16px;
	  text-decoration: none;
	  display: block;
	  text-align: left;
	}
	
	/* Add a dark background on topnav links and the dropdown button on hover */
	.topnav a:hover, .dropdown:hover .dropbtn {
	  /* background-color: #555; */
	  color: white;
	}
	
	/* Add a grey background to dropdown links on hover */
	.dropdown-content a:hover {
	  background-color: #ddd;
	  color: black;
	}
	
	/* Show the dropdown menu when the user moves the mouse over the dropdown button */
	.dropdown:hover .dropdown-content {
	  display: block;
	}
	
	/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
	@media screen and (max-width: 978px) {
		.topnav a {
		  padding: 14px 16px;
		  text-decoration: none;
		  font-size: 17px;
		}
	  .topnav a:not(:first-child), .dropdown .dropbtn {
		display: none;
	  }
	  .topnav a.icon {
		float: right;
		display: block;
	  }
	}
	
	/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
	@media screen and (max-width: 978px) {
	  .topnav.responsive {position: relative;}
	  .topnav.responsive a.icon {
		position: absolute;
		right: 0;
		top: 0;
	  }
	  .topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	  }
	  .topnav.responsive .dropdown {float: none;}
	  .topnav.responsive .dropdown-content {position: relative;}
	  .topnav.responsive .dropdown .dropbtn {
		display: block;
		width: 100%;
		text-align: left;
	  }
	}
  
  /* ***** END HEADER ***** */
  
  /* ***** COLUMNS ***** */
  .fblogo {
	  display: inline-block;
	  margin-left: auto;
	  margin-right: auto;
  }
  #desktoptext {
	  display: inline-block;
  }
  #mobiletext {
	  display: none;
  }
  #images{
	 text-align:center;
  }
  #images2{
	 text-align:center;
  }
  #images3{
	  text-align:center;
   }
   #images4{
	  text-align:center;
   }
  
  @media screen and (max-width: 978px) {
	  #desktoptext {
		  display: none;
	  }
	  #mobiletext {
		  display: inline-block;
		  margin-left: auto;
		  margin-right: auto;
	  }
  }
  /* Create three unequal columns that floats next to each other */
  
  .column {
	float: left;
	padding: 10px;
	align-content: center;
  }
  
  /* Left column */
  .left {
	width: 20%;
  }
  
  /* Middle column */
  .middle {
	width: 50%;
  }
  
  /* Right column */
  .right {
	width: 30%;
  }
  
  /* Clear floats after the columns */
  .row:after {
	content: "";
	display: table;
	clear: both;
  }
  /* ***** END COLUMNS ***** */
  
  /* ***** SLIDESHOW ***** */
  .slideshow-all {
	  width: 100%;
	  clear:both;
  }
  /* ***** END SLIDESHOW ***** */
  
  /* ***** COMPANY NAME ***** */
  #company-name {
	  font-family: "Imprint MT Shadow"; /*Font works, but tell them even if it isn't bolded, it won't look exactly like the logo.*/
	  color: #ceae68;
	  /*Use these in place of hr in case they want the lines closer to each other, but it will stretch the entire page*/
	  /*border-bottom: 5px solid;*/
	  /*padding-bottom: 20px;*/
	  /*border-bottom-style: double;*/
  }
  
  hr {
	  border: 1px solid #ceae68;
	  border-style: double;
  }
  .logo {
	  float: left;
  }
  
  #motto {
	  text-align: right;
	  padding-right: 5px;
	  font-size: 21px;
	  font-weight: bold;
	  color: #ceae68;
  }
  
  @media screen and (max-width: 978px) {
	  #company-name { float: none;}
  }
  /* ***** END COMPANY NAME ***** */
  
  .address {
	  float: right;
	  padding-left: 25px;
	  padding-right: 25px;
  }
  
  .copyright-privacy {
	  color: #ceae68;
  }
  
  
  @media screen and (max-width: 978px) {
	  .address {
		  float: none;
		  padding-left: 0px;
		  padding-right: 0px;
	  }
	  .copyright-privacy {
		  float: none;
	  }
	}
  
	p {
	  font-size: 25px;
  }
  
  @media screen and (max-width: 978px) {
	  p {
		  font-size: 120%;
	  }
	}