body, h1, h2 {
	margin: 0;
	padding: 0;
	border: 0;
}
body{
  font-family: 'Handlee',cursive,Arial,sans-serif;
}
#nav-wrapper {
	position: fixed;
	width: 100%;
	z-index: 10;
	top: 0;
}
.navbar{
	background-color:rgba(59,89,152, 0.6);
  overflow:hidden;
  height:63px;
	padding-left: 5%;
	padding-right: 5%;
}
.navbar a{
  float:left;
  display:block;
  color:#ffffff;
	font-family: 'Handlee',cursive,Arial,sans-serif;
	text-transform: uppercase;
  text-align:center;
	font-weight: bold;
  padding:14px 16px;
  text-decoration:none;
  font-size:17px;
}
.navbar-nav a.current, .side-nav a.current {
	color: #faf518;
}
span.open-slide {
	float: right;
	display:block;
	text-align:center;
	font-weight: bold;
  padding:14px 16px;
	cursor: pointer;
}
.navbar ul{
	float: right;
  margin:8px 0 0 0;
  list-style:none;
}
.navbar ul li {
	display: inline-block;
}
.navbar a:hover{
  color:#faf518;
}
.side-nav{
  height:100%;
  width:0;
  position:fixed;
  z-index:10;
  top:0;
  right:0;
  background-color:rgba(59,89,152, 0.8);
  overflow-y:auto;
  padding-top:60px;
  -webkit-transition:0.5s;
  transition:0.5s;
	white-space: nowrap;
}
.side-nav a{
	font-family: 'Handlee',cursive,Arial,sans-serif;
  padding:10px 10px 10px 30px;
  text-decoration:none;
  font-size:22px;
  color:#fff;
  display:block;
  -webkit-transition:0.3s;
  transition:0.3s;
}
.side-nav a:hover{
  color:#faf518;
}
.side-nav span.btn-close{
  position:absolute;
  top:0;
  right:22px;
  font-size:36px;
  margin-left:50px;
	cursor: pointer;
	color: #ffffff;
}
#showcase {
	background-image: url('../images/tbay.png');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	height: 100vh;
}
#header-content {
	position: relative;
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center;
	color: #faf518;
	text-shadow: 1px 1px 2px #000000;
	padding-left: 5%;
	padding-right: 5%;
}
h1#welcome {
	font-size: 60px;
}
#banner {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	overflow: hidden;
	position: relative;
}
#banner > div > img {
	width: 100%;
	height: auto;
}

#banner-text {
	overflow: hidden;
}
/* Sliding in text image */
#banner-text img {
	-webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
}
@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  }
  60% {
  opacity: 1;
  -webkit-transform: translate3d(25px, 0, 0);
  transform: translate3d(25px, 0, 0);
  }
  75% {
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
  }
  90% {
  -webkit-transform: translate3d(5px, 0, 0);
  transform: translate3d(5px, 0, 0);
  }
  100% {
  -webkit-transform: none;
  transform: none;
  }
  }
  @keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  }
  60% {
  opacity: 1;
  -webkit-transform: translate3d(25px, 0, 0);
  transform: translate3d(25px, 0, 0);
  }
  75% {
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
  }
  90% {
  -webkit-transform: translate3d(5px, 0, 0);
  transform: translate3d(5px, 0, 0);
  }
  100% {
  -webkit-transform: none;
  transform: none;
  }
  }
/* End of Sliding in text image */
/* bouncing arrow */
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
#arrow {
	bottom: 0;
	position: absolute;
	width:36px;
  right: 0;
  left: 0;
  margin: auto;
}

.bounce {
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
}
/*------------------- Start of main content -------------------*/
.content-wrapper {
	font-family: 'Handlee',cursive,Arial,sans-serif;
	font-size: 1.2em;
	line-height: 1.2;
	padding-top: 63px;
	margin: 0;
	height: 100%;
	width: 100%;
	background-image: -webkit-gradient(linear, left bottom, left top, from(#d9afd9), to(#97d9e1));
	background-image: linear-gradient(to top, #d9afd9 0%, #97d9e1 100%);
	background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
	position: relative;
	overflow: hidden;
}
.content-wrapper-hm{
	background-color: white;
	width: 90%;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 15px;
}
.content-hm {
	margin-right: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-flex: 4;
	-ms-flex: 4;
	flex: 4;
}
div.buttons {
	text-align: center;
	margin-bottom: 20px;
}
i.icon {
}
.btn {
	width: 200px;
	height: auto;
	overflow: hidden;
	display: block;
	text-align: center;
	padding: 10px 0;
	margin:0 auto;
	text-decoration: none;
	font-weight: bold;
	border-radius: 4px;
	color:#ffffff;
	background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #3b5998), color-stop(50%, transparent));
	background-image: linear-gradient(to right, #3b5998 50%, transparent 50%);
	background-size: 200% 100%;
	background-repeat: no-repeat;
	background-position: bottom right;
	-webkit-transition: all 0.45s ease-in;
	transition: all 0.45s ease-in;
}
.btn:hover {
	-webkit-transition: all 0.45s ease-in;
  transition: all 0.45s ease-in;
  /** START THE FINAL STATE STYLING **/
  background-position: bottom left;
  color: #ffffff;
}
.winz {
	background-color: #FFCC00;
}
.first-aid {
	background-color: #ED1B24;
	color: #ffffff;
}
.food {
	background-color: #07dd0a;
}
.info {
	background-color: #8b59be;
}
#map {
	height: 350px;
}
#map iframe {
	display: block;
}
.sidebar {
	border-left: 1px solid blue;
	padding-left: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.sidebar > div > a > img {
	width: 100%;
	height: auto;
}
/*------------------- Home contact form -------------------*/
.contactFrm {
	padding: 15px 10px 15px 10px;
	text-align: center;
	background-color: #d1b4da;
	width: 100%;
	border-radius: 5px;
	border: 2px solid #000000;
	min-width: 0;
	box-sizing: border-box;
}
.contactFrm h4 {
	margin: 0 0 5px 0;
}
.contactFrm input[type=text], .contactFrm textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 14px;
  resize: vertical;
	font-family: 'Handlee',cursive,Arial,sans-serif;
	font-size: 17px;
}
.contactFrm textarea {
	overflow: auto;
	height: 100px;
}
.contactFrm button {
	font-family: 'Handlee',cursive,Arial,sans-serif;
	text-transform: uppercase;
  outline: none;
  color: #FFFFFF;
  padding: 0.4em 0;
  font-size: 1em;
  margin: 0;
  -webkit-appearance: none;
  background: #1212ff;
  transition: 0.5s all;
  border: none;
	border-radius: 4px;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  width: 100%;
  cursor: pointer;
	position: relative;
}
.contactFrm button:hover {
  background: #8e8efe;
}
.contactFrm ::-webkit-input-placeholder { /* Chrome */
  color: #3c3cff;
	font-family: 'Handlee',cursive,Arial,sans-serif;
	font-size: 17px;
}
.contactFrm ::-ms-input-placeholder { /* Edge */
	color: #3c3cff;
	font-family: 'Handlee',cursive,Arial,sans-serif;
	font-size: 17px;
}
.contactFrm :-ms-input-placeholder { /* IE 10+ */
	color: #3c3cff;
	font-family: 'Handlee',cursive,Arial,sans-serif;
	font-size: 17px;
}
.contactFrm ::-moz-placeholder { /* Firefox 19+ */
	color: #3c3cff;
	font-family: 'Handlee',cursive,Arial,sans-serif;
	font-size: 17px;
	opacity: 1;
}
.contactFrm :-moz-placeholder { /* Firefox 4 - 18 */
	color: #3c3cff;
	font-family: 'Handlee',cursive,Arial,sans-serif;
	font-size: 17px;
	opacity: 1;
}
p.form-message {
	font-size: 18px;
	margin: 5px 0 0 0;
}
.form-error {
	color: red;
}
.form-success {
	color: green;
}
.input-error {
	box-shadow: 0px 2px 0px red;
}
#loading {
	display: none;
}
img#loading {
	width: 35px;
	height: 35px;
	position: absolute;
	left: 10px;
	top: 2px;
}
/*------------------- End of Home contact form -------------------*/
/*------------------- End of main content -------------------*/
footer p{
	color: #ffffff;
}
footer img {
	display: block;
	width: 100%;
	height: auto;
}
footer span {
	font-family: 'Courgette', Arial, sans-serif;
}
footer {
	padding: 10px 5px 0 5px;
	background-color:rgba(59,89,152, 1);
	height: auto;
	position: relative;
}
footer a {
	text-decoration: none;
	color: #ffffff;
}
.footer-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
	text-align: center;
}
.footer-top > div.lt{ flex:1;}
.footer-top > div.cnt{ flex: 2;}
.footer-top > div.rt{ flex: 1;}
.footer-bottom {
	text-align: center;
}
.footer-bottom p {
	margin: 0;
	padding: 15px;
}
/* Media queries */
@media(max-width:1060px){
	.footer-top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
@media(max-width:968px){
  .navbar-nav{display:none}
}

@media(min-width:968px){
  span.open-slide{display:none}
}
@media(max-width:668px){
	h1 {
		font-size: 30px;
	}
	h1#welcome {
		font-size: 40px;
	}
	#content-wrapper-hm {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.content-hm {
		margin-right: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
	#map {
		height: 250px;
	}
	.sidebar {
		display: none;
	}

}
@media(max-width:468px){
	h1 {
		font-size: 20px;
	}
	h1#welcome {
		font-size: 30px;
	}
	#map {
		display: block;
		height: 150px;
	}
}
