@import url('https://fonts.googleapis.com/css?family=Montserrat');

* {
	padding: 0;
	margin: 0;
	list-style: none;
	text-decoration: none;
}

body {
	background: url(../images/background.jpg) no-repeat center center fixed;
	background-size: cover;
	z-index: -20;
}

.header {
	width: 100%;
	height: 375px;
	display: block;
	margin-top: 40px;
}

.inner_header {
	width: 1153px;
	height: 80%;
	display: block;
	margin: 0 auto;
	border-radius: 30px;
	border: 3px solid white;
}

.inner_header .crossfade > figure {
	animation: imageAnimation 30s linear infinite 0s;
	color: transparent;
	backface-visibility: hidden;
	background-color: red;
	height: 300px;
	opacity: 0;
	position: absolute;
	border-radius: 30px;
	width: 1153px;
	z-index: -1;
}

	.crossfade > figure:nth-child(1) {background-image: url('../images/header1.jpg');}
	.crossfade > figure:nth-child(2) {animation-delay: 6s; background-image: url('../images/header2.jpg');}
	.crossfade > figure:nth-child(3) {animation-delay: 12s; background-image: url('../images/header3.jpg');}
	.crossfade > figure:nth-child(4) {animation-delay: 18s; background-image: url('../images/header4.jpg');}
	.crossfade > figure:nth-child(5) {animation-delay: 24s; background-image: url('../images/header5.jpg');}

@keyframes imageAnimation {
	0% {animation-timing-function: ease-in; opacity: 0;}
	8% {animation-timing-function: ease-out; opacity: 1;}
	17% {opacity: 1}
	25% {opacity: 0}
	100% {opacity: 0}
}

.header_top {
	height: 100%;
	width: 100%;
	display: table;
}

.logo_container {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	z-index: 10;
}

.logo_container h1 {
	color: #101010;
	display: block;
	text-align: center;
	font-family: 'Montserrat';
	font-size: 70px;
	font-weight: 800;
	text-shadow:
		0 0 5px red,
		0 10px 20px red,
		0 0 80px red,
		0 0 100px transparent;
}

.logo_container h2 {
	color: #101010;
	display: inline-block;
	text-align: center;
	font-family: 'Montserrat';
	font-size: 40px;
	font-weight: 800;
	text-shadow:
		0 0 5px red,
		0 0 20px red,
		0 0 60px red,
		0 0 100px transparent;
}

.header_bottom {
	width: 	1153px;
	margin: auto;
	height: 20%;
	display: block;
}

.date {
	float: left;
	height: 100%;
	padding-left: 25px;
}

#dateDiv {
	color: #820000;
	font-family: 'Montserrat';
	font-size: 25px;
	font-weight: 600;
}

.navigation {
	float: right;
	height: 100%;
	padding-right: 10px;
}

#navigation a {
	display: inline-block;
	text-align: right;
	padding: 0px 15px;
}

#navigation a li {
	color: #101010;
	font-family: 'Montserrat';
	font-size: 25px;
	font-weight: 600;
}

#navigation a li:hover {
	color: white;
}

.sponsor_modal {
	width: 100%;
	height: 100%;
	margin-top: -40px;
	background-color: rgba(0, 0, 0, 0.85);
	position: fixed;
	display: flex;
  justify-content: center;
  align-items: center;
	opacity: 0;
	pointer-events: none;
	z-index: 60;
}

.sponsor_modal:target {
	opacity: 1;
	pointer-events: auto
}

.sponsor_modal > div {
	transform: translate(0px, -50px);
	transition: all 750ms ease;
}

.sponsor_modal:target > div {
	transform: translate(0px, 0px);
}

.sponsor_modal_contents {
	min-height: 425px;
	width: 500px;
	display: inline-block;
	background-color: white;
	text-align: center;
	padding: 15px;
	position: absolute;
	border: 3px solid rgb(130, 0, 0);
	box-shadow: 0px 0px 70px 15px rgb(130, 0, 0);
	border-radius: 30px;
}

.sponsor_modal_heading {
	width: 100%;
	height: 50px;
	display: block;
	margin-bottom: 30px;
	color: rgb(130, 0, 0);
	padding-bottom: : 45px;
	box-sizing: border-box;
	text-align: center;
	font-family: 'Montserrat';
	font-size: 37px;
	font-weight: 800;
	border-bottom: 5px solid rgb(130, 0, 0);
	box-sizing: border-box;
}

input {
	margin:  15px auto;
	display: block;
	width: 100%;
	height: 50px;
	padding: 10px;
	box-sizing: border-box;
	border: 3px solid rgb(130, 0, 0);
	border-radius: 20px;
	font-family: 'Montserrat';
	font-size: 25px;
	font-weight: 400;
}

.error {
  color: red;
	font-family: 'Montserrat';
	font-size: 20px;
	font-weight: 400;
	font-style: italic;
}

.success {
  color: rgb(130, 0, 0);
  text-align: center;
	font-family: 'Montserrat';
  font-weight: bold;
  font-size: 25px;
}

.failure {
  color: red;
  text-align: center;
	font-family: 'Montserrat';
  font-weight: bold;
  font-size: 25px;
}

.button_submit {
	background-color: rgba(130, 0, 0, 1);
	border: 3px solid white;
	border-radius: 30px;
	text-align: center;
	text-decoration: none;
	margin-top: 15px;
	margin-bottom: 15px;
	font-weight: 800;
	width: 30%;
	height: 50px;
	color: white;
	font-family: 'Montserrat';
	font-size: 25px;
}

.button_submit:hover {
	background-color: white;
	border: 3px solid rgb(130, 0, 0);
	border-radius: 30px;
	text-decoration: none;
	color: rgb(130, 0, 0);
	}

.close {
	position: absolute;
	top: 0;
	right: 10px;
	font-size: 42px;
	color: #666;
	transform: rotate(45deg);
	cursor: pointer;
}

.close:hover {
	color: #101010;
}

.modal_map {
	width: 100%;
	height: 100%;
	margin-top: -40px;
	background-color: rgba(0, 0, 0, 0.85);
	position: fixed;
	display: flex;
  justify-content: center;
  align-items: center;
	opacity: 0;
	pointer-events: none;
	z-index: 60;
}

.modal_map:target {
	opacity: 1;
	pointer-events: auto
}

.modal_map > div {
	transform: translate(0px, -50px);
	transition: all 750ms ease;
}

.modal_map:target > div {
	transform: translate(0px, 0px);
}

.modal_map_contents {
	height: 700px;
	width: 700px;
	display: inline-block;
	position: absolute;
	border: 2px solid rgb(130, 0, 0);
	box-shadow: 0px 0px 70px 15px rgb(130, 0, 0);
	border-radius: 30px;
}

.modal_map img {
	border-radius: 30px;
}

.modal_map_close {
	cursor: pointer;
}

.main {
	font-family: 'Montserrat';
	font-size: 25px;
	font-weight: 500;
	color: #000000;
	margin: 50px auto;
	width: 1153px;
	text-align: center;
}

.container {
	margin: auto;
	width: 1153px;
	display: flex;
	text-align: center;
}

#leftcolumn {
	flex: left;
	width: 70%;
	padding-left: 20px;
}

#leftcolumn p {
	text-align: left;
}

#leftcolumn p a {
	color: rgb(130, 0, 0);
}

#leftcolumn p a:hover {
	text-decoration: underline;
}

#leftcolumn img {
	border-radius: 30px;
	border: 3px solid rgb(130, 0, 0);
}

#leftcolumn img:hover {
	border: 3px solid white;
}

#leftcolumn iframe {
	border-radius: 30px;
	border: 3px solid rgb(130, 0, 0);
}

.btn {
	border: 3px solid transparent;
	border-radius: 30px;
	display: inline-block;
}

.btn:hover {
	background-color: white;
	border: 3px solid rgb(130, 0, 0);
}

#rightcolumn {
	flex: right;
	margin-left: 40px;
	width: 30%;
}

.top {
	display: inline-block;
	width: 100%;
	margin-top: 100px;
}

.button {
	background-color: rgb(130, 0, 0);
	border: 3px solid white;
	border-radius: 30px;
	padding: 15px;
	display: inline-block;
	color: white;
	font-weight: bold;
}

.button:hover {
	background-color: white;
	border: 3px solid rgb(130, 0, 0);
	color: rgb(130, 0, 0);
}

.photobanner-wrap {
	height: 1600px;
	width: 250px;
	margin: auto;
	background-color: rgb(130, 0, 0);
	border: 3px solid white;
	border-radius: 30px;
	overflow-y: hidden;
}

.photobanner {
	height: 6377px;
	width: 195px;
	margin: auto;
	animation: bannermove 25s linear infinite;
	animation-play-state: running;
}

.photobanner img {
	display: block;
	border-radius: 15px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.photobanner img:hover {
	border-radius: 15px;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	cursor: pointer;
	-webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
	box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
}

.photobanner-wrap:hover .photobanner {
	animation-play-state: paused;
}

@keyframes "bannermove" {
	0% {margin-top: 0px;}
	100% {margin-top: -4508px;}
}

@-moz-keyframes "bannermove" {
	0% {margin-top: 0px;}
	100% {margin-top: -4508px;}
}

@-webkit-keyframes "bannermove" {
	0% {margin-top: 0px;}
	100% {margin-top: -4508px;}
}

@-ms-keyframes "bannermove" {
	0% {margin-top: 0px;}
	100% {margin-top: -4508px;}
}

@-o-keyframes "bannermove" {
	0% {margin-top: 0px;}
	100% {margin-top: -4508px;}
}

.weather {
	width: 100%;
	height: 100px;
	display: block;
}

.inner_weather {
	width: 1153px;
	height: 100%;
	display: block;
	margin: 0 auto;
	position: relative;
	vertical-align: bottom;
}

.weatherwidget-io {
	border-radius: 30px;
	border: 3px solid white;
}

.footer {
	width: 100%;
	height: 350px;
	display: block;
}

.inner_footer {
	width: 1153px;
	height: 100%;
	display: block;
	margin: 0 auto;
	padding-bottom: 30px;
	position: relative;
}

.inner_footer_background {
	background: rgb(130, 0, 0);
	opacity: 0.75;
	border-radius: 30px;
	border: 3px solid white;
	position: absolute;
	width: 100%;
	height: 100%;
}

.inner_footer_content {
	color: white;
	display: block;
	font-family: 'Montserrat';
	font-size: 25px;
	font-weight: 500;
	opacity: 1;
	position: relative;
}

.inner_footer_content img {
	border-radius: 30px;
}

.inner_footer_content a {
	color: white;
}

.inner_footer_content a:hover {
	text-decoration: underline;
}
