@charset "UTF-8";
/* CSS Document */
div#container {
 min-height: 100%;
 overflow: visible;
 position: relative;

}
.icon-bar {
  position: fixed;
  top: 60%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}
.icon-bar a:hover {
    background-color: #bd202e;
}
.facebook {
  background: #ef4e22;
  color: white;
}

.twitter {
  background: #ef4e22;
  color: white;
}

.google {
  background: #ef4e22;
  color: white;
}

.linkedin {
  background: #ef4e22;
  color: white;
}

.youtube {
  background: #ef4e22;
  color: white;
}
.column {
	background-color: #42393d;
	width: 40%;
	float: left;
	margin: 60px;
	padding: 15px;
}
header{
	border-bottom: thin solid ;
	border-top: thin inset;
	border-color: #bd202e;
    background-color: #42393d;
    height: 7em;
    position: relative;
}
div#logo {
    margin: 0;
	position: absolute;
    top: 45%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}
nav {
	margin-top: 90px;
}
ul {
  list-style-type: none;
  margin: auto;
  overflow: hidden;
  width: 100%;
  position: relative;
}
ul#sitemap{
	display:grid;
	padding-left: 10px
}
section#page-text h1{
	text-align: center;
}

li {
    display: inline-block;
	margin: 0 auto;
	padding: 0 auto;
	max-width: 100%;
	text-align: center;
	width: 19%;
}
li a {
  color: white;
  text-decoration: none;
  font-family: athelas, serif;
  font-weight: 700;
  font-style: normal;
}
body {
	background-color: #898c8f;
	margin: 0;
	padding-bottom: 0;
	height:100%;
}

div#menu{
	max-width: 1000px;
  	position: relative;
 	margin: auto;
 	padding-top: 50px;
	filter: drop-shadow(0 0 30px #333);
	}
div#menu2{
	max-width: 1000px;
  	position: relative;
 	margin: auto;
 	padding-top: px;
	filter: drop-shadow(0 0 30px #333);
}
section#location {
	background-color: #42393d;
	border: thin;
	border-style: solid;
	border-color: #bd202e;
	width: 500px;
	position: relative;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}
h1, h2 {
	color: #bd202e;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
	font-family: athelas, serif;
	font-weight: 700;
	font-style: normal;
	font-size: 30px;
}
p, pre {
	padding-left: 10px;
	padding-right: 10px;
	color: white;
  	text-decoration: none;
  	font-family: majesti-banner-book, serif;
  	font-weight: 300;
  	font-style: normal;
}
div#footer{
    background-color: #42393d;
    height: 2em;
    position: fixed;
	margin-top: 10px;
	padding:none;
	bottom: 0;
	left: 0;
	width: 100%;
	border-top: thin solid;
}
div#footer pre{
	margin:7px;
}
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  padding-top: 15px;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

