/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
# Misc
# Header
# Slideshow
# Audio
# Splash
# Section
	## Couple
	## Parents
	## Timeline
	## Venue
	## People
	## Events
	## RSVP
	## Journal
# Footer
	## Instagram
# Viewport

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


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

html {
	font-family : sans-serif;
	-webkit-text-size-adjust : 100%;
	    -ms-text-size-adjust : 100%;
}

body {
	overflow-x : hidden !important;
	margin : 0;
}

article ,
aside ,
details ,
figcaption ,
figure ,
footer ,
header ,
main ,
menu ,
nav ,
section ,
summary {
	display : block;
}

audio ,
canvas ,
progress ,
video {
	display : inline-block;
	vertical-align : baseline;
}

audio:not([controls]) {
	display : none;
	height : 0;
}

[hidden] ,
template {
	display : none;
}

a {
	background-color : transparent;
}

a:active ,
a:hover {
	outline : 0;
	text-decoration : none;
}

abbr[title] {
	border-bottom : 1px dotted;
}

b ,
strong {
	font-weight : bold;
}

dfn {
	font-style : italic;
}

h1 {
	font-size : 2.5em;
}

h2 {
	font-size : 2.2em;
}

h3 {
	font-size : 2em;
}

h4 {
	font-size : 1.8em;
}

h5 {
	font-size : 1.5em;
}

h6 {
	font-size : 1.3em;
}

mark {
	color : #000000;
	background : #ffff00;
}

small {
	font-size : 80%;
}

sub ,
sup {
	font-size : 75%;
	line-height : 0;
	position : relative;
	vertical-align : baseline;
}

sup {
	top : -.5em;
}

sub {
	bottom : -.25em;
}

img {
	border : 0;
}

svg:not(:root) {
	overflow : hidden;
}

figure {
	margin : 1em 40px;
}

hr {
	box-sizing : content-box;
	height : 0;
}

pre {
	overflow : auto;
}

code ,
kbd ,
pre ,
samp {
	font-family : monospace, monospace;
	font-size : 1.8em;
}

button ,
input ,
optgroup ,
select ,
textarea {
	font : inherit;
	margin : 0;
	color : inherit;
}

button {
	overflow : visible;
}

button ,
select {
	text-transform : none;
}

input:focus ,
select:focus ,
textarea:focus {
	outline : none;
}

button ,
html input[type='button'] ,
input[type='reset'] ,
input[type='submit'] {
	cursor : pointer;
	-webkit-appearance : button;
}

button[disabled] ,
html input[disabled] {
	cursor : default;
}

button::-moz-focus-inner ,
input::-moz-focus-inner {
	padding : 0;
	border : 0;
}

input {
	line-height : normal;
}

input[type='checkbox'] ,
input[type='radio'] {
	box-sizing : border-box;
	padding : 0;
}

input[type='number']::-webkit-inner-spin-button ,
input[type='number']::-webkit-outer-spin-button {
	height : auto;
}

input[type='search']::-webkit-search-cancel-button ,
input[type='search']::-webkit-search-decoration {
	-webkit-appearance : none;
}

fieldset {
	margin : 0 2px;
	padding : .35em .625em .75em;
	border : 1px solid #c0c0c0;
}

legend {
	padding : 0;
	border : 0;
}

textarea {
	overflow : auto;
}

optgroup {
	font-weight : bold;
}

table {
	border-spacing : 0;
	border-collapse : collapse;
}

td ,
th {
	padding : 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

body ,
button ,
input ,
select ,
textarea {
	font-family: 'Comfortaa', cursive;
	font-size: 14px;
    line-height: 28px;
    letter-spacing: 1px;
    word-break: break-word;
}

h1 ,
h2 ,
h3 ,
h4 ,
h5 ,
h6 {
	clear : both;
	margin-top : 30px;
	margin-bottom : 30px;
}

p {
	line-height : 25px;
	margin-bottom : 1.5em;
}

dfn ,
cite ,
em ,
i {
	font-style : italic;
}

blockquote {
	margin : 0 1.5em;
	border-color : #dc5b81;
}

address {
	margin : 0 0 1.5em;
}

pre {
	font-family : 'Courier 10 Pitch', Courier, monospace;
	font-size : 15px;
	line-height : 1.6;
	overflow : auto;
	max-width : 100%;
	margin-bottom : 1.6em;
	padding : 1.6em;
	background : #eeeeee;
}

code ,
kbd ,
tt ,
var {
	font-family : Monaco, Consolas, 'Andale Mono', 'DejaVu Sans Mono', monospace;
	font-size : 15px;
}

abbr ,
acronym {
	cursor : help;
	border-bottom : 1px dotted #666666;
}

mark ,
ins {
	text-decoration : none;
	background : #fff9c0;
}

big {
	font-size : 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

html {
	box-sizing : border-box;
}

* ,
*:before ,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing : inherit;
}

body {
	background : #ffffff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before ,
blockquote:after ,
q:before ,
q:after {
	content : '';
}

blockquote ,
q {
	quotes : '' '';
}

hr {
	height : 1px;
	margin-bottom : 1.5em;
	border : 0;
	background-color : #cccccc;
}

ul ,
ol {
	margin : 10px 0 1.5em 3em;
	padding : 0;
}

ul {
	list-style : disc;
}

ol {
	list-style : decimal;
}

li {
	margin-bottom : 6px;
}

li > ul ,
li > ol {
	margin-bottom : 0;
	margin-left : 1.5em;
}

dt {
	font-weight : bold;
}

dd {
	margin : 0 1.5em 1.5em;
}

img {
	max-width : 100%; /* Adhere to container width. */
	height : auto; /* Make sure images are scaled correctly. */
}

figure {
	margin : 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	width : 100%;
	margin : 20px 0;
	border : solid 1px #dc5b81;
}

table th ,
table td {
	padding : 10px;
}

table tr:nth-child(even) {
	background: #eee;
}

table tr:nth-child(odd) {
	background: #f5f5f5;
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

button ,
input[type='button'] ,
input[type='reset'] ,
input[type='submit'] {
	font-size : 14px;
	padding : 11px 15px;
	transition : all .4s ease;
	color : #ffffff;
	border : none;
	background : #80c2c1;
}

button:hover ,
input[type='button']:hover ,
input[type='reset']:hover ,
input[type='submit']:hover {
	background : #dc5b81;
}

button:focus ,
input[type='button']:focus ,
input[type='reset']:focus ,
input[type='submit']:focus ,
button:active ,
input[type='button']:active ,
input[type='reset']:active ,
input[type='submit']:active {
	background : #dc5b81;
}

input[type='text'] ,
input[type='email'] ,
input[type='url'] ,
input[type='password'] ,
input[type='search'] ,
input[type='number'] ,
input[type='tel'] ,
input[type='range'] ,
input[type='date'] ,
input[type='month'] ,
input[type='week'] ,
input[type='time'] ,
input[type='datetime'] ,
input[type='datetime-local'] ,
input[type='color'] ,
textarea {
	padding : 10px;
	color : #818181;
	border : solid 1px #80c2c1;
	background : #ffffff;
}

input[type='text']:focus ,
input[type='email']:focus ,
input[type='url']:focus ,
input[type='password']:focus ,
input[type='search']:focus ,
input[type='number']:focus ,
input[type='tel']:focus ,
input[type='range']:focus ,
input[type='date']:focus ,
input[type='month']:focus ,
input[type='week']:focus ,
input[type='time']:focus ,
input[type='datetime']:focus ,
input[type='datetime-local']:focus ,
input[type='color']:focus ,
textarea:focus {
	color : #111111;
}

textarea {
	width : 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a ,
a:visited {
	color : #dc5b81;
}

a:hover ,
a:focus ,
a:active {
	color : #80c2c1;
	outline : none;
}


/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.main-navigation {
	width : 100%;
	padding : 0 20px;
	background : #ffffff;
	box-shadow : 0 0 18px rgba(0, 0, 0, .12);
}

.page-template-front-page .main-navigation.affix-top {
	opacity: 0;
	background: transparent;
	position: absolute;
}

.main-navigation.affix {
	position: fixed;
	top : 0;
	z-index: 999;
	margin-top: 0;
	opacity: 1;
	animation: navigation-in 1s 1 forwards;
}

.admin-bar .main-navigation.affix {
	top : 32px;
}

@keyframes navigation-in {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
	}
}

.main-navigation ul {
	display : none;
	margin : 0;
	padding-left : 0;
	list-style : none;
}

.main-navigation li {
	position : relative;
	float : left;
}

.main-navigation a {
	display : block;
	text-decoration : none;
}

.main-navigation ul ul {
	position : absolute;
	z-index : 99999;
	top : 1.5em;
	left : -999em;
	float : left;
	box-shadow : 0 3px 3px rgba(0, 0, 0, .2);
}

.main-navigation ul ul ul {
	top : 0;
	left : -999em;
}

.main-navigation ul ul a {
	width : 200px;
}

.main-navigation ul li:hover > ul ,
.main-navigation ul li.focus > ul {
	left : auto;
}

.main-navigation ul ul li:hover > ul ,
.main-navigation ul ul li.focus > ul {
	left : 100%;
}

.main-navigation .menu li {
	position : relative;
	display : inline-block;
	float : none;
}

.main-navigation .menu {
	text-align : center;
}

.main-navigation .menu li a {
	padding : 10px 30px;
	transition : all .4s ease;
	color : #dc5b81;
}

.main-navigation .menu li a:hover ,
.main-navigation .current-menu-item a {
	color : #ffffff !important;
	background : #dc5b81;
}

.main-navigation .menu li ul {
	display : block;
	margin-top : 20px;
	background : #dc5b81;
}

.main-navigation .menu li ul li a {
	color : #ffffff;
}

.main-navigation .menu li ul li a:hover {
	color : #dc5b81 !important;
	background : #ffffff !important;
}

.main-navigation .menu li ul ul {
	margin-top : 0;
}

/* Small menu. */

.menu-toggle ,
.main-navigation.toggled ul {
	display : block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display : none;
	}

	.main-navigation ul {
		display : block;
	}
}

.site-main .comment-navigation ,
.site-main .posts-navigation ,
.site-main .post-navigation {
	overflow : hidden;
	margin : 0 0 1.5em;
}

.comment-navigation .nav-previous ,
.posts-navigation .nav-previous ,
.post-navigation .nav-previous {
	float : left;
	width : 50%;
}

.comment-navigation .nav-next ,
.posts-navigation .nav-next ,
.post-navigation .nav-next {
	float : right;
	width : 50%;
	text-align : right;
}

.post-navigation,
.posts-navigation {
	margin-top : 40px !important;
}

.post-navigation a,
.posts-navigation a {
	display : inline-block;
	padding : 15px 30px;
	transition : all .4s ease;
	color : #ffffff;
	border-radius : 50px;
	background : #dc5b81;
}

.post-navigation a:hover,
.posts-navigation a:hover {
	text-decoration : none;
	background : #80c2c1;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/

/* Text meant only for screen readers. */

.screen-reader-text {
	position : absolute !important;
	overflow : hidden;
	clip : rect(1px, 1px, 1px, 1px);
	width : 1px;
	height : 1px;
	word-wrap : normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	font-size : 14px;
	font-size : .875rem;
	font-weight : bold;
	line-height : normal;
	z-index : 100000; /* Above WP toolbar. */
	top : 5px;
	left : 5px;
	display : block;
	clip : auto !important;
	width : auto;
	height : auto;
	padding : 15px 23px 14px;
	text-decoration : none;
	color : #21759b;
	border-radius : 3px;
	background-color : #f1f1f1;
	box-shadow : 0 0 2px 2px rgba(0, 0, 0, .6);
}

/* Do not show the outline on the skip link target. */

#content[tabindex='-1']:focus {
	outline : 0;
}



/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft {
	display : inline;
	float : left;
	margin-right : 1.5em;
}

.alignright {
	display : inline;
	float : right;
	margin-left : 1.5em;
}

.aligncenter {
	display : block;
	clear : both;
	margin-right : auto;
	margin-left : auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/

.clear:before ,
.clear:after ,
.entry-content:before ,
.entry-content:after ,
.comment-content:before ,
.comment-content:after ,
.site-header:before ,
.site-header:after ,
.site-content:before ,
.site-content:after ,
.site-footer:before ,
.site-footer:after {
	display : table;
	table-layout : fixed;
	content : '';
}

.clear:after ,
.entry-content:after ,
.comment-content:after ,
.site-header:after ,
.site-content:after ,
.site-footer:after {
	clear : both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

.widget {
	margin : 0 0 1.5em;
}

.bf_secondary_widget .widget {
	padding-bottom : 20px;
	border-bottom : solid 1px #dc5b81;
}

/* Make sure select elements fit in widgets. */

.widget select {
	max-width : 100%;
	padding : 10px;
	color : #818181;
	border : solid 1px #80c2c1;
	background : #ffffff;
}


.widget .widget-title {
	font-size : 24px;
	margin-top : 0;
	margin-bottom : 20px;
	color : #dc5b81;
}

.widget ul {
	margin : 0;
	padding : 0;
}

.widget ul li {
	line-height : 28px;
	list-style : none;
}

.widget ul li a {
	color : #818181;
}

.widget ul li a:hover {
	color : #80c2c1;
}

.search-form label {
    display: initial;
    max-width: initial;
}

.search-form .search-field {
    padding: 10px;
    color: #818181;
    border: solid 1px #80c2c1;
    background: #ffffff;
    display: inline-block;
    width: 62%;
}

.search-form .search-submit {
    font-size: 14px;
    padding: 11px 15px;
    transition: all .4s ease;
    color: #ffffff;
    border: none;
    background: #80c2c1;
    display: inline-block;
    width: 32%;
}

.search-form .search-submit:hover {
	background : #dc5b81;
}

.calendar_wrap {
	margin : 20px 0;
	word-break: normal;
}

.calendar_wrap table tr {
	background: none;
}

.calendar_wrap caption {
	padding : 10px;
	color : #ffffff;
	background : #80c2c1;
}

.calendar_wrap #next {
	text-align: right;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

.sticky {
    position: relative;
    padding: 30px;
    margin-top: 47px !important;
    border: solid 1px #80C2C1;
}

.sticky:before {
    content: '\e044';
    position: absolute;
    top: 0px;
    right: 0;
    left: 0;
    width: 100%;
    font-family: 'Glyphicons Halflings';
    font-size: 32px;
    line-height: 22px;
    color: #dc5b81;
    text-align: right;
    padding-right: 10px;
}

.sticky .entry-title {
    margin-top: 0;
}

.hentry {
	margin : 0 0 1.5em;
}

.blog .hentry,
.archive .hentry {
	margin : 0 0 6em;
}

.byline ,
.updated:not(.published) {
	display : none;
}

.single .byline ,
.group-blog .byline {
	display : inline;
}

.entry-title a:hover ,
.entry-title a:focus {
	text-decoration : none;
}

.page-content ,
.entry-content ,
.entry-summary {
	/*margin : 1.5em 0 0;*/
}

.page-title {
	padding : 0 20px;
	text-align : center;
	color : #80c2c1;
}

.page-links {
	clear : both;
	margin : 0 0 1.5em;
}

.page-links a {
	margin : 0 0 0 12px;
}

/*.search .content-area .container:last-child {
	display : none;
}*/

.entry-footer span {
    margin-right: 15px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-content a {
	word-wrap : break-word;
}

.bypostauthor {
	display : block;
}

.comments-title {
	font-size : 22px;
	margin-bottom : 20px;
	padding : 15px 0;
	border-top : solid 2px #80c2c1;
	border-bottom : solid 1px #e3e3e3;
}

.comments-title span {
	color : #dc5b81;
}

.comment-list {
	margin : 0;
	padding : 0;
}

.comment-list li {
	margin-bottom : 20px;
	list-style : none;
}

.comment-body {
	padding : 10px 0;
}

.comment-author {
	padding : 10px 0;
}

.comment-metadata {
	margin-bottom : 10px;
	padding : 5px 10px;
	background : #f1f1f1;
}

#comments {
	margin-top : 40px;
}

#comments .reply a {
	display : inline-block;
	padding : 10px 20px;
	transition : all .4s ease;
	color : #ffffff;
	border-radius : 2px;
	background : #80c2c1;
}

#comments .reply a:hover {
	text-decoration : none;
	background : #dc5b81;
}

.comment-form input ,
.comment-form textarea {
	display : block;
	width : 100%;
	padding : 10px;
	border : solid 1px #80c2c1;
}

.comment-form label {
	color : #80c2c1;
}

.comment-form .submit {
	font-size : 14px;
	width : auto;
	padding : 15px 25px;
	transition : all .4s ease;
	color : #ffffff;
	border : none;
	background : #80c2c1;
}

.comment-form .submit:hover {
	background : #dc5b81;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/

/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .posts-navigation ,
/* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display : none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display : block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

.page-content .wp-smiley ,
.entry-content .wp-smiley ,
.comment-content .wp-smiley {
	margin-top : 0;
	margin-bottom : 0;
	padding : 0;
	border : none;
}

/* Make sure embeds and iframes fit their containers. */
embed ,
iframe ,
object {
	max-width : 100%;
	border: none;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
	max-width : 100%;
	margin-bottom : 1.5em;
}

.wp-caption img[class*='wp-image-'] {
	display : block;
	margin-right : auto;
	margin-left : auto;
}

.wp-caption .wp-caption-text {
	margin : .8075em 0;
}

.wp-caption-text {
	text-align : center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
	margin-bottom : 1.5em;
}

.gallery-item {
	display : inline-block;
	width : 100%;
	text-align : center;
	vertical-align : top;
}

.gallery-columns-2 .gallery-item {
	max-width : 50%;
}

.gallery-columns-3 .gallery-item {
	max-width : 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width : 25%;
}

.gallery-columns-5 .gallery-item {
	max-width : 20%;
}

.gallery-columns-6 .gallery-item {
	max-width : 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width : 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width : 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width : 11.11%;
}

.gallery-caption {
	display : block;
}

/*--------------------------------------------------------------
# Misc
--------------------------------------------------------------*/

.bf_margin_top_4 {
	margin-top : 4%;
}

.so-panel {
	margin-bottom : 0 !important;
}

.bf_img_center {
	margin : auto;
}

.bf_absolute {
	position : absolute !important;
}

.bf_spacer {
	height: 60px;
}

.white-text {
	color : #ffffff;
}

.page-template-template-home .entry-title {
	display : none;
}

.page-template-template-home .entry-content {
	margin-top : 0;
}

.bf_preloader {
	position : fixed;
	z-index : 9999999;
	top : 0;
	right : 0;
	bottom : 0;
	left : 0;
	background : url(../images/preloader.svg) no-repeat center #dc5b81;
}

.bf_scrolldown {
	position : absolute;
	z-index : 1;
	right : 0;
	bottom : 20px;
	left : 0;
	width : 70px;
	height : 61px;
	margin : auto;
	text-indent : -99999px;
	background : url(../images/scroll-down.png) no-repeat;
}

.mfp-container button:hover,
.mfp-container button:focus,
.mfp-container button:active {
	background: transparent;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.site-header {
	position : relative;
	z-index : 3;
	top : 0;
	width : 100%;
	padding : 25px 0 25px;
	background : #80c2c1;
}

.site-header.bf_absolute {
	background : none;
}

.site-header .bf_site_branding {
	position : relative;
	z-index : 1;
	width : 100%;
}

.bf_site_branding .site-title {
	margin : 0;
}

.site-title a {
	font-family : Dancing Script;
	font-size : 67px;
	color : #ffffff;
}

.site-title a:hover ,
.site-title a:focus {
	text-decoration : none;
	color : #ffffff;
}

.site-title span {
	display : inline-block;
	vertical-align : top;
}

.site-title .groom-name ,
.site-title .bride-name {
	margin-top : 50px;
}

.site-title .groom-name span ,
.site-title .bride-name span {
    font-family: 'Comfortaa', cursive;
	font-size : 18px;
	font-weight : 400;
    text-transform : uppercase;
	display : block;
    margin-top: 5px;
}

.site-title .groom-name span {
	text-align : left;
}

.site-title .bride-name span {
	text-align : right;
}

.xs-site-title {
	font-size : 34px;
	display : none !important;
}

.bf_header_icon {
	position : relative;
	width : 245px;
	margin : 0 25px;
}

.bf_header_couple_image {
	position : absolute;
	top : 15%;
	left : 50%;
	width : 160px;
	transform : translateX(-50%);
	border-radius : 100%;
}


/*--------------------------------------------------------------
# Slideshow
--------------------------------------------------------------*/

.carousel-inner {
	margin : 0;
	padding : 0;
}

.carousel-inner > .item {
	margin-bottom : 0;
}

.slide-container ,
#bf_slideshow ,
#bf_featured_image {
	position : relative;
}

#bf_slideshow:after ,
#bf_featured_image:after {
	position : absolute;
	z-index : 0;
	top : 0;
	right : 0;
	bottom : 0;
	left : 0;
	content : '';
	background : rgba(0,0,0,.5);
}

#bf_slideshow .carousel-inner .item {
	-webkit-transition-property : opacity;
	        transition-property : opacity;
}

#bf_slideshow .carousel-inner .item ,
#bf_slideshow .carousel-inner .active.left ,
#bf_slideshow .carousel-inner .active.right {
	opacity : 0;
}

#bf_slideshow .carousel-inner .active ,
#bf_slideshow .carousel-inner .next.left ,
#bf_slideshow .carousel-inner .prev.right {
	opacity : 1;
}

#bf_slideshow .carousel-inner .next ,
#bf_slideshow .carousel-inner .prev ,
#bf_slideshow .carousel-inner .active.left ,
#bf_slideshow .carousel-inner .active.right {
	left : 0;
	-webkit-transform : translate3d(0, 0, 0);
	        transform : translate3d(0, 0, 0);
}

#bf_slideshow .carousel-inner .item {
	-webkit-animation-name : kenburn;
	        animation-name : kenburn;
	-webkit-animation-duration : 5s;
	        animation-duration : 5s;
	-webkit-animation-fill-mode : both;
	        animation-fill-mode : both;
}

@keyframes kenburn {
	from {
		-webkit-transform : scale3d(1.3, 1.3, 1.3) rotate(5deg);
		        transform : scale3d(1.3, 1.3, 1.3) rotate(5deg);
	}
	to {
		-webkit-transform : scale3d(1, 1, 1) rotate(0deg);
		        transform : scale3d(1, 1, 1) rotate(0deg);
	}
}

#bf_slideshow .carousel-control {
	z-index : 7;
	background : none;
}

#bf_slideshow .carousel-control:visited {
	color : #ffffff;
}


/*--------------------------------------------------------------
# Audio
--------------------------------------------------------------*/

.bf_audio {
	position : fixed;
	z-index : 999;
	right : 10px;
	bottom : 10px;
}

.bf_audio a {
	font-family : 'Glyphicons Halflings';
	line-height : 40px;
	display : block;
	width : 40px;
	height : 40px;
	text-align : center;
	color : #ffffff;
	border-radius : 100%;
	background : #dc5b81;
}

.bf_audio a:hover ,
.bf_audio a:focus {
	text-decoration : none;
}

.bf_audio a:before {
	content : '\e002';
}

.bf_audio a.mute:before {
	content : '\e014';
}

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

.splash {
	position : absolute;
	bottom : 100px;
	width : 100%;
}

.splash p {
	font-size : 20px;
	margin-bottom : .8em;
	letter-spacing : 2px;
	text-transform : uppercase;
	color : #80c2c1;
}

.splash p span {
	color : #dc5b81;
}

.splash h2 {
	font-family : Dancing Script;
	font-size : 70px;
	margin : 15px 0 20px;
	color : #ffffff;
}

/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/

.bf_section_title {
	max-width : 700px;
	margin : 0 auto 40px;
}

.bf_section_title .widget-title, 
.entry-title {
    font-family: Dancing Script !important;
    font-size: 42px !important;
    margin-bottom: 24px !important;
    padding-bottom: 40px;
    text-align: center;
    color: #dc5b81 !important;
    background: url(../images/divider-1.png) no-repeat bottom center;
}

.bf_section_title.white .widget-title {
	color : #ffffff !important;
	background : url(../images/divider-2.png) no-repeat bottom center !important;
}

/*--------------------------------------------------------------
## Couple
--------------------------------------------------------------*/

.couple .siteorigin-widget-tinymce {
	position : relative;
	margin : 0 44px;
	border : solid 10px #fdf7f7;
	box-shadow : 1px 1px 15px rgba(0, 0, 0, .19);
}

.couple .siteorigin-widget-tinymce:before ,
.couple .siteorigin-widget-tinymce:after {
	position : absolute;
	width : 50px;
	height : 44px;
	content : '';
}

.couple .siteorigin-widget-tinymce:before {
	top : 0;
	left : 0;
	background : url(../images/img-top-left.png) no-repeat;
}

.couple .siteorigin-widget-tinymce:after {
	right : 0;
	bottom : 0;

	background : url(../images/img-bottom-right.png) no-repeat;
}

.couple .widget-title {
	font-family: 'Scope One', serif;
	font-size : 32px;
	margin : 25px 0 15px;
	color : #80c2c1;
}

.couple .widget_text {
	padding: 0 44px;
}

/*--------------------------------------------------------------
## Parents
--------------------------------------------------------------*/

.parents .siteorigin-widget-tinymce {
	overflow : hidden;
	margin : 0 70px;
	border-radius : 100%;
}

.parents .widget-title {
	font-family: 'Scope One', serif;
	font-size : 32px;
	margin : 25px 0 15px;
	color : #80c2c1;
}

/*--------------------------------------------------------------
## Timeline
--------------------------------------------------------------*/



.timeline-inner {
	position : relative;
	padding : 55px 0;
	background : url(../images/small-heart.png) no-repeat center top, url(../images/small-heart.png) no-repeat center bottom;
}

.timeline-inner:before {
	position : absolute;
	top : 0;
	bottom : 0;
	left : 50%;
	width : 1px;
	content : '';
	transform : translateX(-50%);
	border-right : dashed 2px #dc5b81;
}

.timeline-inner .panel-grid-cell {
	padding : 0 60px !important;
}

.timeline-inner .widget-title {
	font-family: 'Scope One', serif;
	font-size : 32px;
	margin-bottom : 0;
	color : #80c2c1;
}

.timeline-inner .panel-first-child .textwidget {
	margin : 0 0 20px;
	color : #dc5b81;
}

.timeline-inner .siteorigin-widget-tinymce {
	margin-bottom : 20px;
	border : solid 8px #ffffff;
	box-shadow : 1px 1px 15px rgba(0, 0, 0, .19);
}

/*--------------------------------------------------------------
## Venue
--------------------------------------------------------------*/

.venue {
	position : relative;
	color : #ffffff;
}

.venue:before ,
.venue:after {
	position : absolute;
	z-index : 0;
	top : 0;
	right : 0;
	bottom : 0;
	left : 0;
	content : '';
}

.venue:before {
	background : url(../images/border.png) repeat-x top center;
}

.venue:after {
	background : url(../images/border.png) repeat-x bottom center;
}

.venue .container {
	position : relative;
	z-index : 1;
	max-width : 455px;
}

.venue .textwidget {
	margin-top : 46px;
}

.venue .textwidget h2 {
	margin-top: 15px;
	margin-bottom : 46px;
}

.venue .textwidget h3 {
	font-family: 'Scope One', serif;
	font-size : 32px;
	margin-bottom: 0;
}

/*--------------------------------------------------------------
## People
--------------------------------------------------------------*/

.people .siteorigin-widget-tinymce {
	position : relative;
	overflow : hidden;
	border-radius : 100%;
}

.people .siteorigin-widget-tinymce:after {
	position : absolute;
	top : 0;
	right : 0;
	bottom : 0;
	left : 0;
	margin : 10px;
	content : '';
	transition : all .2s ease;
	border : solid 4px rgba(255, 255, 255, .45);
	border-radius : 100%;
}

.people .siteorigin-widget-tinymce:hover:after {
	margin : 4px;
	border : solid 10px rgba(255, 255, 255, .45);
}

.people #pg-w586e352891310-1 .widget_text {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.45);
}

.people .white-text .widget-title {
	font-family: 'Scope One', serif;
	font-size : 32px;
	margin-top : 25px;
	margin-bottom: 0;
	color: #fff;
}

.people .white-text .textwidget {
	font-size : 18px;
}

/*--------------------------------------------------------------
## Events
--------------------------------------------------------------*/

.event-col {
	box-shadow : 0 0 100px #000000 inset;
}

.events .event-info {
	width : 100%;
	margin : 15px 0 50px 10px;
	padding : 30px;
	border : solid 2px #80c2c1;
	background : url(../images/corner-top-right.png) top right no-repeat, url(../images/corner-bottom-left.png) bottom left no-repeat, #ffffff;
}

.events .event-info .widget-title {
	color : #dc5b81;
}

/*--------------------------------------------------------------
## RSVP
--------------------------------------------------------------*/

.rsvp {
	position : relative;
}

.rsvp:before ,
.rsvp:after {
	position : absolute;
	z-index : 0;
	top : 0;
	right : 0;
	bottom : 0;
	left : 0;
	content : '';
}

.rsvp:before {
	background : url(../images/border.png) repeat-x top center;
}

.rsvp:after {
	background : url(../images/border.png) repeat-x bottom center;
}

.rsvp .container {
	position : relative;
	z-index : 1;
}

.rsvp-form {
	max-width : 340px;
	margin : auto;
	padding : 20px;
	border : solid 1px #80c2c1;
	background : url(../images/corner-top-right.png) top right no-repeat, url(../images/corner-bottom-left.png) bottom left no-repeat, #ffffff;
}

.rsvp-form.bf_section_title {
	text-align : center;
}

.rsvp-form form p {
	margin-top : 0;
	margin-bottom : 0;
}

.rsvp-form form input ,
.rsvp-form form select {
	width : 100%;
	margin : 5px 0 15px;
	padding : 8px;
	border : solid 1px #cccccc;
}

.rsvp-form form input:focus ,
.rsvp-form form select:focus {
	border-color : #dc5b81;
}

.rsvp-form form input[type='submit'] {
	font-size : 16px;
	margin-top : 10px;
	padding : 14px;
	transition : all .4s ease;
	text-transform : uppercase;
	color : #ffffff;
	background : #dc5b81;
}

.rsvp-form form input[type='submit']:hover {
	background : #80c2c1;
}

.rsvp-form form {
	margin : 20px 0 0;
}

.rsvp-text img {
    width: 75px;
    margin: 15px auto 0;
    display: block;
}

.rsvp-text .textwidget {
	max-width : 390px;
	margin : auto;
}

/*--------------------------------------------------------------
## Journal
--------------------------------------------------------------*/

.bf_blog_grid .sticky {
    background: none;
    border: none;
    padding: initial;
    margin-top: 0 !important;
    display: initial;
}

.bf_blog_grid .sticky:before {
	content: none;
}

.bf_blog_grid .bf_entry_featured_image {
	margin-bottom: 10px;
	margin-top: 20px;
	outline: solid 1px #fff;
	outline-offset: -5px;
}

.bf_blog_grid h2 {
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 5px;
	color: #dc5b81;
}

.bf_blog_grid .entry-meta,
.bf_blog_grid .entry-meta a {
	color: #80c2c1;
	margin-bottom: 12px;
}

.bf_blog_grid .more-link {
    display: block;
    border-bottom: dashed 1px;
    padding-bottom: 10px;
}

.bf_blog_grid .more-link:hover,
.bf_blog_grid .more-link:focus {
    text-decoration: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
	background : url(../images/footer-left.jpg) no-repeat left bottom, url(../images/footer-right.jpg) no-repeat right bottom, transparent;
}

.footer-contact-panel {
	margin-top : 30px;
	background : #80c2c1;
}

.footer-contact-panel-text ,
.footer-contact-panel-icon ,
.footer-contact-panel-mail {
	display : inline-block;
	vertical-align : middle;
}

.footer-contact-panel-text {
	font-size : 18px;
	color : #ffffff;
}

.footer-contact-panel-text ,
.footer-contact-panel-mail {
	margin-top : 20px;
}

.footer-contact-panel-icon {
	width : 80px;
	height : 95px;
	margin : -12px 20px 0;
	background : url(../images/footer-contact-panel-icon.png) no-repeat;
	background-size : contain;
}

.footer-contact-panel-mail {
	margin-top : 20px;
	margin-bottom : 20px;
	padding : 10px 20px;
	text-transform : uppercase;
	color : #80c2c1;
	background : #ffffff;
	box-shadow : 1px 1px 4px rgba(0, 0, 0, .38);
}

.footer-contact-panel-mail:hover {
	text-decoration : none;
	color : #ffffff;
	background : #dc5b81;
}

.footer-contact-text {
	font-size : 18px;
	font-weight : 300;
	margin-top : 42px;
	margin-bottom : 5px;
	color : #80c2c1;
}

.footer-contact-mail {
	font-size : 18px;
	font-weight : 300;
	display : block;
	margin-bottom : 16px;
	color : #dc5b81;
}

.footer-contact-mail:hover {
	color : #dc5b81;
}

.footer-contact-phone {
	font-size : 28px;
	font-weight : 300;
	color : #dc5b81 !important;
}

.social-icons li {
	display : inline-block;
	list-style : none;
}

.social-icons {
	margin : 25px 0 12px;
	padding : 0;
}

.social-icons li a {
	font-size : 16px;
	line-height : 40px;
	width : 40px;
	height : 40px;
	margin : 0 5px;
	transition : all .4s ease;
	color : #ffffff;
	border-radius : 100%;
}

.social-icons .fa-facebook {
	background : #5b80c5;
}

.social-icons .fa-twitter {
	background : #5ac4ca;
}

.social-icons .fa-instagram {
	background : #e859a2;
}

.social-icons li a:hover {
	text-decoration : none;
	opacity : .8;
}

.site-info {
	padding : 20px;
	text-align : center;
	color : #80c2c1;
}

/*--------------------------------------------------------------
## Instagram
--------------------------------------------------------------*/

#sb_instagram .sb_instagram_header {
    margin: 0;
}


.sb_instagram_error {
    display: none;
}

#sb_instagram .sbi_photo {
    position: relative;
}

#sb_instagram .sbi_photo:after {
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content:
    "\f16d";
    color: #fff;
    text-align: center;
    width: 100%;
    font-size: 36px;
    display: none;
}

#sb_instagram .sbi_photo:hover:after {
    display: block;
}

/*--------------------------------------------------------------
# Viewport
--------------------------------------------------------------*/

@media screen and (max-width: 1300px) {
	.splash p {
		font-size : 14px;
	}

	.splash h2 {
		font-size : 50px;
		margin : 5px 0 10px;
	}
}

@media screen and (max-width: 1240px) {
	#bf_featured_image img {
		max-width : 1920px;
		height : 395px;
		margin-left : 50%;
		transform : translateX(-50%);
	}
}

@media screen and (max-width: 1200px) {
	.bf_header_icon {
		width : 180px;
	}

	.bf_header_couple_image {
		width : 120px;
	}

	.site-title a {
		font-size : 40px;
	}
}

@media screen and (max-width: 1080px) {
	.splash {
		position : relative;
		bottom : auto;
		padding : 4% 20px;
	}

	.splash h2 {
		font-size : 70px;
		color : #dc5b81;
	}

	.splash p {
		font-size : 20px;
	}
}

@media screen and (max-width: 991px) {
	.bf_no_float_xs {
		float : none !important;
	}
}

@media screen and (max-width: 782px) {
	.admin-bar .main-navigation.affix {
		top: 42px;
	}
}

@media screen and (max-width: 780px) {
	.timeline-inner:before {
		content : none;
	}
	.timeline-inner .text-right {
		text-align : left;
	}

	.timeline-inner div {
	    background: none !important;
	}

	.people {
		background : none !important;
	}

	.people .white-text .textwidget {
		color : #80c2c1;
	}

@media screen and (max-width: 767px) {
	#bf_slideshow {
		overflow : hidden;
	}

	#bf_slideshow img {
		max-width : 883px;
		height : 400px;
		margin-left : 50%;
		transform : translateX(-50%);
	}

	#venue ,
	#rsvp {
		padding : 14% 0;
	}

	.comment-list .children {
	    margin-left: 0;
	}
}

@media screen and (max-width: 680px) {
	.md-site-title {
		display : none !important;
	}

	.xs-site-title {
		display : block !important;
		padding : 22px 20px;
	}

	.bf_scrolldown {
		display : none;
	}
}

@media screen and (max-width: 600px) {
	.admin-bar .main-navigation.affix {
		top: 0;
	}
}

@media screen and (max-width: 599px) {
	.page-template-default .bf_header_icon ,
	.blog .bf_header_icon ,
	.single .bf_header_icon ,
	.archive .bf_header_icon ,
	.search .bf_header_icon ,
	.error404 .bf_header_icon {
		margin-top : 65px;
	}

	.menu-toggle ,
	.menu-toggle:hover,
	.menu-toggle:focus {
		padding: 12px 20px;
	    text-indent: -9999px;
	    outline: solid 1px #dc5b81;
	    outline-offset: -5px;
		background : url(../images/hamburger-menu-icon.png) no-repeat center;
	}

	.main-navigation .menu li {
		display : block;
		text-align : left;
	}

	.main-navigation .menu {
		background : #f4f4f4;
	}

	.main-navigation .menu li ul {
		background : #80c2c1;
	}

	.main-navigation .sub-menu {
		position : relative;
		top : 0;
		left : 0;
		display : block;
		float : none;
		max-width : 100%;
		margin : 0 !important;
		padding-left : 10px;
		box-shadow : none;
	}

	.main-navigation .sub-menu a {
		background : #80c2c1;
	}

	.main-navigation ul ul a {
		width : 100%;
	}

	.main-navigation ul ul li:hover > ul ,
	.main-navigation ul ul li.focus > ul {
		left : 0;
	}

	.post-navigation .nav-previous ,
	.post-navigation .nav-next,
	.posts-navigation .nav-previous ,
	.posts-navigation .nav-next {
		display : block;
		float : none;
		margin : 0 auto 25px;
		text-align : center;
	}
}
