body {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 16px;
	overflow-y: scroll;
 	scrollbar-gutter: stable;
}

h1 {
    color: #b99a73;
    font-family: serif;
}

h2 {
	font-size: 1.2em;
	color: #000;
}

h3	{
	margin: 0;
}

.indent {
	margin-left: 25px;
    margin-block: 0 1.5em;	
}

td {
	font-family: Arial, Helvetica, sans-serif;
}

th {
	font-family: Arial, Helvetica, sans-serif;
}

.header {
	background-color: #eeeeee;
	height: 115px;
	margin: -20px -8px 75px -8px;
	position: relative;
	box-shadow: 0px 0px 10px #000;
}

.header-container {
    width: 90%;
    margin: 0 auto;
}

.header .logo {
	position: absolute;
	top: 25px;
	display: inline-block;
	vertical-align: middle;
}

.nav { 
  text-align: right;
}

.nav ul {
	width: 80%;
	list-style: none;
	float: right;
	margin: 40px 10px 0 0;
	padding-top: 10px;
}

.nav li {
  display: inline-block;
  padding: 0px 10px 10px 10px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

a:link, a:visited {
    outline: 0 none;
    text-decoration: none;
	color: #2b4a8c;
}

a:hover, a:active, a:focus {
	outline: 0 none;
	text-decoration: none;
	color: #906d40;
}

ul.square {
	list-style-type: square;
}

.content {
	margin: auto;
	width: 80%;
}

.inner-content {
	background-color: #304675;
	display: flex;
	flex-direction:row;
	width: fit-content;
	box-shadow: 0px 10px 15px #343535;
}

.flex-direction{
	display: flex;
	flex-direction:row;
}

.hero-text {
	display: inline-block;
	float:left;
	margin: auto 15px auto 15px;
    font-size: 20pt;
	color: white;
	/* text-align: center;*/
	width: 50%;
}

.hero-img {
	margin: auto;
}

.button {
  background-color: transparent;
  border: solid 1px #FFF;
  color: #FFF;
  padding: 14px 32px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 16px;
  margin: auto auto 30px auto;
  transition-duration: .3s;
  cursor: pointer;
  border-radius: 2px;
}

.button-email:hover {
  background-color: #555555;
  color: white;
}

.footer {
    margin: 20px 0px 0px 0px;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size: .9rem;
    text-align: center;
    padding-top: 30px;
}

/* Training Page Testimonials */

#testimonials {
	display: inline-flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;	
}

.quote-container {
	width: 200px;
    background-color: #b4b4b4;
    background-image: linear-gradient(to bottom right, #b4b4b4, #d9d9d9);
    border-radius: 50px 50px 50px 0px;
    margin: 35px 10px 5px 10px;
    padding: 20px 20px 10px 20px;
    font-size: initial;
	box-shadow: 1px 2px 4px #555;
}

.quote-inner-container {
    display: grid;
    margin: auto 0 auto 0;
/*    height: 175px;
    align-content: space-evenly; */
	height: 233px;
}

.quote {
	/* font-weight: 700; */
    font-style: italic;
}

.quote-source {
	display: table;
}

.quote-icon-container {
	width: 50px;
   /* display: table-cell; */
    vertical-align: middle;
	margin-right: auto;
	margin-left: auto;
}

.quote-source-container {
	display: table-cell;
	padding-left: 8px;
}

/* Team Building */

#sample {
	margin: auto;
    width: fit-content;
    font-size: 1.2rem;
    border: 2px solid #9d9d9d;
    box-shadow: 3px 4px 4px #5555559e;
}

#sample-header {
	font-size: 1.2em;
	font-weight: 500;
    color: #000;
    background-color: #decbb2;
	text-align: center;
    height: auto;
    padding: 10px 0px;
}

#sample-content {
	padding: 10px;
}


/* Mobile Nav */

.topnav {
  background-color: #eee;
  overflow: hidden;
  float: right;
  margin: 40px 10px 0 0;
}

.topnav a {
  float: left;
  display: inline-block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.topnav a:hover {
  color: #2b4a8c;
}

/* Highlight the active page */
.topnav a.active {
  color: #b99a73;
}

/* Hide the menu button by default*/
.topnav .icon {
  display: none;
}

/* When the screen is less than this many pixels wide, hide all links and show the menu button */
@media screen and (max-width: 900px) {
  .topnav a {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript, which displays the nav appropriately after the user clicks the menu button.*/
@media screen and (max-width: 900px) {
  .topnav.responsive {
 /* {position: relative;}
    visibility: hidden; */
    position: absolute;
    top: 0px;
    right: 45px;
    width: 250px;
    height: auto;
    transition: 0.3s;
    padding: 0px 20px 0px 20px;
    box-sizing: border-box;
	box-shadow: #333 1px 1px 15px;
	background-color: #9497b6;
  }
  .topnav.responsive a.icon {
  	position: absolute;
    right: 0;
    top: 0; 
	
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
	background-color: #9497b6;
  }
  
  .topnav a.active {
  color: #FFFFFF;
  }
}


/* Resize and adjust layout if less than or equal to 1080px wide */
@media screen and (max-width: 1080px) {
	body {
		font-size: 1.2em;
	}
	
	.nav ul {
	width: 70%;
	list-style: none;
	float: right;
	margin: 10px 10px 0 0;
	padding-top: 10px;
}

	.nav li {
		font-size: 25px;
	}
	
	
 	.flex-direction{
		flex-direction:column;
  }
  
 	.inner-content {
		flex-direction:column;
}

	.hero-text {
		display: inline-block;
		float: left;
		font-size: 20pt;
		background-color: #304675;
		font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
		width: auto;
}

	.hero-img {
		margin: auto;
}

.footer {
	float: none;
	margin: 30px auto 0px auto;
	font-size: 1rem;
}

}

