:root {
	--logoWidth: 323px;
}
@font-face {
    font-family: 'CenturyGothic';
    src: url('gothic.ttf');
}
/* body styles */
* {
  box-sizing:border-box;
}

body {
	background-color: #FFFFFF;
	font-family: "CenturyGothic", sans-serif;
	margin: 0px;
	font-size: 16pt;
	padding: 0px;
}
html {
	min-height: 100%;
}
/* end body styles */

/* header styles */
header {
	width: 100%;
	height: auto;
	z-index: 999;
	position: relative;
	background-color: #FFFFFF;
	box-shadow: 0px 7px 5px 0px rgba(0,0,0,0.5);
	margin: 0 auto;
	top: 0;
}
#logo {
	width: var(--logoWidth);
	height: 180px;
	background-image: url("images/logo.png");
	background-repeat: no-repeat;
	background-position: center center;
	float: left;
	cursor: pointer;
}
#companionLogo {
	width: 275px;
	height: 180px;
	background-image: url("images/companionlogo.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	float: right;
	cursor: pointer;
}
#contactDisplay {
	width: 200px;
	margin-top: 45px;
	float: left;
	margin-left: 30px;
}
#phoneNumberPanel {
	font-family: "massilia", sans-serif;
	padding: 7px;
	color: #FFFFFF;
	background-color: #0a233f;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 5px;
	font-size: 18pt;
	text-align: center;
	width: 100%;
	margin: 0 auto;
	margin-bottom: 20px;
}
#phoneNumberPanel a:link, #phoneNumberPanel a:visited, #messagePanel a, #phoneNumberPanel a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
#phoneNumberPanel a:hover, #messagePanel a:hover {
	text-decoration: underline;
}
#messagePanel {
	font-family: "massilia", sans-serif;
	padding: 7px;
	color: #FFFFFF;
	background-color: #ff0000;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 5px;
	font-size: 18pt;
	text-align: center;
	width: 100%;
	margin: 0 auto;
}

#headerInner {
	margin: 0 auto;
	width: 830px;
	height: 180px;
}
#spacer {
	width: 100%;
	height: 240px;
	display: none;
}
/* end header styles */
/* menu styles */

nav {
	width: 100%;
	margin: 0;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #00a0d0;
}
/* end menu styles */
/* body styles */
main {
	width: 80%;
	max-width: 1400px;
	background-color: white;
	padding: 15px;
	margin: 0 auto;
	padding-bottom: 50px;
}

/* slides */
.swiper {
	width: 100%;
  height: 400px;
	max-width: 1920px;
	margin: 0 auto;
}
.swiper-slide {
	text-align: center;
  font-size: 18px;
  background: #fff;
}
.swiper-slide img {
	display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* end slides */
main p, main td {
  margin-left: 25px;
  margin-right: 25px;
	line-height: 25px;
	color: #363636;
}
main img {
	padding: 10px;
}
main blockquote {
	max-width: 70%;
	margin: 0 auto;
	font-style: italic;
}
main h4, main #galleryHeading {
	font-size: 38pt;
	color: #00B0F0;
  margin-left: 15px;
  margin-right: 15px;
	font-family: "good-karma-regular", sans-serif;
	margin-bottom: 0px;
	margin-top: 0px;
}
#main galleryHeading {
	margin-top: 15px;
}
main h5 {
	font-size: 22pt;
	color: #00B0F0;
  margin-left: 22px;
  margin-right: 22px;
	font-family: "good-karma-regular", sans-serif;
	margin-bottom: 0px;
	margin-top: 0px;
}
main select, main input, main textarea, main ul, main ol {
	color: #363636;
	line-height: 20px;
	font-family: "CenturyGothic", sans-serif;
	font-size: 16pt;
}
main ul {
	margin-left: 35px;
}
main select, main input, main textarea {
	padding: 5px;
	margin: 5px;
	box-shadow: 1px 1px 2px rgba(139,161,83,0.5);
}
main select:focus, main input:focus, main textarea:focus {
	box-shadow: 2px 2px 4px rgb(139,161,83);
}
main label {
	padding: 10px;
}
main a:link, main a:visited {
	text-decoration: none;
}
main a:hover {
	text-decoration: underline;
	color: red;
}
main #galleryImagesContainer, main #galleryFoldersContainer {
	width: 95%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  justify-content: center;
  align-items: top;
}
main .galleryImageCell {
	width: 220px;
	max-width: 220px;
	height: auto;
	padding: 10px;
	margin: 10px;
	text-align: center;
	border: 1px #00a0d0 solid;
}
main .galleryFolderCell {
	width: 220px;
	max-width: 220px;
	height: auto;
	padding: 10px;
	margin: 10px;
	border: 1px #00a0d0 solid;
}
main .galleryImageCell img, main .galleryFolderCell img {
	width: 100%;
	transition: 0.5s;
	max-width: 200px;
	opacity: 0.8;
	-webkit-transform: translateZ(0);
}
main .galleryImageCell img:hover, main .galleryFolderCell img:hover {
	opacity: 1.0;
}
main .galleryFolderCell img {
	margin: 0 auto;
}
#imageNavPanel {
	width: 100%;
	background-color: rgba(0, 160, 208, 0.7);
	padding: 15px;
	margin: -25px 0 0 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  justify-content: center;
  align-items: top;
	column-gap: 25px;
	padding-bottom: 35px;
}
.imageNavPanelItem {
	text-align: center;
	background-color: rgba(255, 255, 255, 0.4);
	width: 265px;
	height: auto;
	margin-top: 25px;
	padding: 25px;
	line-height: 25px;
	justify-content: space-between;
	font-size: 12pt;
	border-radius: 10px;
}
.imageNavPanelItem img {
	border: 0px;
	width: 200px;
	height: 110px;
	opacity: 0.8;
	transition: all 0.3s ease-in-out;
	border-radius: 10px;
}
.imageNavPanelItem img:hover {
	opacity: 1.0;
}
.imageNavPanelItem a:link, .imageNavPanelItem a:visited {
	font-size: 16pt;
	font-weight: bold;
	text-decoration: none;
}
.imageNavPanelItem a:hover {
	color: red;
	text-decoration: underline;
}
.parallaxSection{
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
  font-size: 16px;
}
.img-parallax {
  width: 100vmax;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  pointer-events: none
}
#testimonialDisplay {
	background-color: rgba(255, 255, 255, 0.7);
	margin: 0 auto;
	width: 700px;
	max-width: 80%;
	padding: 25px;
	font-family: "good-karma-regular", sans-serif;
	font-size: 28pt;
	text-align: center;
	border-radius: 10px;
	color: #0a233f;
  position: relative;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
  display: block;
	margin: 0;
}
#eventsContainer, #dayTripsContainer, #toursContainer {
	width: 100%;
	text-align: center;
}
#eventsContainer img, #dayTripsContainer img, #toursContainer img {
	max-width: 100%;
	padding: 15px;
}
#mobileTestimonial {
	font-size: 18pt;
	font-family: "good-karma-regular", sans-serif;
	text-align: center;
	border-radius: 10px;
	color: #0a233f;
	width: 90%;
	margin: 0 auto;
	background-color: #94d7eb;
	display: none;
	padding: 15px;
	margin-top: 15px;
	margin-bottom: 15px;
}
/* end body styles */
/* footer styles */
footer {
	font-family: "massilia", sans-serif;
	background-color: #0a233f;
	width: 100%;
	padding: 15px;
	text-align: center;
	line-height: 20px;
	font-size: 12pt;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  justify-content: center;
  align-items: top;
	box-shadow: 0px -2px 5px 0px rgba(0,0,0,0.5);
}
footer a {
	color: #FFFFFF;
}
footer a:hover {
	color: #FFFFFF;
	text-decoration: none;
}
#footerCopyright {
	text-align: center;
	color: white;
	width: 100%;
	padding: 5px;
}
.footerItem {
	text-align: center;
	color: #FFFFFF;
	width: auto;
	height: auto;
	padding-left: 15px;
	padding-right: 15px;
	transform: skewX(4deg);
}
/* end footer styles */
@media screen and (max-width: 1300px) {
	body, html {
		font-size: 12pt;
	}
	header {
		height: auto;
	}
	main {
		width: 100%;
		max-width: 100%;
	}
	main h4 {
		font-size: 24pt;
		margin-bottom: 15px;
		margin-top: 15px;
	}
	main h5 {
		font-size: 18pt;
		margin-bottom: 15px;
		margin-top: 15px;
	}
	.parallaxSection{
	  display: none;
	}
	#mobileTestimonial {
		display: block;
	}
}
@media screen and (max-width: 1000px) {
	main select, main input, main textarea {
		font-size: 12pt;
	}
	header {
		box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
		z-index: auto;
	}
	#headerInner {
		width: var(--logoWidth);
		height: 230px;
	}
	#phoneNumberPanel, #companionLogo {
		display: none;
	}
	#logo {
		float: none;
		margin: 0 auto;
	}
	#contactDisplay {
		width: 200px;
		margin-top: 15px;
		float: none;
		margin-left: 0px;
		margin: 0 auto;
	}
	#slider {
		display: none;
	}
	nav {
		position: relative;
	}
}