/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

Site design by p11|creative
Visit us @ p11.com

/*```````````````````````````//
//			GLOBALS			         //
//___________________________*/

html, body {
	font-family: 'Questrial', Arial, Helvetica, sans-serif;
	color: #4d4d4f;
	line-height: normal;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-scroll-behavior: smooth;
	-moz-scroll-behavior: smooth;
	scroll-behavior: smooth;
}

body {
	background-color: #4d4d4f;
	overflow-x: hidden;
}

h1, h2, h3, h4, nav, .serif {
	font-weight:normal;
}

h1, h2, h3, h4 {
    font-weight: normal;
	margin-bottom: 1em;
	margin-bottom: 2rem;
}

h1 {
	line-height: 120%;
}

p {
	/*line-height: 2em;*/
	margin-bottom: 1em;
}

p:last-of-type {
	margin: 0;
}

a {
	color: #4eb4c2;
}

a:hover {
	color: #e76a25;
}

strong {
}

.mobile {
	display: none;
}

/* Site Colors */

.orange {
	color: #e76a25;
}

.wrapper a {
}

.wp-caption {
	max-width: 100%;
	position: relative;
}

.wp-caption-text {
	position: absolute;
	bottom: 0;
	color: #ffffff;
	background-color: #000000;
	background-color: rgba(0,0,0,0.5);
	padding: 10px;
	text-align: center;
	font-size: 14px;
	width: 100%;
	line-height: normal;
}

#container {
	overflow: hidden;
}

a.button {
	background-image: url(library/images/button-arrow.png);
	background-repeat: no-repeat;
	padding-right: 50px;
	background-position: 96% center;
	background-size: auto 60%;
	background-color: #e76a25;
	line-height: normal;
	color: #ffffff;
	font-family: 'miedinger', Arial, Helvetica, sans-serif;
	font-size: 1.3rem;
}

a:hover.button {
	background-position: 97% center;
	background-color: #C14000;
}

/* Header */

#masthead {
	height: 250px;
	width: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	background-image: url(library/images/header-bg.png);
	background-size: cover;
	background-position: center bottom;
	z-index: 901;
}

#masthead .wrapper {
	max-width: 700px;
}

.logo {
	float: left;
	max-width: 175px;
	margin-top: 30px;
}

.logo img {
	max-width: 100%;
	height: auto;
}

.book-link {
	float: right;
	margin-top: 30px;
	margin-right: 5px;
	opacity: 1;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.book-link:hover {
	margin-right: 0;
	opacity: .8;
}

.book-link img {
	max-width: 173px;
	width: 100%;
	height: auto;
}

/* Sticky header */

.stick {
	display: none;
	position: fixed;
	width: 100%;
	top: 0;
	margin-top: -70px;
	background: none;
	background-color: rgba(229,104,37,0.87);
	height: 60px;
	z-index: 900;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.stick.dropnav {
	margin-top: 0;
}

.stick .wrapper {
	max-width: 1004px;
	width: 100%;
}
	
.stick .mobile.mobile-logo {
	margin: 10px 0 auto 10px;
	display: inline-block;
	width: 50%;
	max-height: 50px;
}

.mobile-logo img {
	max-height: 45px;
	width: auto;
}

.stick .book-link {
	max-width: 50%;
	margin-top: 10px;
}

.stick .book-link img {
	max-width: 100px;
}

/* Home Slideshow */

#featured {
	display: inline-block;
	top: 0;
	bottom: 0;
	margin: 0px;
	position: relative;
	width: 100%;
	height: 100vh;
	float: left;
	clear: both;
	background-size: cover;
	overflow: hidden;
	/*padding-bottom: 52%;*/
}

#featured div.slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 500;
}
#featured div.slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: transform 6.5s linear;
}
#featured div.slide.scale {
  transform: scale(1.1) translate3d(0, 0, 0);
}
#featured div.slide.fx1 {
  transform-origin: bottom left;
}
#featured div.slide.fx2 {
  transform-origin: top left;
}
#featured div.slide.fx3 {
  transform-origin: top right;
}
#featured div.slide.fx4 {
  transform-origin: bottom right;
}

.slide {
	position: absolute;
	top: 0;
	width: 100%;
	bottom: 0;
	background-position: center;
	background-size: cover;
}

.slider-overlay {
	height: 200px;
	background: url(library/images/slide-bottom-transparency.png);
	text-align: center;
	width: 100%;
	bottom: 0;
	overflow: hidden;
	position: absolute;
	background-size: cover;
	background-position: center top;
	z-index: 899;
}

.slider-overlay img {
	max-width: 500px;
	position: absolute;
	bottom: 3em;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
}

.down-arrow {
	position: absolute;
	bottom: 0;
	text-align: center;
	width: 100%;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	z-index: 900;
}

.down-arrow:hover {
	bottom: -5px;
}

.down-arrow a img {
	width: 130px;
}

.parallax-window {
}

#content {
	background-color: #ffffff;
	line-height: 160%;
	font-size: 19px;
}

#content a {
}

#content a:hover {
}

#content img {
	max-width: 100%;
	height: auto;
}

.page-content {
	background-size: cover;
	background-position: center;
	padding: 2em 0 3em;
}

.nopad .page-content {
	padding: 0;
}

.gradient {
	background: url(library/images/top-gradient.png) top repeat-x;
	position: absolute;
	top: 0;
	width: 100%;
	height: 0;
	padding-bottom: 5%;	
}

.page-section {
	clear: both;
    display: block;
    float: none;
	position: relative;
}

/* Gallery */

.gallery-heading {
	padding: 1em;
	background-color: #4eb4c2;
	color: #ffffff;
	text-align: center;
	font-family: 'miedinger', Arial, Helvetica, sans-serif;
	font-size: 1.3rem;
}

.gallery-container {
	padding: 4rem 0;
	background: url(library/images/cool-palm-springs-vacation-rental-bg.jpg);
	background-attachment: fixed;
}

.gallery-thumb {
	display: inline-block;
	margin: 0 -2px;
	text-decoration: none;
	position: relative;
	color: #ffffff;
	width: 25%;
	border: 1px solid #ffffff;
	border-bottom: 2px solid #ffffff;
}

.gallery-thumb a {
	color: #ffffff;
}

.gallery-thumb a img {
	width: 100%;
	height: auto;
}

.wrapper-gallery {
    margin: 0 auto;
    max-width: 1500px;
    position: relative;
    width: 95%;
}

.gallery-thumb a p {
    background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
    width: 100%;
	opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    transition: all 0.3s ease-in-out 0s;
}

.gallery-thumb.hover a p {
    opacity: 1;
}

.gallery-thumb a p span {
    padding: 10px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

/* Fancybox */

div.fancybox-title-float-wrap .child {
    background: none;
    border-radius: 0;
}

/* Form styles */
.gfield {
	position: relative;
	display: block;
	margin-bottom: 20px;
}
.gfield.clearfix {
	clear: both;
}
.gfield label {
	position: absolute;
	left: 10px;
	top: 15px;
	color: #707070;
	opacity: 1;
	font-size: 16px!important;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}
.gfield label.test {
	top: -5px;
	font-size: 12px!important;
	opacity: .5;
}
input[type='text'],textarea,
input[type='submit'] {
	/*background-color: #E7E7E7;*/
	border-bottom: 1px solid #707070;
	display: block;
	width: 100%;
	font-size: 16px!important;
	padding: 20px 10px 10px;
}
input[type='submit'] {
	padding: 20px;
	border: none;
	background-color: #4eb4c2;
	color: #ffffff;
	font-weight: 700;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}
input[type='submit']:hover {
	background-color: #008496;
}
textarea {
	height: 100px;
	line-height: 150%;
}
body .gform_wrapper .gform_validation_container {
    display: none;
}
#gform_confirmation_message_1 {
	padding: 100px 0;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	color: #4eb4c2;
}
.validation_message {
	font-size: 14px;
	color: #FF0004;
	text-align: center;
}
.validation_error {
	padding: 1.5rem;
	margin-bottom: 1rem;
	background: rgba(255,0,0,0.2);
	text-align: center;
}
.gfield_required {
	display: none;
}

.gform_ajax_spinner {
	display: inline-block;
	margin: 20px auto 0;				/* give it some space from the Submit button */
	border: 4px solid rgba(255, 255, 255, 0.3);	/* match with border-left */
	border-left: 4px solid #e76a25;
	animation: spinner 1.1s infinite linear;
	border-radius: 50%;
	width: 30px;					/* match with height for a circle */
	height: 30px;
}
@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


/* Footer */

#mastfooter {
	background-color: #4d4d4f;
	color: #ffffff;
}

.footer-logo {
	max-width: 215px;
	margin-bottom: 2em;
}

@media (max-width: 1350px) {
	
	.gallery-thumb {
		width: 33.3333333%;
		margin: 0 -2px;
	}


}

@media (max-width: 860px) {
	
	.gallery-thumb {
		width: 50%;
	}
	
}

@media (max-width: 600px) {
	
	.no-mobile {
		display: none;
	}
	
	.mobile {
		display: block;
	}
	
	.mobile-logo {
		margin-top: 10px;
		display: inline-block;
		width: 50%;
		max-height: 50px;
	}
	
	.mobile-logo img {
		max-height: 45px;
		width: auto;
	}
	
	#masthead {
		background-image: none;
		background-color: rgba(229,104,37,0.87);
		height: 60px;
		position: relative;
	}
	
	#featured {
		height: 50vh;
		min-height: 320px;
	}
	
	.book-link {
    	max-width: 50%;
		margin-top: 10px;
	}
	
	.book-link img {
    	max-width: 100px;
	}
	
	.logo {
		max-width: 50%;
		margin-top: 10px;
	}
	
	.logo img {
		width: 100%;
		max-width: 130px;
	}
	
	.gallery-thumb {
		display: block;
		margin: 0;
		border-right: none;
		border-left: none;
		width: 100%;
	}
	
	a.no-link {
        pointer-events: none;
    }
	
	.slider-overlay {
		height: 80px;
	}
	
	.slider-overlay img {
		max-width: 200px;
		width: 90%;
		bottom: 1em;
	}
	
	.down-arrow a img {
		width: 90px;
	}
	
	#content {
		font-size: 15px;
	}
	
	#content .wrapper.pad2 {
		padding: 2em 15px;
	}
	
}

@media (max-width: 460px) {
	
	.gallery-heading,
	a.button {
		font-size: 1rem;
	}


@media (max-width: 400px) {
	
}
	
	
