/** embedded font double rendering issue fix -- https://css-tricks.com/forums/discussion/10449/weird-mobile-safari-font-face-problem-font-doubled-and-offset-to-the-left-/p1 **/
h1, h2, h3, h4, h5, h6 { /*reset for mobile browsers */
    font-weight: normal;
}

/* ==========================================================================
   HTML5 Boilerplate styles - h5bp.com (generated via initializr.com)
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

body {
    font-size: 1em;
    line-height: 1.4;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

a {
    color: #b1bf92;
    text-decoration: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

img {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}


/* ===== Initializr Styles ==================================================
   Author: Bradley Greenwood
   ========================================================================== */

body {
    font: 16px/26px "Imprima", Arial, sans-serif;
}

.wrapper {
    height: 100%;
    position: relative;
    width: 90%;
    margin: 0 5%;
}

/* ===================
    Theme
   =================== */

.header-container {
    position:fixed;
    bottom:20px;
    width: 100%;
    background: black;
    z-index: 10;
    /* Fallback for web browsers that doesn't support RGBa */
    background: rgb(0, 0, 0);
    /* RGBa with 0.9 opacity */
    background: rgba(0, 0, 0, 0.8);
    /* For IE 5.5 - 7*/
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#CC000000, endColorstr=#CC000000);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#CC000000, endColorstr=#CC000000)";
}

.title {
    color: black;
}

#introtext {
    display: block;
    padding: 10px 0 10px 0;
    margin-bottom: 300px;
    background: black;

    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;

    /* Fallback for web browsers that doesn't support RGBa */
    background: rgb(0, 0, 0);
    /* RGBa with 0.7 opacity */
    background: rgba(0, 0, 0, 0.4);
    /* For IE 5.5 - 7*/
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#B2000000, endColorstr=#B2000000);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#B2000000, endColorstr=#B2000000)";
}

#introtext .head-sarah {
    font-family: "Titillium Web", Helvetica, Arial, sans-serif, cursive;
    font-size: 5em;
    line-height: 100%;
}
#introtext .amp {
    position: relative;
    top: 19px;
    margin-left: -10px;
    font-size: 0.7em;
}
#introtext .head-brad {
    font-family: "Bangers", cursive, Helvetica, sans;
    font-size: 2em;
    line-height: 100%;
}
#introtext .date {
    margin-top: 10px;
    font-family: "Titillium Web", Helvetica, Arial, sans-serif;
    font-size: 1em;
}

/* ==============
    MOBILE: Menu
   ============== */

nav {
    z-index: 42;
	position:relative;
}

nav ul {
    font-family:"Titillium Web",Arial,sans-serif;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

nav li {
	display:inline-block;
	list-style:none;
}

nav a {
    /*display: block;*/
    /*margin-bottom: 10px; */
   /* padding: 5px 0; */
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: white;
    background: transparent;
    /*white-space: nowrap; */
    outline: none;
	    padding: 15px 1%;
        margin-bottom: 0;
        display:inline-block;
        white-space: nowrap;
}

nav li a:hover {
    color: #fff;
    background: #b1bf92;
    text-decoration: none;
    outline: none;
}
nav li a.selected {
    color: #fff;
    background: #b1bf92;
    text-decoration: none;
    outline: none;
}

/** firefox remove outline **/
nav ul li a:focus {outline:none;}
nav ul li a::-moz-focus-inner {border:0;}


/* ==============
    MOBILE: Main
   ============== */

.main {
    padding: 5% 0;
}
.main header {
    float: left;
    width: 80%;
}

/* ==========================================================================
   Brad's custom styles
   ========================================================================== */
* { margin: 0; padding: 0; }

body {
    font-family: "Imprima", Arial, sans-serif;
    color: #fff;
    text-align: center;
}

#bg-image {
    position: fixed; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%;
}

#bg-image img {
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    margin: auto; 
    min-width: 50%;
    min-height: 50%;
}

section {
    text-align: left;
    padding: 25px;
    background-color: black; 
    height: 100%;
    margin-top: 200px;
    color: white;

    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;

    /* Fallback for web browsers that doesn't support RGBa */
   background: rgb(0, 0, 0); 
    /* RGBa with 0.7 opacity */
   background: rgba(0, 0, 0, 0.7);
    /* For IE 5.5 - 7*/
   filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#B2000000, endColorstr=#B2000000); 
    /* For IE 8*/
   -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#B2000000, endColorstr=#B2000000)"; 
} 

section h1 {

    font-family:"Boogaloo", cursive, "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 2.6em;

}
section h2 {
    font-size: 1.1em;
    line-height: 120%;
    padding: 0 0px;
}

.column {
    float: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.column p {
    font-size: 1em;
    line-height: 145%;
    padding: 0;
}



/*=========================================
For Carasels
=========================================== */
.rg-image-wrapper{
	position:relative;
	padding:20px 30px;
	background:transparent url(../img/black.png) repeat top left;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	min-height:20px;
}

.rg-image{
	position:relative;
	text-align:left;
	line-height:0px;
}

.rg-image img{
	max-height:100%;
	max-width:100%;
}

.rg-image-nav a{
	position:absolute;
	top:0px;
	left:0px;
	background:#000 url(../img/nav.png) no-repeat -20% 50%;
	width:28px;
	height:100%;
	text-indent:-9000px;
	cursor:pointer;
	opacity:0.3;
	outline:none;
	-moz-border-radius: 10px 0px 0px 10px;
	-webkit-border-radius: 10px 0px 0px 10px;
	border-radius: 10px 0px 0px 10px;
}

.rg-image-nav a.rg-image-nav-next{
	right:0px;
	left:auto;
	background-position:115% 50%;
	-moz-border-radius: 0px 10px 10px 0px;
	-webkit-border-radius: 0px 10px 10px 0px;
	border-radius: 0px 10px 10px 0px;
}

.rg-image-nav a:hover{
	opacity:0.8;
}

.rg-caption{
	text-align:center;
	margin-top:-27%;
	position:relative;
	float:right;
}

.rg-subhead{
	text-align:center;
	margin-top:-25%;
	position:relative;
	float:right;
}

.rg-details{
	text-align:center;
	margin-top:-20%;
	position:relative;
	float:right;
	width:54%;
	font-size:14px;
}

.rg-caption p,.rg-subhead p{
	font-size:14px;
	letter-spacing:2px;
	font-family: 'Trebuchet MS', 'Myriad Pro', Arial, sans-serif;
	line-height:16px;
	padding:0 15px;
	text-transform:uppercase;
}

/*.rg-view{
	height:30px;
}*/

.rg-view a{
	display:block;
	float:right;
	width:16px;
	height:16px;
	margin-right:3px;
	background:#464646 url(../img/views.png) no-repeat top left;
	border:3px solid #464646;
	opacity:0.8;
}
.rg-view a:hover{
	opacity:1.0;
}
.rg-view a.rg-view-full{
	background-position:0px 0px;
}
.rg-view a.rg-view-selected{
	background-color:#6f6f6f;
	border-color:#6f6f6f;
}
.rg-view a.rg-view-thumbs{
	background-position:0px -16px;
}

.rg-loading{
	width:46px;
	height:46px;
	position:absolute;
	top:50%;
	left:50%;
	background:#000 url(../img/ajax-loader.gif) no-repeat center center;
	margin:-23px 0px 0px -23px;
	z-index:100;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	opacity:0.7;
}

    .main header {
        margin-top: 10%;
        float: left;
        width: 40%;
        min-width: 320px;
    }

/* ==========================================================================
   Media Queries
   ========================================================================== */

   @media only screen and (min-width: 1140px) {

/* ===============
    1140 Break
   =============== */

    .wrapper {
       /* width: 1026px; /* 1140px - 10% for margins */
	   width:100%;
        margin: 0 auto;
    }

    #introtext .head-sarah {
        font-size: 11em;
    }
    #introtext .amp {
        top: 0;
        font-size: 1.1em;
    }
    #introtext .head-brad {
        font-size: 5em;
    }
    #introtext .date {
        font-size: 1.5em;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .main header {
        margin-top: 4%;
        margin-bottom: 30%;
        float: left;
        width: 100%;
    }  

}

@media only screen and (max-width: 1100px) {
	/*===========
	Carousel
	===========*/

	.rg-image img{
		position:relative;
		text-align:center;
		line-height:0px;
		margin-top:-25%;
	}

	.rg-image{
		position:relative;
		text-align:center;
		line-height:0px;
	}

	.rg-caption-wrapper {
		margin-top:35%;
		text-align:center;
	 }

	.rg-image-wrapper {
		padding:205px 30px;
		}

	 .rg-caption {
	 text-align:center;
	 float:none;
	 }

	.rg-details{
		width:100%;
		margin-top:0px;
	}

	.rg-subhead {
		margin-top:0px;
		float:none;
		}

	.rg-caption-wrapper {
		margin-top:28%
	 }
}


/* ===============
    900 Break
   =============== */
@media only screen and (min-width: 900px) {

    section h1,
    section h2 {
        padding: 0 20px;
    }
    section h1 {
        font-size: 5.9em;
    }

    .column.full {
        clear: both;
        float: none;
        width: 100%;
    }
    .column {
        float: left;
        width: 50%;
    }
    .column p {
        font-size: 1.4em;
        line-height: 145%;
        padding: 0 20px;
    }  
	
}

/* @media only screen and (max-width: 950px) {
	/*===========
	Carousel
	===========*/
	/* .rg-details{
		width:30%;
	}

	.rg-caption-wrapper {
		margin-top:-5%
	 }
} */

@media only screen and (min-width: 768px) {

/* ====================
    768 Break Point
   ==================== */

    section h1 {
        font-size: 4.9em;
    }
    section h2 {
        font-size: 2.0em;
    }

	#introtext .head-sarah {
        font-size: 9em;
   }
    #introtext .amp {
        top: 0;
        font-size: 1em;
    }
    #introtext .head-brad {
        font-size: 4em;
    }
    #introtext .date {
        font-size: 2em;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .main header {
        margin-top: 10%;
        margin-bottom: 30%;
        float: left;
        width: 100%;
    }

}

/* ===============
    640 Break Point
   =============== */

@media screen and (max-width: 640px) {
	nav {
		position: relative;
		min-height: 50px;
	}	
	nav ul {
		width: 220px;
		/*padding: 13px 1%;*/
		padding:10px 0;
		position: absolute;
		top: 0;
		left: 0;
		background: #b1bf92 url(../img/icon-menu.png) no-repeat 15px 10px;
		border-radius: 1px;
		
	}
	nav li a{
		display: none; /* hide all <li> items */
		margin: 0;
	}
	
	nav li a.selected { /* show only current <li> item */
		display:inline-block;
		width:180px;
		background: #b1bf92;
		text-decoration: none;
		outline: none;
		color:#fff;
		padding: 0px 5px 3px 14px;
		}

	/* center nav */
	nav.center ul {
		left: 50%;
		margin-left: -100px;
	}

	nav a {
		display: block;
		padding: 11px 5px 10px 32px;
		text-align: left;
		font-size:100%;
	}

	/* on nav hover */
	nav ul:hover {
		background-image: none;
	}

	nav ul:hover li{
			background:#000000;
			}

	nav ul:hover li a{
		width:180px;
		display: block;
		padding: 5px 20px 5px 20px;
		text-align:left;

	}
	nav ul:hover a.selected {
		background: #b1bf92 url(../img/icon-check.png) no-repeat 10px 2px;
		color:#fff;
	}

}


@media only screen and (max-width: 800px) {
	/*===========
	Carousel
	===========*/
	.rg-image img{
		position:relative;
		text-align:center;
		line-height:0px;
		/*margin-top:-35%;*/
	}

	.rg-image-wrapper {
		padding:125px 30px;
		}

	.rg-details{
		width:100%;
		margin-top:0px;
	}

	.rg-subhead {
		margin-top:0px;
		float:none;
		}

	.rg-caption-wrapper {
		margin-top:35%;
		text-align:center;
	 }

	 .rg-caption {
	 text-align:center;
	 float:none;
	 }
} 

   @media only screen and (min-width: 480px) {

/* ====================
    480 Break Point
   ==================== */

    body {
        background-position: 50% 20%;
    }

    /** get the transparent bar on the bottom **/
   .header-container {
        position:absolute;
        bottom:20px;
        width:100%;
        line-height:12px;
    }

    .header-container.sticky {
        position: fixed;
        top: 15px;
        animation:thedrop 1s 1;
        -moz-animation:thedrop 1s 1;
        -webkit-animation:thedrop 1s 1;
    }

    nav {
        display: block;
    }

    nav ul {
        text-align: center;
        margin: auto;
        text-align: center;
    }
    nav ul li {
        display: inline;
        padding: 0;
        margin: 0;
    }

}


@media only screen and (max-width: 490px) {
	/*===========
	Carousel
	===========*/
	.rg-image img{
		position:relative;
		text-align:center;
		line-height:0px;
		margin-top:-55%;
	}
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}


/* =============================================================================
   FONTS
   ========================================================================== */

@font-face {
    font-family: 'futura_ltbold';
    src: url('futuralt-bold-webfont.eot');
    src: url('futuralt-bold-webfont.eot?#iefix') format('embedded-opentype'),  /* IE6-IE8 */
         url('futuralt-bold-webfont.woff') format('woff'),  /* Modern Browsers */
         url('futuralt-bold-webfont.ttf') format('truetype'),  /* Safari, Android, iOS */
         url('futuralt-bold-webfont.svg#futura_ltbold') format('svg');  /* Legacy iOS */
    font-weight: normal;
    font-style: normal;
}

.responsive-image.proposal {
    text-align: center;
    margin: 60px auto 60px auto;
}
.responsive-image.proposal img {
    border: 10px solid #090909;

    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

img.theinn  {

    text-align: center;
    margin-bottom: 50px;
}

div.bp h2 {
    margin: 0;
}
div.bp .column p {
    line-height: 180%;
}

.hr-t {
    margin: 80px auto 0 auto;
    width: 97%;
    border-top:#1e1e1e solid 1px;
    opacity:0.4;
    filter:alpha(opacity=40); /* For IE8 and earlier */
}

.hr-b {
    margin: 0 auto 80px auto;
    width: 97%;
    border-bottom:#808080 solid 1px;
    opacity:0.4;
    filter:alpha(opacity=40); /* For IE8 and earlier */
}
a[href^=tel] {
    color: white;
    text-decoration: none;
    outline: none;
}
a.email {
    color: #b1bf92;
}

.thumb {

    height: 80px;
    width: 80px;
    background-color: black;
    margin-right: 10px;
    margin-bottom: 0;
    float: left;

    border: 4px solid #090909;

    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

/* ======================================================
Hover Styles
========================================================= */

.view {
   width: 290px;
   height: 163px;
   margin: 10px;
   float: left;
   border: 5px solid #fff;
   overflow: hidden;
   position: relative;
   text-align: center;
   -webkit-box-shadow: 1px 1px 2px #e6e6e6;
   -moz-box-shadow: 1px 1px 2px #e6e6e6;
   box-shadow: 1px 1px 2px #e6e6e6;
   cursor: default;
   background: #fff url(../images/bg.jpg) no-repeat center center;
}
.view .mask,.view .content {
   width: 290px;
   height: 163px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
}
.view img {
   display: block;
   position: relative;
}
.view h2 {
   text-transform: uppercase;
   color: #fff;
   text-align: center;
   position: relative;
   font-size: 17px;
   padding: 10px;
   background: rgba(0, 0, 0, 0.8);
   margin: 20px 0 0 0;
}
.view p {
   font-family: Georgia, serif;
   font-style: italic;
   font-size: 12px;
   position: relative;
   color: #fff;
   padding: 10px 20px 20px;
   text-align: center;
}
.view a.info {
   display: inline-block;
   text-decoration: none;
   padding: 7px 14px;
   background: #000;
   color: #fff;
   text-transform: uppercase;
   -webkit-box-shadow: 0 0 1px #000;
   -moz-box-shadow: 0 0 1px #000;
   box-shadow: 0 0 1px #000;
}
.view a.info: hover {
   -webkit-box-shadow: 0 0 5px #000;
   -moz-box-shadow: 0 0 5px #000;
   box-shadow: 0 0 5px #000;
}

.view-fifth img {
   -webkit-transition: all 0.3s ease-in-out;
   -moz-transition: all 0.3s ease-in-out;
   -o-transition: all 0.3s ease-in-out;
   -ms-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;
}
.view-fifth .mask {
   background-color: rgba(146,96,91,0.3);
   -webkit-transform: translateX(-300px);
   -moz-transform: translateX(-300px);
   -o-transform: translateX(-300px);
   -ms-transform: translateX(-300px);
   transform: translateX(-300px);
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
   -webkit-transition: all 0.3s ease-in-out;
   -moz-transition: all 0.3s ease-in-out;
   -o-transition: all 0.3s ease-in-out;
   -ms-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;
}
.view-fifth h2 {
   background: rgba(255, 255, 255, 0.5);
   color: #000;
   -webkit-box-shadow: 0px 1px 3px rgba(159, 141, 140, 0.5);
   -moz-box-shadow: 0px 1px 3px rgba(159, 141, 140, 0.5);
   box-shadow: 0px 1px 3px rgba(159, 141, 140, 0.5);
}
.view-fifth p {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   color: #333;
   -webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
   -o-transition: all 0.2s linear;
   -ms-transition: all 0.2s linear;
   transition: all 0.2s linear;
}
.view-fifth:hover .mask {
   -webkit-transform: translateX(0px);
   -moz-transform: translateX(0px);
   -o-transform: translateX(0px);
   -ms-transform: translateX(0px);
   transform: translateX(0px);
}
.view-fifth:hover img {
   -webkit-transform: translateX(300px);
   -moz-transform: translateX(300px);
   -o-transform: translateX(300px);
   -ms-transform: translateX(300px);
   transform: translateX(300px);
}
.view-fifth:hover p {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}

