/* General */
* { /* Reset */
    padding: 0px;
    margin: 0px;
	box-sizing:border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
	background: url("../img/background.jpg") no-repeat center fixed, grey;
	background-blend-mode: soft-light;
	margin: auto;
    width:100%;
}

header{
	text-align: center;
}

header img{
	width:10%;
	height:10%;
}


nav {
	overflow: hidden; /* Hide overflow */
	background-color: #333; /* Dark background color */
	position: relative;
	margin-left:auto;
    margin-right:auto;
	width:70%;
}

/* navbar links */
nav a {
	float: left; /* Make sure that the links stay side-by-side */
	display: block;
	color: white;
	text-align: center;
	padding: 14px 20px;
	text-decoration: none; /* Remove underline */
}

/* Change color on hover */
nav a:hover {
	background-color: #66cc00;
	color: black;
}

.content {
	position:relative;
    background-color: white;
	text-align: center;
  	width: 70%;
    margin-left:auto;
    margin-right:auto;
}
.content ul{
  /* border: 1px solid red; */
  text-align: left;
  /* width: 50%; */
  margin-left:15%;
  margin-right:15%;
  padding: 5px;
}

.content ul ul{
  text-align: left;
  margin-left:5%;
  padding: 5px;
  
}

p{
	font-size: 20px;
	font-weight: normal;
	padding: 20px;
}

h1{
	font-size: 40px;
	padding-top: 10px;
  	padding-bottom: 10px;
}

h2{
	font-size: 25px;
	padding-top: 10px;
  	padding-bottom: 10px;
}

.content img{
	width: 85%
}

footer{
	background-color: #ffffff;
	text-align: center;
	width: 70%;
	padding-top: 20px;
	margin-right: auto;
	margin-left: auto;
}

footer p{
	font-size: 10px;
  	padding: 5px;
}

/* Page Specific CSS */

.calendar {
    border: none;
	width: 90%;
	height: 600px;
}

table {
	margin-left: auto;
	margin-right: auto;
	width: 95%;
}

table, th, td{
	border-collapse: collapse;
	border: 1px solid black;
}

th, td{
	padding: 2px;
}

/* Gallery container */
.gallery-container {
	max-width: 75%;
	position: relative;
	margin: auto;
}

/* Hide the images by default */
.gallery-image {
	display: none;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	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;
}

.prev {
	left: 0;
}

/* Translucent background on hover */
.prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
}

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

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

/* 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;
}

/* FORM */

/* Error text for form */
.error {
	color: #FF0000;
}

/* Disable resize for address box */
textarea {
  resize: none;
}

.charcount {
	font-size: 12px;
  	text-align: left;
}

.t_and_c {
    text-align: left;
	padding: 5px;
}

.t_and_c p{;
	font-size: 14px;
	font-weight: normal;
	padding: 0px;
}

.t_and_c h2{;
	font-size: 18px;
	font-weight: bold;
	padding-top: 15px;
  	padding-bottom: 10px;
}

/* Responsive */
@media only screen and (min-width: 1400px) {
	nav {
		overflow: hidden; /* Hide overflow */
		background-color: #333; /* Dark background color */
		position: relative;
		margin-left:auto;
    	margin-right:auto;
		width: 50%;
	}
}
@media only screen and (min-width: 1400px) {
	.content {
		position:relative;
    	background-color: white;
		text-align: center;
  		width: 50%;
    	margin-left:auto;
    	margin-right:auto;
	}
}
@media only screen and (min-width: 1400px) {
	footer{
		background-color: #ffffff;
		font-size: 10px;
        text-align: center;
        width: 50%;
        padding: 10px;
        margin-right: auto;
        margin-left: auto;
	}
}
@media only screen and (min-width: 1400px) {
	.charcount {	
  		text-align: left;
      	margin-left: 25%;
      	padding: 0px; 
      	position: relative;
	}
}

@media only screen and (min-width: 1400px) {
	.charcount p{
      	padding: inherit;
		font-size: 12px;
	}
}