/*!
Theme Name: USA Ultimate
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: usa-ultimate
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

USA Ultimate is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
- Normalize
- Box sizing
# Base
- Typography
- Elements
- Links
- Forms
## Layouts
# Components
- Navigation
- Posts and pages
- Comments
- Widgets
- Media
- Captions
- Galleries
# plugins
- Jetpack infinite scroll
# Utilities
- Accessibility
- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&family=Libre+Franklin:wght@100;300;400;500;600;700&family=Oswald:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700;900&family=Slackside+One&display=swap');
/*@import url('https://use.typekit.net/yae8laj.css');*/
@import url('https://use.typekit.net/yae8laj.css');
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

:root {
	--black: #423e3c;
	--black: #23263e;
	--primary: #193261;
	--primary: #bb1f41;
	--accent: #266e66;
	--accent: #1f588e;
	--off: #78331b;
	--off: #447e57;
	--off: #b3c5d0;
	--blue: #196a9d;
	--navy: #2a2f3c;
	--tradblue: #1e508c;
	--tall: #095185;
	--aqua: #10799e;
	--green: #397c5c;
	--green: #109294;
	--moss: #13728a;
	--red: #b04e4b;
	--tradred: #9f4747;
	--darkred: #8b2a2a;
	--orange: #c3652d;
	--burntorange: #863f1a;
	--brown: #4e3c2e;
	--brown: #504339;
	--yellow: #f4c050;
	--white: #eaeaf0;	
	--gray: #dae0e8;
	--gray: #ccd5e0;
	--tan: #a5a39d;
	--tan: #c1c0b8;
	--transparent: rgba(255,255,255,.7);
	--fonts: fenwick, adobe-garamond-pro, futura-pt, "Libre Franklin", sans-serif;
	--sans: futura-pt, oswald, "Libre Franklin", sans-serif;
	--handwriting: felt-tip-senior, serif;
}
* {
	margin: 0;
	padding: 0;
}
html, 
body, 
*, 
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, 
body {
	width: 100%;
	max-width: 100%;
	min-height: 100%;
	overflow-x: hidden;
}
body {
	height: auto;
	font-family: "Libre Franklin", Georgia, "Times New Roman", "serif";
	font-size: 16px;
	line-height: 1.8;
	color: #444;
	background: var(--black);
}
@media only screen and (max-width: 1680px) {
	body {
		font-size: 15.5px;
	}
}
@media only screen and (max-width: 1440px) {
	body {
		font-size: 15px;
	}
}
.color-accent {
	color: var(--accent);
}
.color-red {
	color: var(--red);
}

/* ================================================================================= */
/* TYPOGRAPHY  */
/* ================================================================================= */

.title,
.lead,
h1 {
	display: block;
	margin: 1rem 0;
	font-family: Oswald;
	font-weight: 500;
	line-height: 1.15;
	text-transform: uppercase;
}
.title {
	margin: 1.8rem 0 1rem;
	font-family: var(--fonts);
	font-size: 3.6rem;
	/*	font-weight: 900;*/
	font-weight: 400;
	color: #fff;
	line-height: 1.1;
	letter-spacing: 0px;
	text-transform: uppercase;
}
.lead {
	margin: 1rem 0;
	font-family: "Libre Franklin";
	font-family: var(--sans);
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--black);
	text-transform: none;
	/*
	text-transform: uppercase;
	letter-spacing: 0.5px;
	*/
}
h1 {
	margin: 1rem 0;
	font-family: var(--alternative);
	font-size: 2.8rem;
	color: var(--black);
}
h2 {
	margin: 1rem 0;
	font-family: var(--fonts);
	font-size: 1.9rem;
	font-weight: 300;
	color: var(--black);
	line-height: 1.3;
	letter-spacing: 0px;
	text-transform: uppercase;
}
.post h2 {
	font-size: 1.4rem;
	color: var(--black);
}
h2 a {
	color: var(--blue);
	text-decoration: none;
}
h2 a:hover {
	text-decoration: underline;
}
@media only screen and (max-width: 1720px) {
	.title {
		font-size: 3.4rem;
	}
}
@media only screen and (max-width: 1560px) {
	.title {
		font-size: 3rem;
	}
	.lead {
		font-size: 1.7rem;
	}
	h1 {
		font-size: 2.6rem;
	}
	h2 {
		font-size: 1.7rem;
	}
	.post h2 {
		font-size: 1.3rem;
	}
}
@media only screen and (max-width: 1366px) {
	.title {
		font-size: 2.4rem;
	}
	.lead {
		font-size: 1.6rem;
	}
}
h3 {
	display: block;
	margin: 1rem 0;
	font-family: var(--sans);
	font-size: 150%;
	font-weight: 600;
	color: var(--accent);
	letter-spacing: 0px;
	line-height: 1.3;
	text-transform: none;
}
h4 {
	display: block;
	margin: 1rem 0;
	font-family: var(--fonts);
	font-size: 115%;
	font-weight: 600;
	color: var(--accent);
	letter-spacing: 0px;
	line-height: 1.3;
	text-transform: uppercase;
}
h5 {
	display: block;
	margin: 1rem 0;
	font-family: var(--fonts);
	font-size: 100%;
	font-weight: 600;
	color: var(--black);
	letter-spacing: 0px;
	line-height: 1.3;
	text-transform: uppercase;
}
h6 {
	display: block;
	margin: 0 0 1rem;
	/*	font-family: var(--fonts);*/
	font-size: 105%;
	font-weight: 600;
	line-height: 1.25;
}
.subheading {
	display: block;
	font-family: var(--fonts);
	font-family: var(--fonts);
	font-size: 110%;
	font-weight: 400;
	line-height: 1.4;
	color: var(--black);
	letter-spacing: 0px;
	text-transform: uppercase;
}
.tagline {
	display: block;
	margin: 0;
	font-size: 115%;
	line-height: 1.2;
	color: var(--accent);
	font-family: var(--sans);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.byline {
	font-weight: 600;
}
@media only screen and (max-width: 1366px) {
}
.hero .tagline,
.bg-dark .tagline {
	color: var(--transparent);
}
.bg-dark .lead,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
h6,
.bg-dark .subheading {
	color: #fff !important;
}
/*.title:first-child,*/
.lead:first-child,
h1:first-child, 
h2:first-child, 
h3:first-child, 
h4:first-child, 
h5:first-child, 
p:first-child {
	margin-top: 0;
}
title:last-child,
.lead:last-child,
h1:last-child, 
h2:last-child, 
h3:last-child, 
h4:last-child, 
h5:last-child, 
h6:last-child, 
p:last-child {
	margin-bottom: 0;
}

/* ================================================================================= */
/* PARAGRAPHS  */
/* ================================================================================= */

p {
	position: relative;
	margin: 1rem 0;
	transition: color .1s ease-in;
}
.content p strong {
	color: #333;
	font-weight: 700;
}
.jumbo {
	font-size: 115%;
	font-weight: 400;
}
small {
	font-size: 80%;
}

/* ================================================================================= */
/* LINKS  */
/* ================================================================================= */

a {}

.btn.jumbo {
	padding: .8rem 1.2rem .9rem;
	font-family: var(--sans);
	/*	font-style: italic;*/
	font-weight: 400;
	font-size: 155%;
	text-transform: uppercase;
	border-radius: 4px;
}
.btn.jumbo:hover {
	transform: scale(1.01);
}
.btn.bg-black.jumbo:hover {
	background: var(--red) !important;
}
@media only screen and (max-width: 1440px) {
	.btn.jumbo {
		padding: .6rem 1rem .7rem;
		font-size: 150%;
	}
}

/* ================================================================================= */
/* CONNECT */
/* ================================================================================= */

#container {
	display: block;
	position: relative;
	margin: 0 auto;
	padding: 0;
	width: auto;
	/*	background: var(--gray);*/
	/*	border-top: 4px var(--accent) solid;*/
	/*	border-radius: 8px 8px 0 0;*/
	box-sizing: border-box;
	overflow: hidden;
	z-index: 1;
}
@media only screen and (max-width: 1920px) {
	#container {
		border-radius: 0;
	}
}
#connect {
	display: grid;
	grid-template-columns: auto auto;
	grid-gap: 21%;
	align-items: auto;
	justify-content: space-around;
	position: relative;
	margin: 0 auto;
	padding: .6rem .8rem;
	width: 100%;
	max-width: 1920px;
	height: auto;
	font-family: "Libre Franklin", futura-pt, "Libre Franklin"; /* Just in case body font changes */
	/*	background: var(--black);*/
	box-sizing: border-box;
	z-index: 2;
}
#connect.bg-dark {
	padding-right: 3%;
	padding-left: 3%;
	justify-content: space-between !important;
}
header > #connect,
nav > #connect {
	position: absolute;
	padding: 1rem 1.8rem .2rem;
}
.company-info,
.contact-info {
	display: flex;
	align-content: center;
	align-items: center;
	box-sizing: border-box;
}
.company-info {
	justify-content: flex-end; 
	padding: 0;
	text-align: left;
}
.company-info a {
	display: flex;
	align-items: center;
	color: var(--transparent);
	color: var(--primary);
	text-decoration: none;
}
.company-info i {
	font-size: 180% !important;
	color: var(--accent);
	transition: all .2s ease-in;
}
.company-info a:hover i {
	color: var(--accent);
	/*	transform: rotate(-180deg);*/
}
.company-info i,
.company-info span {
	margin: 0 .6rem 0 0;
}
.company-name,
.company-description {
	font-size: 82.5%;
}
.company-name {
	font-weight: 600;
	color: #fff;
	color: var(--black);
}
.company-description {
	font-weight: 500;
	color: var(--neutral);
	color: rgba(0,0,0,.666);
}
.contact-info {
	justify-content: flex-start; 
}
@media only screen and (max-width: 2048px) {
	.company-info {
		justify-content: flex-start;
	}
	.contact-info {
		justify-content: flex-end;
	}	
}
@media only screen and (max-width: 1560px) {
	#connect {
		justify-content: space-between;
		grid-gap: 40px
	}
	.company-name,
	.company-description {
		font-size: 85%;
	}
}
a#phone-number {
	display: flex !important;
	align-items: center;
	position: relative;
	margin: 0 .5rem 0 0;
	padding: .3rem .8rem;
	width: auto;
	height: auto;
	font-family: var(--sans);
	/*	font-family: var(--fonts);*/
	font-size: 125%;
	font-weight: 400;
	color: #fff;
	text-align: center;
	text-decoration: none;
	letter-spacing: 0px;
	line-height: 1;
	background: var(--primary);
	border-radius: 40px;
}
a#phone-number:hover {
	color: #fff;
	transform: scale(1.05);
}
a#phone-number i {
	position:  relative !important; /* trust me */
	left: auto !important; /* trust me */
	bottom: auto !important; /* trust me */
	margin: 0 .5rem 0 0;
	padding: 0;
	font-size: 87.5% !important;
	color: #fff; /* trust me */
	transform: none !important; /* trust me */
	opacity: .75;
}
.bg-dark .company-info i {
	color: var(--accent) !important;
	/*	color: var(--transparent) !important;*/
}
.bg-dark .company-name {
	color: #fff !important;
}
.bg-dark .company-description {
	color: var(--transparent) !important;
}
.bg-dark a#phone-number {
	background: var(--accent);
}
.bg-dark a#phone-number:hover {
	background: var(--accent);
}
.bg-dark .social-media a {
	color: var(--transparent);
}
.bg-dark #company-email {
	color: var(--transparent);
}
.bg-dark #company-email:hover span {
	color: #fff !important;
}
#company-email {
	display: flex;
	align-items: center;
	margin-right: 1.4rem;
	position: relative;
	/*	padding: .4rem 1rem;*/
	font-size: 82.5%;
	font-weight: 600;
	color: inherit;
	text-decoration: none;
	/*	background: var(--primary);*/
	/*	border-radius: 80px;*/
	cursor: pointer;
	overflow: hidden;
}
a#company-email:hover span {
	color: var(--black);
}
#company-email i {
	margin: 0 .4rem 0 0;
	padding: 0;
	color: var(--accent);
	font-size: 180% !important;
	font-weight: 500 !important;
	transform: none !important;
}
a#company-email:hover i {
	color: var(--accent);
}

/* ================================================================================= */
/* MAIN HEADER  */
/* ================================================================================= */

#main-header {
	display: block;
	position: relative;
	left: 0;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	height: auto;
	font-family: var(--alternative);
	background: var(--gray);
	/*	background: url(images/bg-paper.jpg) center top no-repeat;*/
	background-size: 50% auto;
	/*	border-top: 8px var(--primary) solid;*/
	border-bottom: 3px var(--accent) solid;
	/*	border-radius: 8px 8px 0 0;*/
	z-index: 2;
}
.home #main-header {
	border-bottom: none;
}
@media only screen and (max-width: 1920px) {
	#main-header {
		border-radius: 0
	}
}
@media only screen and (max-width: 1440px) {
	#main-header:after {
		transform: translateY(75%);
	}
}
#main-header.overlay {
	position: absolute;
	top: 5px;
	background: none;
}
#main-header.left #site-navigation {
	display: grid;
	grid-template-columns: 11% auto;
	grid-gap: 5%;
}
#main-header.left #site-navigation .menu {
	padding: 0 !important; /*-- just in case --*/
}

/* ================================================================================= */
/* NAVIGATION  */
/* ================================================================================= */

#site-navigation {
	display: grid;
	grid-template-columns: 1fr 12% 1fr;
	grid-gap: 2%;
	align-items: flex-end;
	justify-content: center;
	position: relative;
	margin: 0 auto;
	padding: 0;
	width: auto;
	height: auto;
	font-family: var(--fonts);
	font-size: 105%;
	font-weight: 500;
	/*	font-variant: small-caps;*/
	line-height: 1;
	letter-spacing: 0px;	
	text-transform: uppercase;
	box-sizing: border-box;
	z-index: 1;
}
@media only screen and (max-width: 1720px) {
	#site-navigation {
		grid-template-columns: 1fr 13% 1fr;
	}
}
@media only screen and (max-width: 1560px) {
	#site-navigation {
		grid-template-columns: 1fr 14% 1fr;
		font-size: 107.5%;
	}
}
@media only screen and (max-width: 1366px) {
	#site-navigation {
		grid-template-columns: 1fr 190px 1fr;
		grid-gap: 1.5%;
		font-size: 102.5%;
	}
}
a#logo,
a#logo img {
	display: block;
	position: relative;
	margin: 0 auto;
	padding: .4rem 0 !important;
	width: 100%;
	height: auto;
	transition: all .2s ease-in;
	box-sizing: border-box;
}
.menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
	padding: 0;
	height: auto;
	box-sizing: border-box;
	z-index: 2;
}
.menu:nth-of-type(2) {
	justify-content: flex-start;
}
.menu li {
	display: block;
	position: relative;
	margin: 0;
}
.menu li#home {
	font-variant: normal !important;
	font-weight: 900 !important;
}
.menu li#home i {
	margin: 0;
}
.menu li:last-child a { /* Only for graphic divider */
	background-image: none;
}
.menu a {
	display: grid;
	align-content: center;
	padding: 1rem;
	height: auto;
	color: var(--transparent);
	color: var(--black);
	text-align: center;
	text-decoration: none;
}
@media only screen and (max-width: 1440px) {
	.menu {
		/*		padding: .6rem 0 0;*/
	}
}
.overlay .menu a {
	color: #fff;
}
.menu a:hover {
	color: var(--blue);
}
.overlay .menu a:hover {
	color: var(--transparent);
	/*	color: var(--off);*/
}
.menu i {
	display: block;
	margin: 0 0 .4em;
	margin: 0 0 .2em; /* for home */
	font-size: 140% !important;
	font-weight: 300 !important;
	/*
	color: var(--transparent);
	color: var(--accent);
	*/
	transition: all 0.1s ease-in;
}
.overlay .menu i {
	color: #fff;
}

/* ---------------------------------------- SUBMENU ---------------------------------------- */ 

.sub-wrapper:after {
	content: '\e5cf';
	position:  absolute;
	left: 50%;
	bottom: 0;
	font-family: 'Material Symbols Outlined';
	font-size: 180% !important;
	font-weight: 300;
	color: var(--blue);
	/*	color: var(--transparent);*/
	transform: translate(-50%, 60%);
}
.sub-menu {
	display: none;
	position: absolute;
	top: 90%;
	left: 0;
	margin: 0;
	padding: .5rem 0;
	width: 240px;
	height: 0;
	font-size: 95%;
	background: var(--blue);
	border-radius: 4px;
	box-sizing: border-box;
	z-index: 2;
}
@media (min-width: 1025px) {
	.sub-wrapper:hover .sub-menu {
		display: block;
		height: auto;
		opacity: 1;
	}
}
.sub-menu li {
	display: block;
	margin: 0;
	width: 100%;
	height: auto;
	line-height: 1.2;
	text-align: left;
	text-shadow: 0 -1px 0 #fff;
}
.sub-menu a {
	display: block;
	padding: .5rem 1rem;
	height: auto;
	color: #fff;
	text-align: left;
	text-shadow: none;
	background: none;
}
.sub-menu a:hover {
	color: rgba(255,255,255,.8);
}

/* ================================================================================= */
/* HERO SECTION */
/* ================================================================================= */

.hero {
	display: block;
	position: relative;
	margin: 0 auto;
	padding: 0 0 50%;
	width: 100%;
	height: 0;
	font-weight: 600;
	color: var(--transparent);
	background: var(--black);
	overflow: hidden;
	z-index: 1;
}
a#tripadvisor {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: var(--black);
	text-decoration: none;
	text-align: center;
	background: var(--off);
	transition: all .1s ease-in;
}
a#tripadvisor span {
	font-size: 180%;
}
a#tripadvisor .tagline {
	color: var(--black);
}
a#tripadvisor:hover {
	text-decoration: none;
	background: #adcbdd !important;
}
a#tripadvisor img {
	width: 64px;
	height: 100%;
}
a#tripadvisor i {
	margin: 0 1.2rem 0 0;
	font-size: 200%;
	color: var(--black);
	transition: all .1s ease-in;
}
a#tripadvisor:hover i {
	transform: scale(1.2);
}
.reputation {
	display: grid;
	grid-template-columns: 150px auto;
	align-items: center;
	justify-content: center;
	text-align: left;
}
@media only screen and (max-width: 1720px) {
	.reputation {
		grid-template-columns: 128px auto;
	}
}
@media only screen and (max-width: 1560px) {
	.reputation {
		grid-template-columns: 110px auto;
	}
}
@media only screen and (max-width: 1366px) {
	.reputation {
		grid-template-columns: 104px auto;
	}
}
@media only screen and (max-width: 1080px) {
	.reputation {
		grid-template-columns: 96px auto;
	}
}
.reputation-image {
	display: block;
	position: relative;
}
.reputation img {
	margin: 0;
}
.home .hero {
	padding: 0 0 56.25%;
}
.hero video {
	position:  absolute;
	top: -1px;
	leftL 0;
	width: 100.5%;
	height: 100.5%;
}
.hero .drag-center p {
	margin: 15px auto;
}

/* ---------------------------------------- Splash ---------------------------------------- */ 

#crop {
	background: url(images/slide01.jpg) center no-repeat;
	background-size: 100% auto;
}
.splash {
	background: var(--blue);
}

/* ================================================================================= */
/* CONTENT
/* ================================================================================= */

.content {
	position: relative;
	margin: 0 auto;
	padding: 5rem 10%;
	box-sizing: border-box;
}
.content.thin {
	padding-right: 18%;
	padding-left: 18%;
}
@media only screen and (max-width: 1680px) {
	.content {
		padding-top: 4.2rem;
		padding-right: 8%;
		padding-left: 8%;
	}
	.content.thin {
		padding-right: 15%;
		padding-left: 15%;
	}
}
@media only screen and (max-width: 1440px) {
	.content {
		padding-top: 3.6rem;
		padding-right: 5%;
		padding-left: 5%;
	}
	.content.thin {
		padding-right: 12%;
		padding-left: 12%;
	}
}
@media only screen and (max-width: 1200px) {
	.content {
		padding: 30px;
	}
	.content.thin {
		padding-right: 40px;
		padding-left: 40px;
	}
}
article {
	position: relative;
}
.article-left {
	display: grid !important;
	grid-template-columns: 1fr 330px !important;
	grid-gap: 4%;
	align-items: self-start;
}
.article-left article {
	text-align: left;
}
@media only screen and (max-width: 1680px) {
	.article-left {
		grid-template-columns: 1fr 300px !important;
		grid-gap: 3%;
	}
}
@media only screen and (max-width: 1440px) {
	.article-left {
		grid-template-columns: 1fr 280px !important;
	}
}
@media only screen and (max-width: 1280px) {
	.article-left {
		grid-template-columns: 1fr 240px !important;
		grid-gap: 3%;
	}
}
@media only screen and (max-width: 800px) {
	.article-left {
		grid-template-columns: 1fr !important;
	}
}

/* ---------------------------------------- CAPTIONS ---------------------------------------- */ 

.caption {
	align-content: center;
	position: relative;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: auto;
	transition: all .1s ease-in;
}
.split-1-1-1 .caption {
	padding: .8rem 0 0;
}
.split-1-1-1.overlay .caption,
.split-1-1-1-1.overlay .caption {
	display: grid;
	align-content: center;
	position:  absolute;
	top: auto;
	left: auto;
	right: auto;
	bottom: 0;
	padding: 5%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,.1);
}
.split-1-1-1.overlay *:hover .caption,
.split-1-1-1-1.overlay *:hover .caption {
	background: rgba(0,0,0,.333);
}
.subheading,
.excerpt {
	display: block;
}
.excerpt {
	margin: 0;
	/*	font-family: "Libre Franklin", futura-pt, "Futura PT", sans-serif;*/
	font-size: 92.5%;
}
.excerpt:nth-child(2) {
	margin: .5rem 0 0;
}
.bg-dark .excerpt {
	color: var(--transparent);
}
*:has(.excerpt) .subheading {
	margin: 0 0 .2rem !important;
	color: var(--black);
}
*:has(.subheading) .excerpt {
	margin: .2	rem 0 0;
}

/* ---------------------------------------- COLUMNS ---------------------------------------- */ 

.annotation {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	padding: .6rem;
	color: #fff;
	line-height: 1.45;
	text-align: center;
	background: var(--red);
	border-radius: 3px;	
	transform: translate(-20%, -50%);
	z-index: 2;
}
.annotation small {
	display: block;
	font-size: 72.5%;
	text-transform: uppercase;
}
.annotation strong {
	font-size: 130%;
	font-weight: 500;
}

/* ---------------------------------------- MISC ---------------------------------------- */ 

#featured {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	position: relative;
	/*	padding: 0 0 20%;*/
	background: var(--tall);
	/*	background: var(--tall) url(images/slide-tall.jpg) center bottom no-repeat;*/
	background-size: 100% auto;
}
#featured .columns {
	display: grid;
}
#slide-tall {
	display: block;
	position:  relative;
	margin: 0 auto;
	padding-bottom: 26%;
	text-align: center;
	background: var(--off) url(images/slide-tall02.jpg) center bottom no-repeat;
	background-size: 100% auto;
	z-index: 2;
}
#slide-plane {
	display: block;
	position:  relative;
	margin: 0 auto;
	padding: 0 0 30%;
	text-align: left !important;
	background: #d6dae3 url(images/slide-beach.jpg) center bottom no-repeat;
	background-size: 100% auto;
	z-index: 1;
}
#slide-plane {
	padding: 0 0 32.5%;
	background: var(--gray) url(images/slide-plane.jpg) center bottom no-repeat;
	background-size: 100% auto;
}
#slide-tall a.column {
	text-decoration: none;
	background: var(--black);
}
#slide-tall a.column:hover {
	text-decoration: none;
	background: var(--aqua) !important;
}
#slide-tall span.btn {
	/*	display: none;*/
	display: block;
	padding: .6rem .6rem;
	width: 100%;
	font-size: .9rem;
	font-weight: 500;
	letter-spacing: 1px;
	border-radius: .2rem;
}
#slide-tall a:hover span.btn {
	background: var(--black) !important;
}
.texture:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 0 10%;
	width: 100%;
	height: 0; 
	background: url(images/bg-texture.png) center top;
	background-size: 100%;
	z-index: -1;
}
#carousel {
	display: block;
	position: relative;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	/*	background: var(--tall) url(images/slide-tall02.jpg) center bottom no-repeat;*/
	background: var(--tall);
	background-size: 100% auto;
}
#carousel .swiperCarousel {
	overflow: hidden;
}
.bg-paper {
	background: #c5c5c3 url(images/bg-paper02.jpg) center top no-repeat;
	background-size: 150% auto;
}

/* ---------------------------------------- KIDS BUTTON ---------------------------------------- */ 

#crop-man { 
	display: block;
	position: relative;
	font-weight; 300;
	text-align: center;
	background: var(--gray);
	z-index: 1;
}
#crop-man .content {
	padding-right: 30%;
}
#crop-man > img {
	position: absolute;
	right: 7.5%;
	bottom: 2rem;
	margin: 0;
	width: 21%;
	height: auto;
	/*	transform: translateY(8%);*/
	z-index: 2;
}
@media only screen and (max-width: 1720px) {
	#crop-man .content {
		padding-right: 33%;
	}
	#crop-man > img {
		right: 7.5%;
		bottom: 1.8rem;
		width: 23.5%;
	}
}
@media only screen and (max-width: 1440px) {
	#crop-man .content {
		padding-right: 31%;
	}
	#crop-man > img {
		right: 60px;
		bottom: 1.4rem;
		width: 25%;
	}
}

/* ---------------------------------------- BLURB ---------------------------------------- */ 

.blurb {
	display: grid;
	position:  relative;
	margin: 0 auto;
	padding: 2rem;
}
.blurb.owner {
	display: grid;
	grid-template-columns: 1fr 4fr;
	grid-gap: 3%;
	align-items: center;
	margin: 0 auto;
	padding: 0;
	text-align: left;
}
.blurb img {
	margin: 0 auto 1rem;
	max-width: 50%;
	width: auto;
}
.blurb.owner img {
	margin: 0 auto;
	max-width: 100%;
}
@media only screen and (max-width: 768px) {
	.blurb.owner {
		display: block;
		text-align: center;
	}
	.blurb.owner img {
		width: 300px;
	}
}
.blurb.owner p {
	margin: 0;
}

/* ================================================================================= */
/* TESTIMONIALS */
/* ================================================================================= */

#testimonials {
	display: block;
	position: relative;
	padding: 0;
	height: auto;
	color: rgba(255,255,255,.7);
	background: var(--tall);
	background: #175587;
	background-size: 100% auto;
	box-sizing: border-box;
}
#testimonials .swiper-pagination {
	bottom: 40px !important;
	padding-left: 40px !important;
	text-align: left;
}
.quotation-mark {
	display: none;
	position: absolute;
	font-family: var(--fonts);
	font-size: 12rem;
	font-weight: 300;
	color: #ccc;
	top: 2rem;
	z-index: 9999;
}
.quotation-mark.left {
	left: 9%;
}
.quotation-mark.right {
	right: 9%;
}
.testimonial-content {
	display: grid;
	grid-template-columns: 1fr 1fr; /* just in case */
	align-items: center; /* just in case */
	grid-gap: 4%; /* just in case */
	grid-gap: 0;
	padding: 0;
	/*	background: var(--primary);*/
}
.swiper-slide.testimonial {
	/*
	background: url(images/slide-ocean-side.jpg) center top no-repeat;
	background-size: 100% auto;
	*/
}
#testimonials p {
	margin-bottom: 35px;
	font-family: var(--alternative);
	font-size: 140%;
	font-weight: 400;
	color: rgba(255,255,255,.7);
	letter-spacing: 0px;
	line-height: 1.5;
}
#testimonials p strong {
	line-height: 1.7;
	font-size: 130%;
	font-weight: 500;
	color: rgba(255,255,255,.9);
}
#testimonials .name {
	display: block;
	margin: 0 0 .6rem;
	font-family: var(--alternative);	
	font-size: 120%;
	font-weight: 400;
	color: #fff;
	letter-spacing: 1px;
	text-transform: uppercase;
}
#testimonials .location {
	font-family: var(--fonts);	
	font-size: 100%;
	font-weight: 500;
	color: rgba(255,255,255,.6);
	text-transform:  none;
}
#testimonials .stars {
	display:  block;
	margin: 0 0 2rem;
	font-size: 120%;
	color: var(--yellow);
	letter-spacing: 5px;
}
#testimonials small {
	font-size: 95%;
}
@media only screen and (max-width: 1680px) {
	#testimonials .swiper-pagination {
		bottom: 32px !important;
		padding-left: 32px !important;
	}
}
@media only screen and (max-width: 1440px) {
	#testimonials .swiper-pagination {
		bottom: 25px !important;
		padding-left: 25px !important;
	}
	.quotation-mark {
		top: 1.5rem;
		font-size: 8rem;
	}
	.quotation-mark.left {
		left: 4%;
	}
	.quotation-mark.right {
		right: 4%;
	}
	.testimonial-content {
	}
	#testimonials p {
		font-size: 1.2rem;
	}
}

/* ================================================================================= */
/* BADGES
/* ================================================================================= */

.badges,
.amenities {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	row-gap: 16px;
	position: relative;
	margin: 0 auto;
	width: 100%;
	height: auto;
	font-family: oswald, futura-pt, Oswald, futura-pt;
	font-weight: 500;
	font-size: 110%;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
	box-sizing: border-box;
}
.badges a {
	display: block;
	position: relative;
	margin: 0 15px;
	width: auto;
	height: auto;
	color: rgba(255,255,255,.8);
	text-align: center;
	vertical-align: middle;
}
.badges a:hover {
	transform: scale(1.1);
}
.badges img {
	display: block;
	width: auto;
	max-width: none;
	height: 130px;
	opacity: .7;
	border-radius: 0 !important;
}
.badges.xs img {
	height: 84px;
}
.badges.sm img {
	height: 108px;
}
.badges.jumbo img {
	height: 240px;
}
@media (max-width: 1680px) {
	.badges img {
		height: 108px;
	}
	.badges.xs img {
		height: 72px;
	}
	.badges.jumbo img {
		height: 210px;
	}
}
@media (max-width: 1440px) {
	.badges,
	.amenities {
		font-size: 100%;
	}
	.badges img {
		height: 84px;
	}
	.badges.xs {
		height: 64px;
	}
	.badges.jumbo img {
		height: 180px;
	}
}
.amenities > *,
.amenities > *:hover {
	display: flex;
	align-items: center;
	margin: 0 .8rem;
	padding: 0;
	height: auto;
	text-decoration: none;
}
.amenities i {
	display: block;
	margin: 0 .5rem 0 0;
	color: var(--primary);
}
.bg-dark .amenities a {
	color: rgba(255,255,255,.9);
}
.bg-dark .amenities i,
.amenities.bg-dark i {
	color: rgba(255,255,255,.5) !important;
}

/* ================================================================================= */
/* SIDEBARS
/* ================================================================================= */

#sidebar {
	display: block;
	position: relative;
	margin: 0 auto;
	width: 100%;
	color: var(--transparent);
	line-height: 1.6;
	background: var(--aqua);
	box-shadow: 0 -80px 120px rgba(0,0,0,.15) inset;
	box-sizing: border-box;
	border-radius: 8px;
	overflow: hidden;
}
#sidebar header {
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-gap: 5%;
	align-items: center;
	justify-content: center;
	position:  relative;
	padding: 1.2rem .4rem 65% 6%;
	text-align: left;
	background: var(--tall) url(images/bg-sidebar.jpg) left bottom no-repeat;
	background-size: 110% auto;
	z-index: 1;
}
#sidebar header img {
	border-radius: 100%;
}
#sidebar header > div > *:first-child {
	display: block;
	color: #fff;
	font-size: 100%;
	font-weight: 600;
}
#sidebar header > div > * {
	margin: 0 0 3px !important;
	font-size: 90%;
}
#sidebar header a {
	display: flex;
	grid-columns: span 3;	
	justify-content: center;
	align-items: center;
	position:  absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0 auto;
	padding: 1rem .2rem;
	font-size: 105%;
	font-weight: 500;
	color: #fff;
	text-align: center;
	text-transform:  uppercase;
	text-decoration: none;
	background: var(--black);
}
#sidebar header a:hover {
	background: var(--off);
}
#sidebar a {
	color: #fff;
}
#sidebar a.btn {
	display: flex;
	align-items: center;
	position:  relative;
	margin: 0;
	padding: 1.2rem 1rem;
	text-align: left;
	background: var(--black) !important;
	border-radius: 0;
	/*	border-radius: 4px;*/
}
#sidebar a.btn:hover {
	background: var(--primary) !important;
}
#sidebar a.btn:hover {
	color: #fff;
	background: var(--red);
}
#sidebar a.btn i {
	margin: 0 .8rem 0 0 !important;
	font-size: 200% !important;
	color: rgba(255,255,255,.666);
	color: var(--transparent);
}
#sidebar a.btn div {
	display: flex;
	align-items: center;
	justify-content: ;
	margin: 0 0 .4rem;
	width: 100%;
	font-family: var(--fonts);
	font-family: "Libre Franklin", sans-serif;
	font-size: 110%;
	font-weight: 600;
	letter-spacing: 1px;
	text-align:  center !important;
	text-transform: uppercase;
}
#sidebar a.btn span {
	font-family: "Libre Franklin", sans-serif;
	font-size: 80%;
	color: var(--transparent);
}
#creditcards {
	display: block;
	position: relative;
	margin: .8rem 0 0;
	max-width: 210px;
}
#sidebar td {
	padding: .1rem .8rem .1rem 0;
}
#sidebar article {
	padding: 1.2rem 3% 1.2rem 7%;
	font-size: 95%;
}
#sidebar .caption > *:first-child {
	margin: 0 0 .4rem;
	font-size: 95%;
}

/* ================================================================================= */
/* FOOTER
/* ================================================================================= */

#footer-wrap {
	display: block;
	position: relative;
	margin: 0 auto;
	padding: 3rem 4% 8rem;
	width: 100%;
	max-width: 1980px;
	color: rgba(255,255,255,.666);
	/*	background: var(--primary);*/
	box-sizing: border-box;
	z-index: 1;
}
@media (max-width: 1440px) {
	#footer-wrap {
		grid-gap: 2rem;
		padding: 2rem 40px 5rem;
	}
}
#footer-wrap footer {
	display: grid;
	grid-template-columns: 3fr 2fr 1fr;
	justify-content: space-between;
	grid-gap: 3%;
	position: relative;
	margin: 0 auto;
	box-sizing: border-box;
}
.copyright {
}
.copyright > img {
	position: relative;
	margin: 0 auto 30px;
	width: 20%;
	max-width: 320px;
	min-width: 240px;
	height: auto;
	filter: brightness(0) invert(1);
	opacity: .8;
}
#footer-wrap p {
	font-size: 95%;
	font-weight: 400;
}
a#branding {
	display: grid;
	justify-items: flex-end;
	position: relative;
	padding: 0;
}
a#branding img {
	min-width: 180px;
}

/* ================================================================================= */
/* CONTACT FORM */
/* ================================================================================= */

#bookingform,
#contactform {
	display: block;
	position: relative;
	margin: 0;
	padding-top: 0;
	margin: 2rem auto;
	width: auto;
	height: auto;
	border-top: 3px var(--blue) solid;
	box-sizing: border-box;
}
#contactform label,
#contactform .legend {
	font-family: "Libre Franklin", sans-serif;
	font-size: 90%;
	color: #333;
}
#contactform label span {
	font-family: "Libre Franklin", arial, sans-serif;
	font-size: 77.5%;
	font-weight: 600;
	color: #484848;
	text-transform: uppercase;
}
#bookingform {
	position: absolute !important;
	bottom: 12.5%;
	left: 50%;
	margin: 0 auto !important;
	padding: 0 !important;
	width: 1180px !important;
	font-family: futura-pt;
	border: none !important;
	z-index: 9999;
	overflow: hidden;
	transform: translateX(-50%);
}
@media only screen and (max-width: 1960px) {
	#bookingform {
		width: 1080px !important;
	}
}
@media only screen and (max-width: 1480px) {
	#bookingform {
		width: 920px !important;
	}
}
#bookingform input,
#bookingform input:hover {
	margin: 0 !important;
	padding: 0 12px;
	width: 100% !important;
	height: 100%;
	font-size: 90% !important;
	border-right: none;
	border-radius: 0 !important;
}
#bookingform i.material-symbols-outlined {
	position: absolute;
	top: 50%;
	left: 12px;
	font-size: 125% !important;
	font-weight: 300 !important;
	color: #656565;
	transform: translateY(-50%);
	z-index: 9999;
}
#bookingform input#submit,
#bookingform input#submit:hover {
	padding: 15px 12px !important;
	font-family: futura-pt, "Libre Franklin" !important;
	font-size: 115% !important;
	font-weight: 400 !important;
	background: var(--primary) !important;
}
#bookingform .form-select {
	margin: 0;
	padding: 0 12px 0 40px;
	width: 100%;
	height: 100%;
	font-size: 90% !important;
	border-radius: 0;
	outline: none !important;
	border-radius: 0 !important;
	-webkit-appearance: none !important;
}
#bookingform option {
	border-radius: 0px;
}
#bookingform fieldset {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;	
	margin: 0 auto !important;
	padding: 20px !important;
	background: #a5c4d9;
	background: #5196c4;
	background: #3383b9;
	background: var(--accent);
	border-radius: 6px !important;
}

/* ================================================================================= */
/* TABLES  */
/* ================================================================================= */

.custom-table {
	margin: 2rem 0;
	width: 100%;
	font-family: "Libre Franklin", sans-serif;
	font-size: 100%;
	line-height: 1.6;
	border-top: 3px var(--accent) solid;
	border-collapse: collapse;
}
table.alternate-rows tr:nth-child(even) {
	background: rgba(0,0,0,.0333) !important;
}
table.top td {
	vertical-align: top;
}
@media only screen and (max-width: 1366px) {
	table.top td {
/* 		display: block;
		width: 100%; */
	}
}
.custom-table:first-child {
	margin-top: 0;
}
.custom-table:last-child {
	margin-bottom: 0;
}
.custom-table th,
.custom-table td {
	padding: 1.6rem 1.2rem;
	text-align: left;
	border-bottom: 1px rgba(0,0,0,.15) solid;
}
.custom-table.alternate-rows  th,
.custom-table.alternate-rows  td {
	border-bottom: 1px rgba(0,0,0,.0666) solid;
}
.custom-table th {
	font-size: 110%;	
	font-weight: 600;
	color: var(--black);
}
.custom-table.center th,
.custom-table.center td {
	text-align: center;
}
.custom-table h4 {
	margin: 0 0 .4rem;
}
.custom-table p {
	font-size: 97.5%;
}
.plan-name {
	display: block;	
	font-size: 1.2em;
	font-weight: 500;
	color: var(--black);
}
.highlight {
	display: block;
	margin: .2rem 0;
	font-family: var(--sans);
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: -1px;
	color: var(--primary);
	line-height: 1.1;
}
.custom-table small {
	display: block;
	font-size: 85%;
}

/* custom classes */

.menu-toggle,
.call-btn {
	display: none;
}

span.close-menu {
	display: none;
}


/* custom responsive classes */

@media screen and (max-width: 1280px) {
	.split-1-1-1-1 {
		grid-template-columns: repeat(4, 1fr);
	}

	.split {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 1265px) {
	.menu a {
		padding: 1rem 7px;
	}
}


@media screen and (max-width: 1024px) {
	.menu {
		display: none;
		display: flex;
		align-items: start;
		justify-content: start !important;
		position: fixed;
		flex-direction: column;
		background: #d1d8de;
		left: 0;
		top: 0;
		justify-content: center;
		align-items: start;
		height: 100vh;
		z-index: 111123;
		width: 80%;
		left: -100%;
		transition: left 0.25s;
	}

	span.close-menu {
		display: block;
	}

	.sub-menu {
		height: auto;
	}

	.sub-menu {
		font-size: 85%;
	}
	header#main-header {
		position: relative!important;
		background: #d1d8de;
	}
	#site-navigation {
		font-size: 115%;
		display: flex;
		justify-content: space-between;
		align-items: self-start;
		width: 100%;
		padding: 20px 16px;
		align-items: center;
	}

	.menu.visible {
		left: 0;
	}

	.overlay .menu a {
		color: #000;
	}

	a#logo,
	a#logo img {
		width: 180px;
	}

	.menu-toggle,
	.call-btn {
		display: block;
	}

	span.close-menu {
		position: absolute;
		right: 17px;
		top: 10px;
	}

	.menu-toggle span,
	.call-btn span {
		color: var(--black);
		font-size: 32px;
	}

	.sub-wrapper:after {
		display: none;
	}

	.sub-wrapper>a:after {
		content: '\e5cf';
		position: absolute;
		left: unset;
		right: -33px;
		top: 0;
		font-family: 'Material Symbols Outlined';
		font-size: 150% !important;
		font-weight: 300;
		color: var(--accent);
		transform: translate(-50%, 50%);
	}

	.sub-menu {
		position: unset;
		width: auto;
		margin-left: 16px;
	}

	.overlay .menu a {
		color: #000;
		display: flex;
		align-items: center;
	}

	.overlay .menu a:hover {
		color: unset;
	}

	.menu li {
		display: block;
		position: relative;
		margin: 0;
		display: flex;
		flex-direction: column;
		align-items: start;
	}

	.menu.visible li a {
		display: flex;
		align-items: center;
		gap: 10px;
		position: relative;
	}

	ul.sub-menu li a {
		color: white !important;
	}

	.sub-menu a {
		padding: 1rem 1.4rem;
	}

	.hero {
		display: block;
		position: relative;
		margin: 0 auto;
		padding: unset;
		width: 100%;
		height: 100%;
		font-weight: 600;
		color: var(--transparent);
		background: var(--black);
		z-index: 1;
	}

	.home .hero {
		padding: unset;
	}

	.slide-image-container > img {
		height: 620px;
		width: 100%;
		object-fit: cover;
	}

	.split-1-1-1-1 {
		grid-template-columns: repeat(3, 1fr);
	}

	.ratess.article-left {
		grid-template-columns: 1fr !important;
		grid-gap: 1%;
		padding-bottom: 110px;
	}
}


@media screen and (max-width: 992px) {
	div#connect {
		display: none;
	}

	#site-navigation {
		padding: 10px 16px;
	}

	.slide-image-container > img {
		height: 550px;
	}

	.split {
		grid-template-columns: 1fr;
	}

	.swiper-slide.testimonial {
		background-size: cover;
		/* 		height: 640px; */
	}

	#cabins .excerpt {
		display: block;
		margin: 0 0 10px;
		padding: 0 4%;
	}

	.split-1-2 {
		grid-template-columns: 1fr;
	}

	#cabins-list {
		display: flex;
		overflow: auto;
	}

	#cabins-list .lead img {
		display: none;
	}

	#cabins-list .lead {
		width: 260px;
	}

	#cabins {
		background-size: cover;
	}

}

@media (max-width: 870px) {
	.testimonial-content {
		grid-template-columns: 1fr;
	}
	.testimonial-content img {
		max-height: 470px;
		margin: 0 auto;
	}


	#testimonials .swiper-wrapper, #testimonials {
		background: var(--primary);
	}
	#testimonials .swiper-pagination {
		bottom: 5px!important;
	}
}

@media only screen and (max-width: 800px) {
	.article-left {
		padding-bottom: 110px;
		grid-gap: 1%;
	}

	.rates-table {
		overflow: auto;
		width: 100%;
	}

	.rates-table .custom-table {
		width: 650px;
	}
}

@media screen and (max-width: 767px) {

	.slide-image-container > img {
		height: 480px;
	}
	.slide-image-container .title {
		font-size: 44px;
	}

	.split-1-1-1-1 {
		grid-template-columns: repeat(2, 1fr);
	}

	.p-xxxl {
		padding: 20px !important;
	}

	.p-xxl {
		padding: 0 !important;
	}
	.testimonial-text {
		padding: 0 16px!important;
	}
	.popup.custom div {
		grid-template-columns: 1fr;
	}
	.popup.custom > div > span {
		display: none;
	}
	.popup.custom > div > img {
		max-width: 120px;
		margin: 0 auto;
	}
	.p-r-xl {
		padding-right: 16px !important;
	}
	.p-l-xl {
		padding-left: 16px !important;
	}
	.popup-video {
		width: 95%;
		height: 50%;
	}
	.apply-img-circle {
		grid-template-columns: 1fr;
	}
	img.circle, .apply-img-circle img {
		max-width: 190px;
		margin: 0 auto;
	}
}
@media screen and (max-width: 550px) {

	.slide-image-container > img {
		height: 480px;
	}

	.slide-image-container .title {
		font-size: 40px;
	}

	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 32px !important;
	}

	.split-1-1-1-1 {
		grid-template-columns: repeat(1, 1fr);
	}

	#testimonials p {
		font-size: 16px;
	}

	.testimonial-content {
		grid-gap: 30px;
		padding: 10px 20px;
	}

	.swiper-slide.testimonial {
		/* 		height: 530px; */
	}

	#carousel h3 {
		font-size: 16px;
	}

}

@media screen and (max-width: 437px) {

	.swiper-slide.testimonial {
		/* 		height: 568px */
	}
}

@media screen and (max-width: 366px) {

	.swiper-slide.testimonial {
		/* 		height: 598px */
	}
}

@media screen and (max-width: 334px) {

	.swiper-slide.testimonial {
		/* 		height: 634px */
	}
}

@media screen and (max-width: 475px) {

	.slide-image-container > img {
		/* 		height: 450px; */
	}

	.slide-image-container .title {
		font-size: 32px;
		margin: 10px 0;
	}
}

/* Contact Page Styles */
@media (max-width: 600px) {
	.name-email-phone, .address {
		grid-template-columns: 1fr;
	}
}
