@charset "UTF-8";

 /* Prevent the slideshow from flashing on load */
    #slides {
      display: none
    }

    /* Center the slideshow */
    .containerslide {
      margin: 0 auto;
	  width: 100%;
	  top:0;
	right:0;
	bottom:0;
	left:0;
	position: relative;
    }

    /* Show active item in the pagination */
    .slidesjs-pagination {
		display: none;
	}
	.slidesjs-pagination .active {
      color:red;
    }

    /* Media quires for a responsive layout */

    /* For tablets & smart phones */
    @media (max-width: 767px) {
      xx.containerslide {
        width: auto
      }
    }

    /* For smartphones */
    @media (max-width: 480px) {
      xx.containerslide {
        width: auto
      }
    }

    /* For smaller displays like laptops */
    @media (min-width: 768px) and (max-width: 979px) {
      xx.containerslide {
        width: 724px
      }
    }

    /* For larger displays */
    @media (min-width: 1200px) {
      xx.containerslide {
        width: 1170px
      }
    }

/*******************************************************************
PAGE LAYOUT
*******************************************************************/
* { 
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  -o-box-sizing:border-box;
  box-sizing:border-box;
}
html { 
	width:100%;
	height:auto;
}

body { 
	width:100%;
	background-color:#fff;
	height:auto;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	color:#292C32;
}
h1, h2, h3, h5, h6 {
	font-family: 'Lato', sans-serif;
	font-weight: 300; 
	line-height: 1;
}

h3 {
	line-height: 1.3 !important;
}

hr {
	border:1px solid #117899;
	margin:0;
}
a {
	text-decoration: none;
	color: #f8909f;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
a:hover {
	color: #003748;
}
p {
	line-height: 1.5em;
	margin:0;
	padding:16px;
	color:#1a1a1a;
}
p a {
	color:#343434;
	font-weight:700;
	padding:5px 0;
}
#wrapper {
	position:relative;
	width: 100%;
	margin: 0 auto; 
	overflow: hidden;
}
footer {
	clear: both;
	width:  100%;
	background-color: #eee;
	color: #292C32;
	font-size: 14px;
}
footer p {
	color:#fff;
	padding:4px 16px 4px 0;
}
footer p a {
	color:#e8e9e8;
}

#footer_content {
	max-width: 1340px;
	width:100%;
	text-align:center;
	padding:20px 10px;
	color:#1a1a1a;
	margin: 0 auto;
}

#copyright { 
	width: 50%;
	float: left;
	text-align: left;
}

#developed { 
	width: 50%;
	float: left;
	text-align: right;
}

.cta { 
	padding: 10px 22px;
	color: #292C32;
	font-size: 15px;
	font-weight: 300;
	border:2px solid #DDDDDD;
	border-radius:20px;
	background-color: #FCDBD4;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.cta:hover, .cta:active {
	background-color:#DDDDDD;
	color:#292C32 !important;
	border:2px solid #DDDDDD;
}
.left {
	float: left;
}
.right {
	float: right;
}

/** clearfix **/
.clearfix:after {
	visibility: hidden;
	display: block;
	content: "";
	clear: both;
	height: 0; 
}
html[xmlns] .clearfix { 
	display: block; 
}
* html .clearfix { 
	height: 1%; 
}

/** Navigation **/
.active { 
	color: #292C33; 
}
.container {
	width: 100%;
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 35px;
}
header {
	width: 100%;
	height: 115px;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: white;
	-webkit-box-shadow: 0 0 4px 4px rgba(0,0,0,.1);
	box-shadow: 0 0 4px 4px rgba(0,0,0,.1);
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	-ms-transition: height 0.3s;
	-o-transition: height 0.3s;
	transition: height 0.3s; 
}
header #logo {
/*	display: block;
	float: left;
*/	height: 115px;
	text-align: center;
	width: 100%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s; 
}
header #logo img{
	display: inline-block;
	height: 100px;
	width: 162px;
	margin-top: 9px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s; 
}
header nav {
/*	display: inline-block;
	float: right; */
	width: 100%;
	margin-top: -115px;
	text-align: center;
	font-family: 'Oswald', sans-serif !important;
}
header nav a {
	line-height: 115px;
	margin-left: 40px;
	color: #c4c4c4;
	font-weight: 300;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s; 
}
header nav a:hover { 
	text-decoration: none; 
}
header nav a:first-of-type {
	margin-left: -15px;
}
header nav a:nth-child(2) {
	margin-right: 170px;
}
header nav a:last-of-type {
	margin-left: 34px;
}
header nav a i {
	margin-right: 40px;
	color: #FCDBD4;
}
header.smaller { 
	height: 75px; 
}
header.smaller #logo img {
	width: 114px;
	height: 70px;
	margin-top: 4px;
	line-height: 75px;
	font-size: 30px; 
}
header.smaller nav a { 
	line-height: 75px; 
}

@media screen and (max-width: 950px) {
	header nav a {
		margin-left: 20px;
	}
}

@media screen and (max-width: 900px) {
	#wrapper {
		margin-top: 130px;
	}
	header nav {
		padding-right: 0;
	}
	.container { 
  		width: 100%;
		padding: 0; 
	}
	#contact_info { 
		padding-left: 35px;
	} 
	#dcall {
		display:none;
	}
	#mcall {
		display:inherit;
	}
	header {
		height:150px;  
	}
	header #logo {
		display: block;
		float: none;
		margin: 0 auto;
		height: 80px;
		text-align: center; 
	}
	header #logo img{
		display: block;
		margin: 0 auto;
		height: 80px;
		width: 130px;
		margin-top: 20px;
	}
	header nav {
		display: block;
		float: none;
		height: 50px;
		text-align: center;
		margin: 0 auto; 
	}
	header nav a {
		line-height: 50px;
		margin: 10px 8px; 
	}
	header nav a:last-of-type {
		margin-left: 6px;
	}
	header.smaller { 
		height: 125px; 
	}
	header.smaller #logo {
		height: 75px;
	}
	header.smaller #logo img{
		height: 70px;
		width: 114px;
		margin-top: 10px;
	}
	header.smaller nav { 
		height: 40px; 
	}
    header.smaller nav a { 
		line-height: 35px; 
	} 
	#social {
		padding-right:35px;
	}
	
	
	
	
	
	header nav a:first-of-type {
		margin-left: 8px;
	}
	header nav a:nth-child(2) {
		margin-right: 8px;
	}
	header nav a:last-of-type {
		margin-left: 8px;
	}
	header nav a i {
		display: none !important;
	}
}

@media screen and (max-width: 800px) {
	#copyright { 
		width: 100%;
		float: none;
		text-align: center;
	}
	#developed { 
		width: 100%;
		float: none;
		text-align: center;
		margin-top: 10px;
	}
}

@media all and (max-width: 600px) {
	header nav a {
		font-size:15px;
	}
	.first {
		margin-left: 0;
	}
	#contact_info {
		text-align:center;
		padding: 1px;
	}
	#social {
		width:100%;
		padding: 0;
		text-align:center;
	}
	.social_icon {
		margin: 30px 0 30px 10px;
	}
	#info-bar a { 
		display: block; 
	}
	#info-bar span.all-tutorials, #info-bar span.back-to-tutorial { 
		width: 100%; 
	}
	#info-bar span.all-tutorials, #info-bar span.back-to-tutorial { 
		float: none;
		text-align: center; 
	}
	#info-bar span.all-tutorials { 
		border-bottom: solid 1px #0793e2; 
	} 
	.right {
		float:none;
	}
	.left {
		float:none;
	}
}

@media all and (max-width: 442px) {
	#wrapper {
		margin-top: 152px;
	}
	header {
		height:155px;  
	}
	header.smaller { 
		height: 130px; 
	}
	header nav .cta { 
		padding: 5px 16px;
	}
	#proposal_content h4 {
		margin-bottom: .33em;
	}
}


/*******************************************************************
INDEX
*******************************************************************/
.slidesjs-previous, .slidesjs-next {
	display: none;
}

.slidescontentbkg {
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
	z-index:99;
	padding: 5% 0 0;
	overflow: auto;
	bottom: 0;
}
.slidescontent {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 16% 6% 1rem;
	overflow-y:visible;
	text-align: center;
}
.slidescontent .slant {
	transform: rotate(-10deg);
}
.slidescontent h1, .slidescontent h2 {
	font-family: 'Pinyon Script', cursive;
	color:#FFF;
}
.slidescontent h1 {
	margin-bottom: 0;
	font-size: 5em;
}
.slidescontent h2 {
	margin-top: 0;
	font-size: 3em;
}
.slide_location {
	max-width: 450px;
	margin: 0 auto;
	border-top: 4px double #FFF;
	border-bottom: 4px double #FFF;
}
.slidescontent h3 {
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 1px;
	margin: .5em 0;
	color:#FFF;
}
.slidescontent h3 i {
	margin: 0 20px;
	color: #FCDBD4;
	font-size:1em;
	vertical-align: calc(20%);
}

#attending_wrap_home {
	background-color: #FFF;
	width: 100%;
}
#attending_home {
	max-width: 800px;
	text-align:center;
	padding: 45px 15px;
	margin: 0 auto;
	width: 100%;
}
#attending_home h2 {
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	font-size: 2.5em;
	letter-spacing:1px;
	margin:0;
}
#attending_home i {
	margin-bottom: 40px;
	font-size: 19.2px;
}
#attending_home i:first-of-type {
	color: #DDDDDD;
}
#attending_home i:nth-child(2) {
	color: #FCDBD4;
	margin-left:-10px;
}
#attending_home .cta {
	margin-top: 30px;
}
#attending_home .cta i{
	color: #292C32;
	font-size: inherit !important;
	margin-bottom: 0 !important;
	margin-left: 10px;
}

@media all and (max-width: 900px) {
	.slidescontent {
		padding: 9% 6% 1rem;
	}
	.slidescontent h1 {
		font-size: 4em;
	}
	.slidescontent h2 {
		font-size: 3em;
	}
	.slide_location h3 {
		font-size: 1.07em;
	}
}

@media all and (max-width: 600px) {
	.slidescontent {
		padding: 3% 6% 1rem;
	}
	.slidescontent h1 {
		font-size: 3em;
	}
	.slidescontent h2 {
		font-size: 2em;
	}
	.slide_location h3 {
		font-size: .95em;
	}
	.slide_location {
		max-width: 300px;
	}
}

@media all and (max-width: 442px) {
	#story_content {
		padding: 25px 15px;
	}
	.slidescontent h1 {
		font-size: 2em;
	}
	.slidescontent h2 {
		font-size: 1em;
	}
	.slide_location h3 {
		font-size: .65em;
	}
	#attending_home {
		padding: 30px 15px;
	}
	#attending_home h2 {
		font-size: 1.5em;
	}
	#attending_home i {
		font-size: 17.2px;
		margin-bottom: 30px;
	}
	#attending_home p {
		font-size: 14px;
	}
	#attending_home .cta {
		margin-top: 20px;
	}
}


/*******************************************************************
LOCATION
*******************************************************************/
#day_and_place {
	background-image: url('../images/location/location_hero.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	width: 100%;
}

#day_and_place_content {
	letter-spacing: 1px;
	height:500px;
	padding-top:330px;
	max-width: 1340px;
	width: 100%;
	margin: 100px auto 0;
	color:#FFFFFF;
	text-transform:uppercase;
	text-align:center;
}

#day_and_place_content h1 {
	font-family: 'Oswald', sans-serif;
	text-shadow: 0 0 10px rgba(0,0,0,0.15);
}

#day_and_place_content p {
	padding-top: 10px;
}

#day_and_place_content h1 i {
	margin: 0 10px;
	color: #FCDBD4;
	font-size: 0.7em;
	vertical-align: calc(20%);
}

#day_and_place_content a i, #location_content a i {
	margin-left: 10px;
}

#location {
	background-color: #FFF;
	max-width: 1060px;
	margin: 0 auto;
}

#location_content {
  max-width: 47.99%;
  min-height: 423px;
  margin: 50px 1%;
  display: inline-block;
  width: 100%;
  text-align:left;
  padding: 35px 30px 35px;
  background-color: #F6F6F6;
  float: left;
}

#location_content h3 {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
}


@media all and (max-width: 800px) {
	#day_and_place_content {
		padding-top:240px;
		height: 375px;
		margin: 0 auto;
	}
	#day_and_place_content .cta {
		padding: 5px 16px;
		font-size: 12px;
	}
	#day_and_place_content p {
		padding-top: 0;
	}
	#location_content {
		margin: 30px 1%;
	}
}

@media all and (max-width: 442px) {
	#day_and_place_content {
		padding-top:115px;
		height: 225px;
	}
	#day_and_place_content h1 {
		font-size: 1.2em;
	}
	#location_content {
		max-width: 94%;
		margin: 10px 3%;
		padding: 15px 30px;
		min-height: 383px;
	}
}

@media all and (max-width: 343px) {
	#day_and_place_content {
		padding-top:90px;
	}

}


/*******************************************************************
REGISTRY
*******************************************************************/
#registry {
	background-image: url('../images/registry/registry2_hero.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	width: 100%;
}

#registry_content {
	letter-spacing: 1px;
	height:500px;
	padding-top:330px;
	max-width: 1340px;
	width: 100%;
	margin: 100px auto 0;
	color:#FFFFFF;
	text-transform:uppercase;
	text-align:center;
}

#registry_content h1 {
	font-family: 'Oswald', sans-serif;
	text-shadow: 0 0 10px rgba(0,0,0,0.15);
}

#registry_content h1 i {
	color: #FCDBD4;
	font-size: 0.7em;
	vertical-align: calc(20%);
	margin-bottom: 15px;
	font-size: 26.2px;
}

#registry_content i:first-of-type {
	color: #DDDDDD;
}
#registry_content i:nth-child(2) {
	color: #FCDBD4;
	margin-left:-10px;
}

#registry_list {
	background-color: #FFF;
	width: 100%;
}

#registry_list_content {
	max-width: 1060px;
	width: 100%;
	text-align:center;
	margin: 0 auto;
	padding: 35px 15px;
}

#registry_list_content h3 {
	margin-bottom:10px;
}

#registry_list_content p {
	margin: 0 auto;
	padding-top: 0;
}
.registry_wrap {
	padding: 20px 0;
}
.registry_icons {
	width: 33%;
	float: left;
	text-align: center;
	padding: 20px;
}

.registry_icons img{
	max-width: 270px;
	width: 100%;
}

/*.registry_icons_50 {
	width: 50%;
	float: left;
	text-align: center;
	padding: 60px 20px 20px;
}

.registry_icons_50 img{
	width: 350px;
}
*/



@media screen and (max-width: 950px) {
	.registry_icons {
		width: 50%;
	}
	#registry_content {
		margin: 0 auto;
	}
}

@media all and (max-width: 800px) {
	#registry_content {
		padding-top:170px;
		height: 300px;
	}
	
	.registry_icons {
		width: 100%;
	}
}

@media all and (max-width: 442px) {
	#registry_content {
		padding-top:115px;
		height: 210px;
	}
	#registry_list_content {
		padding: 25px 15px 50px 15px;
	}
	#registry_content h1 {
		font-size: 1.2em;
	}
	#registry_content h1 i {
		font-size: 20.2px;
	}
	.registry_wrap {
		padding: 0;
	}
}



/*******************************************************************
RSVP
*******************************************************************/
#rsvp {
	background-image: url('../images/rsvp/rsvp_hero.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	width: 100%;
}

#rsvp_content {
	letter-spacing: 1px;
	height:500px;
	padding-top:330px;
	max-width: 1340px;
	width: 100%;
	margin: 100px auto 0;
	color:#FFFFFF;
	text-transform:uppercase;
	text-align:center;
}

#rsvp_content h1 {
	font-family: 'Oswald', sans-serif;
	text-shadow: 0 0 10px rgba(0,0,0,0.15);
}

#rsvp_content h1 i {
	color: #FCDBD4;
	font-size: 0.7em;
	vertical-align: calc(20%);
	margin-bottom: 15px;
	font-size: 26.2px;
}

#rsvp_content i:first-of-type {
	color: #DDDDDD;
}
#rsvp_content i:nth-child(2) {
	color: #FCDBD4;
	margin-left:-10px;
}


#rsvp_main {
	background-color: #FFF;
	width: 100%;
}

#rsvp_form_content {
	max-width: 700px;
	width: 100%;
	text-align: center;
	margin: 0 auto;
	padding: 35px 15px;
	text-transform: uppercase;
}

#rsvp_form_content h1 {
	font-family: 'Pinyon Script', cursive;
	text-transform: initial;
	font-size: 2.5em;
}

#rsvp_form_content h3 {
	margin-top: .33em;
	font-family: 'Oswald', sans-serif;
}

#rsvp_form_content i {
	color: #FCDBD4;
	font-size: 26.2px;
	margin-top: 10px;
}

#rsvp_form {
	text-transform:none;
	max-width: 700px;
	width: 100%;
	text-align: left;
	margin: 30px auto 0;
}

/****FORM STYLING****/
#rsvp_form label {
	color: #1a1a1a;
}
#name {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
	height: 35px;
	padding: 6px;
	margin-bottom: 15px;
	background-color: #FAFAFA;
}
#name:focus {
	background-color: #FFFFFF;
	transition: background 0.1s ease-in 0s;
}

.names {
	width: 100%;
}

.names_left {
	width: 48%;
	margin-right:2%;
	float: left;
}

#first_name {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
	height: 35px;
	padding: 6px;
	margin-bottom: 15px;
	background-color: #FAFAFA;

}
#first_name:focus {
	background-color: #FFFFFF;
	transition: background 0.1s ease-in 0s;
}

.names_right {
	width: 48%;
	margin-left:2%;
	float: left;
}

#last_name {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
	height: 35px;
	padding: 6px;
	margin-bottom: 15px;
	background-color: #FAFAFA;
}
#last_name:focus {
	background-color: #FFFFFF;
	transition: background 0.1s ease-in 0s;
}

#rsvp_form #attending_wrap {
	width: 100%;
	margin-bottom: 15px;
}

#rsvp_form #attending {
	margin-bottom: 5px;
}

#rsvp_form .attending_margin {
	margin-left: 8px;
	font-family: 'Lato', sans-serif !important;
	font-weight: 300;
	font-size: 100% !important;
}

#guests {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
	height: 35px;
	padding: 6px;
	margin-bottom: 15px;
	background-color: #FAFAFA;
}
#guests:focus {
	background-color: #FFFFFF;
	transition: background 0.1s ease-in 0s;
}

#message {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
	height: 105px;
	padding: 6px;
	margin-bottom: 15px;
	background-color: #FAFAFA;
}
#message:focus {
	background-color: #FFFFFF;
	transition: background 0.1s ease-in 0s;
}

#submit { 
	padding: 10px 22px;
	color: #292C32;
	font-size: 15px;
	font-weight: 300;
	border:2px solid #DDDDDD;
	border-radius:20px;
	background-color: #FCDBD4;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#submit:hover, #submit:active {
	background-color:#DDDDDD;
	color:#292C32 !important;
	border:2px solid #DDDDDD;
}

@media screen and (max-width: 950px) {
	#rsvp_content {
		margin: 0 auto;
	}
}

@media all and (max-width: 800px) {
	#rsvp_content {
		padding-top:170px;
		height: 300px;
	}
}

@media all and (max-width: 442px) {
	#rsvp_content {
		padding-top:115px;
		height: 210px;
	}
	#rsvp_content h1 {
		font-size: 1.2em;
	}
	#rsvp_content h1 i {
		font-size: 20.2px;
	}
	#rsvp_form_content {
		padding: 25px 15px 50px 15px;
	}
	.names_left {
		width: 100%;
		margin-right:0;
		float: none;
	}
	.names_right {
		width: 100%;
		margin-left: 0;
		float: none;
	}
	#rsvp_form_content h1 {
		font-size: 1.8em;
	}
	#rsvp_form_content h3 {
		font-size: 1.07em;
	}
}