@charset "UTF-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ======== End Reset ======== */




/* ======== Clear ======== */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
/* ======== END Clear ======== */


/* ======== Scroll ======== */
html {
	scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
/* ======== END Scroll ======== */


/* ======== Back to Top ======== */
.back-to-top-wrapper a {
  transition: all .25s ease-in-out;
  position: fixed;
  bottom: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 1em 1em 0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: #F8F8F8;
  font-size: 1.5em;
  text-decoration: none;
  border: solid 2px black;
}
/* ======== END Back to Top ======== */




/* ======== COMMON STYLES ======== */
html, body { height: 100%; position: relative; }
body {
  font-size: 15px;
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

/* ======== END COMMON STYLES ======== */



/* ======== Global Header ======== */

h1  { /*LOGO Styling*/
  text-align: center;
}
h1 span {
  display: none;
}
h1 img {
  width: 50%;
  min-width: 300px;
  max-width: 500px;
}

/* Section - INTRO */
#intro { }
header {
  border-bottom: solid 1px black;
}

nav {
  font-size: 1.5em;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  text-align: center;
  padding: 15px 15px 50px;
}
nav li {
  display: inline;
}
nav li a[title="Previous"] {
  float: left;
}
nav li a[title="Home"] {
  margin-left:-25px;
}
nav li a[title="Next"] {
  float: right;
}
nav li a:link,
nav li a:visited,
nav li a:active 
nav li a:focus {
  color: #888;
  text-decoration: none;
  transition: .5s ease;
  min-width: 200px;
}
nav li a:hover {
  color: black;
}


/* ======== END Global Header ======== */


/* Font styling */
h3 {
  font-size: 2em;
}
h3, p {
  text-align: center;
  margin: 0 5% 10px;
}
h4 {
  text-align: center;
  letter-spacing: 1.2px;
}
.section a:link,
.section a:visited,
.section a:active,
.section a:focus {
  text-decoration: none;
  color: darkred;
  font-weight: bold;
}
.section a:hover {
  text-decoration: underline;
}

blockquote {
  padding: 5%;
  letter-spacing: 1.5px;
  line-height: 150%;
  margin: 0 auto;
  width: 60%;
  color: #666;
}

/* ======== SECTIONS ======== */
.section {
  width: 80%;
  display: block;
  margin: 0 auto;
  padding-bottom: 50px;
}

.section h4 {
  display: block;
  padding: 25px;

}
.section img, .section video {
  width: 75%;
  max-width: 600px;
  display: block;
  margin: 0 auto 50px;
  box-shadow: 
    0 20px 30px -15px rgba(0,0,0,0.5),
    0 40px 40px -20px rgba(0,0,0,0.4),
    0 70px 50px -30px rgba(0,0,0,0.3),
    0 40px 60px -5px rgba(203,14,40,0.3);
}
.section img.noshadow {
  box-shadow: none;
}




  



  
/* Responsive */
@media only screen and (max-width: 768px) {
  nav { font-size: 1em; }
  
  /* Section - Hide certain elements that can't fit on mobile */
  .mobile_hide { display: none; }
}
@media only screen and (max-width: 480px) {
  nav li a:link,
  nav li a:visited,
  nav li a:active 
  nav li a:focus {
    min-width: 75px;
  }
}


