/*font-family: 'Yellowtail', cursive; */

body, html {
	padding: 0;
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	background-color: #202020;
}

.dim-screen {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 25;
	background-color: rgba(10,10,10,0.7);
}

.top-bar {
	background: -webkit-linear-gradient(right, rgba(30,40,40,0.9),rgba(45,45,40,0.8),rgba(45,45,40,0.7),rgba(45,45,40,0.7)); /* For Safari 5.1 to 6.0 */
	background: linear-gradient(to right, rgba(30,40,40,0.9),rgba(45,45,40,0.8),rgba(45,45,40,0.7),rgba(45,45,40,0.7));
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 30;
	text-align: center;
}

.top-bar .phone {
	font-size: 16pt;
	color: white;
	position: absolute;
	right: 10px;
	top: 53px;
	-webkit-transition: 0.5s top;
	transition:; 0.5s top;
}

.top-bar .address {
	background-color: rgba(45,45,40,0.8);
	box-shadow: 0px 1px 2px black;
	font-size: 11pt;
	color: #c0c0c0;
	text-align: right;
	padding-right: 10px;
}

.wrapper {
	max-width: 1270px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

header {
	background-color: white;
}

.top-bar .logo {
	height: 70px;
	position: absolute;
	left: 25px;
	top: 5px;
}

nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	color: white;
	font-weight: 700;
	font-size: 14px;
	text-align: right;
	margin-right: 110px;
}

nav li {
	display: inline-block;
	padding: 10px;
	padding-bottom: 25px;
	padding-top: 40px;
	text-align: left;

	-webkit-transition: 0.5s padding;
	transition: 0.5s padding;
}

nav li:hover {
	background-color: #BD1B2A;
}

nav a {
	color: inherit;
	text-decoration: none;
}

.mobile_menu_button, .hide {
	display: none;
	cursor: pointer;
}

nav li ul {
	display: none;
	list-style: none;
	padding: 5px;
	text-align: left;
	position: absolute;
	z-index: 30;
	background: transparent;
	margin-top: 0px;
	padding-top: 25px;
	padding-bottom: 15px;
	margin-left: -15px;
	left: auto;
	font-weight: 600;
}

nav li ul li {
	display: block;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	width: 180px;
	border: none;
	background-color: rgba(10,10,10,0.9);
	color: white;
}

nav ul li:hover > ul {
	display: block;
}

.slideshow {
	width: 100%;
	position: relative;
	height: 650px;
	-webkit-box-shadow:  0 16px 20px -12px black;
	-moz-box-shadow:  0 16px 20px -12px black;
	box-shadow:  0 16px 20px -12px black;
	padding-bottom: 4px;
}

.slide {
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.slideshow .logo {
	width: 400px;
	position: absolute;
	z-index: 10;
	top: 120px;
	left: 20px;
}

.slide-selector {
	width: 200px;
	position: absolute;
	text-align: center;
	z-index: 6;
	bottom: 10px;
	left: calc(50% - 100px);
}

.slide-selector-button {
	display: inline-block;
	border: 2px solid rgba(250,250,250,0.8);
	background-color: rgba(150,150,150,0.6);
	border-radius: 50%;
	width: 12px;
	height: 12px;
	cursor: pointer;
	margin-right: 5px;
	margin-left: 5px;
}

.slide-selector-button:hover {
	background-color: white;
	border: 2px solid white;
}

form.contact {
	display: none;

	width: 320px;
	max-width: calc(100% - 20px);

	margin-left: auto;
	margin-right: auto;
}

header form.contact input, header form.contact label, header form.contact textarea {
	width: 100%;
	margin-bottom: 5px;
	text-align: left;
}

form.contact .button {
	margin-left: auto;
	margin-right: auto;
	width: auto;
}

#header-cta-anchor {
	height: 100px;
	margin-top: -100px;
}

/* =========================== */

.main {
	margin-top: -4px;
	background-color: white;
	padding-top: 30px;
}

.header-cta {
	text-align: center;
}

.social-icons {
	text-align: center;
}

.slogan {
	font-size: 24pt;
	font-weight: 300;
	color: black;
	text-align: center;
	padding: 10px;
	margin: 5px;
	display: none;	
}

.slogan span {
	font-family: 'Yellowtail', cursive;
	color: #c7081b;
	font-size: 1.5em;
}

.header-cta .contact {
	text-align: center;
	font-size: 14pt;
	color: #c7081b;
	margin: 3px;
	padding: 0;
}

.header-cta .contact .button {
	margin-left: 15px;
}

hr {
	height: 2px;
	background: linear-gradient(to right, transparent,#404040,transparent);
	border: none;
	margin: 0;
	margin-top: 15px;
}

section {
	margin-bottom: 30px;
}

h1, h2, h3, h4, h5, h6 {
	text-align: center;
	color: #c7081b;
}

h1 {
	font-weight: normal;
}

img {
	max-width: 100%;
}

.button {
	color: white;
	background-color: #c7081b;
	border-radius: 5px;
	text-align: center;
	padding: 7px;
	padding-left: 15px;
	padding-right: 15px;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
}

.button:hover {
	background-color: #808080;
}

.col2, .col3, .col4, .col-2thirds, .col-most {
	display: inline-block;
	vertical-align: top;
	padding: 10px;
}

.col2 {
	width: calc(50% - 30px);
}

.col2 img {
	max-width: 100%;
}

.col3 {
	width: calc(33% - 30px);
	text-align: center;
}

.col4 {
	width: calc(25% - 30px);
	text-align: center;
}

.col-2thirds {
	width: calc(66% - 30px);
}

.col-most {
	width: calc(75% - 30px);
}

.fltL {
	float: left;
	margin: 10px;
	max-width: 100%;
}

.fltR {
	float: right;
	margin: 10px;
	max-width: 100%;
}
 
.fltC {
	margin-left: auto;
	margin-right: auto;
	display: block;
	max-width: 100%;
}

.overflow-x {
	overflow-x: auto;
}

label {
	text-align: right;
	display: inline-block;
	width: 150px;
	vertical-align: top;
}

input, select, textarea {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

	width: calc(100% - 20px);
	display: inline-block;
	vertical-align: top;

	padding: 5px;
	border-radius: 5px;
	border: 1px solid #B5B5B5;
	background-color: #F3F3F3;
}

textarea {
	resize: none;
	height: 80px;
}

input[type=submit], input[type=reset] {
	width: auto;
	cursor: pointer;
}

input[type=submit] {
	padding-left: 30px;
	padding-right: 30px;
}

input[type=submit]:hover, input[type=reset]:hover {
	background-color: #808080;
}

.watch-list {
	position: fixed;
	bottom: 0;
	left: 0;
	border: 1px solid #e0e0e0;
	background-color: rgba(255,255,255,0.8);
	padding: 5px;
	z-index: 20;
	border-top-right-radius: 5px;
	width: 270px;
}

.watch-list a {
	color: inherit;
	text-decoration: none;
}

.show-watch-list {
	font-size: 14pt;
	cursor: pointer;
	padding: 5px;
	border-radius: 5px;
	box-shadow: 0 0 5px black;
	background: linear-gradient(#EBEBEB, #e0e0e0);
	margin: 5px;
}

.show-watch-list img {
	max-width: 25px;
}

.show-watch-list div {
	margin-top: 2px;
	display: inline-block;
	vertical-align: top;
}

.show-watch-list:hover {
	background: linear-gradient(#e0e0e0,#a0a0a0);
}

.watchlist-boats {
	display: none;
}

.watchlist-boat {
	margin: 5px;
	margin-bottom: 2px;
	margin-top: 2px;
	padding: 5px;
	border: 1px solid rgba(150,200,255,1);;
	border-radius: 3px;
	background-color: rgba(150,200,255,0.4);
	vertical-align: top;
}

.watchlist-boat img {
	width: 60px;
}

.watchlist-boat div {
	display: inline-block;
	vertical-align: top;
	margin-left: 5px;
	width: calc(100% - 65px);
}

.watchlist-boat:hover {
	background-color: rgba(150,200,255,0.8);
}

footer {
	background-color: #202020;
	padding: 10px;
	color: #a0a0a0;
	font-size: 10pt;
}

footer a {
	color: inherit;
	text-decoration: none;
}

footer h3 {
	color: #a0a0a0;
}

footer .logo {
	width: 280px;
	display: block;
	position: static;
	margin-top: 20px;
	margin-bottom: 20px;
}

footer .login {
	margin-left: 5px;
}

.login:hover {
	color: white;
}

footer .contact {
	font-size: 18pt;
	position: absolute;
	left: 10px;
}

footer ul {
	text-align: left;
	padding: 0;
	margin: 0;
	color: #a0a0a0;
	font-size: 10pt;
	display: block;
}

footer ul a {
	color: inherit;
}

footer li {
	display: block;
	padding: 5px;
}

footer li:hover {
	color: white;
}

footer p {
	color: #a0a0a0;
}

footer .credit {
	text-align: center;
}

footer .credit img {
	width: 70px;
}

@media (max-width: 1900px) {
	.slideshow {
		height: 600px;
	}
}

@media (max-width: 1590px) {
	.slideshow {
		height: 500px;
	}
}

@media (max-width: 1360px) {

	.top-bar .phone {
		display: none;
	}

	nav ul {
		margin-right: 10px;
	}
}

@media (max-width: 1150px) {
	.top-bar .address {
		display: none;
	}

	header .logo {
		height: 55px;
	}

	nav {
		padding: 10px;
	}

	nav ul {
		position: fixed;
		top: 0;
		left: -240px;
		bottom: 0;
		width: 200px;
		padding: 0;
		background-color: rgba(10,10,10,0.9);
		border-right: 2px solid #BD1B2A;
		box-shadow: 5px 0 5px rgba(10,10,10,0.9);
	}

	nav li {
		display: block;
		padding: 10px;
		padding-top: 15px;
		padding-bottom: 15px;
	}

	nav li ul {
		display: block;
		position: static;
		box-shadow: none;
		border: 0;
		margin: 0;
		padding: 0;
		background-color: black;
		width: auto;
	}

	nav li ul li {
		width: auto;
		background-color: black;
	}

	.mobile_menu_button, .hide {
		display: block;
	}

	.mobile_menu_button {
		margin-left: auto;
		margin-right: auto;
		width: 44px;
		cursor: pointer;
	}

	.hide {
		text-align: right;
	}

	.slideshow .logo {
		height: auto;
		top: 80px;
		max-width: calc(100% - 30px);
	}
}

@media (max-width: 900px) {
	.slideshow {
		height: 400px;
	}

	.col-2thirds, .col3 {
		display: block;
		width: calc(100% - 20px);
		margin-top: 20px;
		margin-bottom: 20px;
	}

	footer .col2 {
		display: block;
		width: calc(100% - 20px);
	}
}

@media (max-width: 500px) {
	nav {
		height: 50px;
		float: right;
	}

	.col2 {
		display: block;
		width: calc(100% - 20px);
	}
}