@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,700;1,500;1,700&family=Montserrat:wght@600&family=Roboto+Condensed:ital@0;1&display=swap');

/* Table of Content
==================================================
	#Site Variables
	#Site Styles
	#UIKit Styles
	#Page Styles
	#Media Queries
	#Font-Face */
	

/* #Site Variables 
================================================== */

/*--secondary: #CC8B3C;*/

:root {
  --primary: #3F9BC4;
  --secondary: #2D6786;
  --light: #EBFBFF;
  --dark: #2D6786;
  --white: #ffffff;
  --text: #1D1D1D;
  --navigation: #ffffff;
  
  --primary-font: 'Roboto Condensed', sans-serif;
  --secondary-font: 'Cormorant Garamond', serif;
  --tertiary-font: 'Montserrat', sans-serif;
}


/* #Site Styles
================================================== */
*				{ outline:none; }
html, body		{ color:var(--text); font-size:16px; font-weight:500; font-family:var(--primary-font); line-height:1.5rem; overflow-x:hidden; }

.aligncenter 	{ text-align:center; }
.alignleft		{ text-align:left; }
.alignright		{ text-align:right; }
	img.aligncenter { float:none; display:block; margin:0 auto 15px; }
	img.alignleft	{ float:left; margin-right:15px; }
	img.alignright	{ float:right; margin-left:15px; }

.w900 			{ font-weight:900; }
.w800			{ font-weight:800; }
.w700			{ font-weight:700; }
.w600			{ font-weight:600; }
.w500			{ font-weight:500; }
.w400			{ font-weight:400; }
.w300			{ font-weight:300; }
.w200			{ font-weight:200; }
.w100			{ font-weight:100; }

.font6			{ font-size:0.625em; }
.font7			{ font-size:0.750em; }
.font8			{ font-size:0.875em; }
.font10			{ font-size:1.0em; }
.font12			{ font-size:1.2em; }
.font15			{ font-size:1.5em; }
.font18			{ font-size:1.8em; }
.font20			{ font-size:2.0em; }
.font25			{ font-size:2.5em; }
.font30			{ font-size:3.0em; }
.font35			{ font-size:3.5em; }
.font40			{ font-size:4.0em; }
.font45			{ font-size:4.5em; }

.s1				{ letter-spacing:1px; }
.s2				{ letter-spacing:2px; }
.s3				{ letter-spacing:3px; }
.s4				{ letter-spacing:4px; }
.s5				{ letter-spacing:5px; }
.s6				{ letter-spacing:6px; }
.s7				{ letter-spacing:7px; }
.s8				{ letter-spacing:8px; }

.lh0			{ line-height:1em; }
.lh1			{ line-height:1.1em; }
.lh2			{ line-height:1.2em; }
.lh3			{ line-height:1.3em; }
.lh4			{ line-height:1.4em; }
.lh5			{ line-height:1.5em; }
.lh8			{ line-height:1.8em; }
.lh20			{ line-height:2.0em; }
.lh25			{ line-height:2.5em; }

h1, h2, h3, h4	{ font-family:var(--secondary-font); color:inherit; line-height:1em; font-weight:300; line-height:1em; }

h1				{ font-size:5.000em; line-height:.875em; }
h2				{ font-size:3.000em; }
h3				{ font-size:1.625em; }
h4				{ font-size:1.000em; line-height:1em; text-transform:uppercase; letter-spacing:.2em; font-family:var(--primary-font); position:relative; }
	h4:before 	{ content:''; display:inline-block; background:var(--text); height:1px; width:50px; margin-right:25px; margin-bottom:3px; }
h5				{ font-size:0.775em; line-height:1em; text-transform:uppercase; }

h1 + h2 	{ margin-top:-20px; }

h4 + h1 	{ margin-top:-5px; }
h4 + h2   	{ margin-top:-5px; }
h2 + h3		{ margin-top:-15px; }

h4.uk-text-primary:before { background:var(--primary); }
h4.uk-text-secondary:before { background:var(--secondary); }
h4.uk-text-dark:before { background:var(--dark); }

b, strong, .uk-text-bold	{ font-weight:800; }

a, .uk-link		{ color:var(--primary); }
	a:hover, .uk-link:hover { color:inherit; text-decoration:underline; }

blockquote { font-family:var(--secondary-font); font-size:2.25em; font-style:normal; color:var(--dark); }
	blockquote cite { font-family:var(--primary-font); font-size:1.2rem; text-transform:uppercase; font-weight:600; color:#666; letter-spacing:3px; font-style:normal; }

.font-secondary { font-family:var(--secondary-font); }

/* #UIKit Styles
================================================== */
.uk-container-alt	{ padding:0 3%; }

.uk-text-light		{ color:var(--light) !important; }
.uk-text-dark 		{ color:var(--dark) !important; }
.uk-text-contrast	{ color:var(--white) !important; }

.uk-background-primary, .uk-section-primary { color:var(--white); }
.uk-background-dark, .uk-section-dark { background:var(--dark); color:var(--white) !important; }
.uk-background-muted, .uk-section-muted { background:var(--light); }

.uk-background-gradient { background: rgb(0,105,161); background: linear-gradient(180deg, rgba(0,105,161,1) 0%, rgba(0,50,124,1) 100%); color:var(--white); }

.uk-overlay-dark { background:rgba(0,0,0,0.3); color:var(--white); }

.uk-button	{ background:var(--dark); color:var(--white); border:0; font-family:var(--primary-font); font-size:1em; text-transform:uppercase; letter-spacing:2px; font-weight:500; padding:10px 35px; }
.uk-button.uk-button-primary { background:var(--primary); color:var(--white); }
.uk-button.uk-button-secondary { background:var(--secondary); color:var(--white); }

.uk-button.uk-button-primary:hover, .uk-button.uk-button-secondary:hover { background:var(--dark); color:var(--white) !important; }

.uk-button.uk-button-text { background:none; color:inherit; padding:5px 0; }
	.uk-button.uk-button-text::before { right:0; }
	.uk-button.uk-button-text:hover::before { right:100%; }

.uk-card-default { color:var(--text); }

.uk-list.uk-text-large { font-size:1.2em; }

.uk-input::-ms-input-placeholder { color:var(--text) !important }
.uk-input::placeholder { color:var(--text) }
.uk-textarea::-ms-input-placeholder { color:var(--text) !important }
.uk-textarea::placeholder { color:var(--text) }


.uk-offcanvas-bar { background:var(--dark); padding:20px 0; }
.uk-offcanvas-bar .uk-nav-default>li>a { background:rgba(0,0,0,0.2); color:var(--white); text-transform:uppercase; font-weight:600; padding:5px 20px; }
.uk-offcanvas-bar .uk-nav-default .uk-nav-sub a { padding:3px 15px; }

.uk-subnav>* { padding-left:0; }
.uk-subnav-divider>::before { margin-left:10px; }

/* #Page Styles
================================================== */
.alert { background:var(--dark); color:var(--white); padding:5px 25px; }
	.alert p { margin-bottom:0!important; }
	.alert a { color:inherit; }

.header { padding:10px 0; }
	.header .logo { width:150px; }

	.header .nav .uk-navbar-nav>li>a { color:var(--text); font-family:var(--primary-font); text-transform:uppercase; position:relative; display:inline-block; padding-bottom:5px; min-height:40px; font-size:1.2em; font-weight:600; }
	.header .nav a:hover { text-decoration:none; color:var(--primary); }
	.header .nav [class*=uk-navbar-dropdown-bottom] { margin-top:0; }
	
	.header .nav .uk-navbar-dropdown { width:235px; box-shadow:none; }
	.header .nav .uk-navbar-dropdown-nav>li>a { color:var(--text); font-size:1em; font-weight:600; line-height:1.2em; padding:10px 0; border-bottom:1px solid #f2f2f2; transition: all 250ms ease-in-out; }
	.header .nav .uk-navbar-dropdown-nav>li>a:hover { color:var(--primary); border-color:var(--primary); }

	.header .uk-button { line-height:1em; padding:15px 30px 10px; }
	.header .uk-button small { letter-spacing:1px; font-weight:300; font-size:.7em; }

.hero { overflow:hidden; }
	.hero-overlay { display:block; width:100%; height:100%; position:absolute; top:0; left:0; }
	.hero h4:before { background:var(--white); }

.logo-box { border:1px solid var(--text); border-radius:25px; padding:30px 50px; margin:75px 0 0; text-align:center; }
	.logo-box img { max-height:100px; }

.rooms-slider {}
	.rooms-slider .uk-panel:before { content:''; position:absolute; z-index:1; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,.5); }
	.rooms-slider .uk-active .uk-panel:before { display:none; }

.pull-large { padding-top:600px; margin-top:-500px; }

.bg1 { background-image:url('../images/leaves_bg1.svg'); background-position:right top; background-repeat:no-repeat; background-size:30%; }
.bg2 { background-image:url('../images/leaves_bg2.svg'); background-position:20% top; background-repeat:no-repeat; background-size:35%; }
.bg3 { background-image:url('../images/leaves_bg3.svg'); background-position:left top; background-repeat:repeat; background-size:1600px; }
.bg4 { background-image:url('../images/leaves_bg4.svg'); background-position:left bottom; background-repeat:no-repeat; background-size:60%; padding-bottom:300px; }

.block-wrapper { width:calc(100% + 50px); background:var(--white); padding:50px;  position:relative; z-index:2; }
	.block1 .block-wrapper { margin-right:-50px; }
	.reverse .block1 .block-wrapper { margin-right:0; margin-left:-125px; }
	
	.block2 .block-wrapper { margin-left:-125px; }
	.reverse .block2 .block-wrapper { margin-left:0; margin-right:-125px; }
	
	
	.uk-section-dark .block-wrapper { background:var(--dark); }
	.uk-section-muted .block-wrapper { background:var(--light); }
	.uk-section-primary .block-wrapper { background:var(--primary); }
	.uk-section-secondary .block-wrapper { background:var(--secondary); }

.footer {}
	.footer .nav { margin-left:25px; }
	.footer .nav a { color:var(--white); text-transform:uppercase; letter-spacing:3px; position:relative; display:inline-block; padding-bottom:5px; }
	.footer .nav a:hover { text-decoration:none; }
	.footer .nav a:hover:after { content:''; width:100%; height:2px; background:var(--primary); position:absolute; bottom:0; left:0; display:block; }

 .embed-container { 
        position: relative; 
        padding-bottom: 56.25%;
        overflow: hidden;
        max-width: 100%;
        height: auto;
    } 

    .embed-container iframe,
    .embed-container object,
    .embed-container embed { 
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* #Media Queries
================================================== */
	@media only screen and (max-width: 1220px) {
		h1 { font-size:4em; }
		h2 { font-size:3em; }
		h3 { font-size:1.5em; }
		h4 { font-size:1.00em; }

	}

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {
		html, body { font-size:14px; }
		
		h1 { font-size:3em; }
		h2 { font-size:2em; }
		h3 { font-size:1.5em; }
		h4 { font-size:0.875em; }
		
		blockquote { font-size:1.75em; }

		.uk-text-large { font-size:1.2em; }

		.header .logo { width:125px; }
		
		.uk-button { display:block; width:100%; }
		.uk-button.uk-button-text { display:inline; width:auto; font-size:.875em; }
		
		.block-wrapper { width:100%; box-sizing:border-box; padding:0; }
		
		.bg4 { background-size:100%; padding-bottom:200px; }
		
		.trip-logo { width:75px; }
	}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {
		h1 { font-size:2.5em; }
	}


/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file
		Just create a "fonts" folder at the root,
		copy your FontName into code below and remove
		comment brackets */

/*	@font-face {
	    font-family: 'FontName';
	    src: url('../fonts/FontName.eot');
	    src: url('../fonts/FontName.eot?iefix') format('eot'),
	         url('../fonts/FontName.woff') format('woff'),
	         url('../fonts/FontName.ttf') format('truetype'),
	         url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
	    font-weight: normal;
	    font-style: normal; }
*/