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

body {margin: 0;}

ul.sidenav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 25%;
  background-color: #F1F3F4;
  position: fixed;
  height: 100%;
  overflow: auto;
}

ul.sidenav li a {
  display: block;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
}
 
ul.sidenav li a.active {
  background-color: #F21B06;
  color: white;
}

ul.sidenav li a:hover:not(.active) {
  background-color: #001E59;
  color: white;
}

div.content {
  margin-left: 24%;
  padding: 1px 0px 1px 16px;
  height: 1000px;
}

@media screen and (max-width: 900px) {
  ul.sidenav {
    width: 100%;
    height: auto;
    position: relative;
  }
  
  ul.sidenav li a {
    float: left;
    padding: 15px;
  }
  
  div.content {margin-left: 0  ;}
}

@media screen and (max-width: 400px) {
  ul.sidenav li a {
    text-align: center;
    float: none;
  }
}

/* full screen nav bar end */

#heroimg{
	width: 100%;
	object-fit: fill;
}

.content h2{
	margin-left: 5%;
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
}

.content p{
	margin-left: 5%;
	width: 60%;
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
}

.content a{
	margin-left: 5%;
	width: 60%;
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	color: white;
}

.column h2{
	margin-left: 10%;
	margin-top: 15%;
}

.column p{
	margin-left: 10%;
	width: 80%;
}

#historyimg{
	padding: 5%;
}

#visitimg{
	padding: 5%;
}

#hero{
	margin-bottom: 10%;
}

/* Container holding the image and the text */

.overlay {
  position: relative;
  text-align: left;
  color: white;
}


.overlaycenter {
  position: relative;
  text-align: center;
  color: white;
}

.overlaytext {
  position: absolute;
  top: 30%;
  left: 45%;
  transform: translate(-70%, -50%);
}


@media screen and (max-width: 400px) {
 .overlaytext {
    position: fixed;
  }
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* flexbox */
* {
  box-sizing: border-box;
}

.row {
  display: flex;
}

/* Create three equal columns that sits next to each other */
.column {
  flex: 33.33%;
  padding: 0px;
}

.galleryimg{
	width: 100%;
	object-fit: fill;
}


h1{
	font-family: "DM Sans", sans-serif;
	font-weight: 600;
	margin-left: 5%;;
}

/* slideshow */

* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

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

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

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

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

.content .footer{
	background-color: #001E59;
	padding-top: 1%;
	padding-bottom: 2%;
	margin-top: 2%
}

.content .footer p{
	color: white;
}