.main {
	width: 100%;
  height: auto;
	display: inline-block;
}

.nav {
	background: #333333;
	display:flex;
	margin-bottom: 0%;
	position: sticky;
	position: -webkit-sticky;
	top: 0;
}

.nav a {
	display: block;
	color: white;
	text-align: center;
	padding: 5px;
	text-decoration: none;
}

.nav a:hover:not(.active) {
	background-color: #111111;
}

.page {
	height: auto;
	margin-top: 2px;
}

.page-info {
	height: auto;
	width: 100%;
	margin-top: 2px;
}

.caption-text {
	border: 2px solid black;
	border-radius: 3px;
	background-color:lightgrey;
}

.image {
	display: flex;
	justify-content: center;
	object-fit: contain;
}

div.image img {
  display: flex;
	width: 100%;
	object-fit: contain;
}

.bg-div {
	background-image: url("images/background-image.png");
	width: 100%;
	height: 1000px
}

.center {
	margin: auto;
	text-align: center;
	width: 100%;
	padding: 0%;
	color: white;
	font-size: 36pt;
}

.right {
	display:flex;
	margin: auto;
	text-align: justify-all;
	vertical-align: middle;
}

div.gallery {

}

div.gallery img {
  width: 100%;
  object-fit: contain;
}

div.desc {
  padding: 15px;
  text-align: justify-all;
}

.responsive-header {
  text-align: center;
  background-color:lightgrey;
}



@media only screen and (min-width: 991px){
  .responsive {
    padding: 0 6px;
    float: left;
    height: auto;
    width: 33.3%;
    border: 2px solid black;
  }
}

* {
  box-sizing: border-box;
}

@media only screen and (max-width: 991px) {
  .responsive {
    padding: 0 6px;
		height:auto;
    border: 2px solid black;
		width: 100%;
	}
  .col-25, .col-75, input[type=submit] {
    	width: 20%;
    	margin-top: 0;
  }
  .nav {
  	flex-direction: column;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

* {
  box-sizing: border-box;
}

.col-25 {
  float: left;
  width: 50%;
  margin-top: 10px;
}

.col-75 {
  float: left;
  width: 50%;
  margin-top: 10px;
}

input[type=text], select, textarea {
  width: 100%;
}

input[type=submit] {
  float: right;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.footer {
   position: fixed;
   font-size: 10px;
   height:3%;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #333333;
   color: white;
   text-align: center;
}