/* CSS Document */


/* font */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500&display=swap');

/* preloader */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-flow: row nowrap;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fefefe;
}
.preloader-white {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-flow: row nowrap;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
}
.mainpreloader {
	position: relative;
	animation: rotate 1s infinite linear;
	border: 3px solid rgba(0, 0, 0, .1);
	width: 40px;
	height: 40px;
	margin-right: -24px;
	border-radius: 999px;
}
.mainpreloader span {
	position: absolute;
	width: 40px;
	height: 40px;
	border: 3px solid transparent;
	border-top: 3px solid #ff8383;
	top: -3px;
	left: -3px;
	border-radius: 999px;
}
@-webkit-keyframes rotate {
	0% {
	-webkit-transform: rotate(0deg);
	}
	100% {
	-webkit-transform: rotate(360deg);
	}
}
@keyframes rotate {
	0% {
	transform: rotate(0deg);
	}
	100% {
	transform: rotate(360deg);
	}
}
.logo-preloader {
	animation: fadeimg 1s infinite linear;
}
@-webkit-keyframes fadeimg {
	0% {
	opacity: 1;
	}
	50% {
	opacity: 0.6;
	}
	100% {
	opacity: 1;
	}
}
@keyframes fadeimg {
	0% {
	opacity: 1;
	}
	50% {
	opacity: 0.6;
	}
	100% {
	opacity: 1;
	}
}
.bg-preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #fefefe;
	z-index: 9999;
}
/* end preloader */

/* general */
body {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 300;
	background: #fff;
	color: #6f6f6f;
	font-size: 14px;
	letter-spacing: .3px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


h2, h4,
.h2, .h4 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

h2, .h2 {
  font-size: 30px;
}

h4, .h4 {
	padding-top:40px;
	font-size: 18px;
}

h5, .h5 {
	padding-top:40px;
	padding-bottom: 20px;
	font-size: 20px;
	color: #FF2400 !important;
}

p{
	margin-bottom: .5rem;
}
section {
	position: relative;
	background: #fff;
	padding: 14vh 0;
}

.latin{
	font-family: 'Playfair Display', serif;
}
.latin.black, .black{
	color: #010101;
}
.pinkcolor{
	color: #ff9b9b;
}
.light-pink{
	color:#fbb;
}
.gray{
	color: #ddd;
}
small{
	font-size: 90%;
}
.p-3-vh {
	display: flex;
	justify-content: space-between;
	padding-left: 7%;
	padding-right: 7%;
}

.centered {
	display: flex;
	align-items: center;
	justify-content: center;
}
.nomargin{
	padding: 0px;
}
.ornamentheading{
	margin-bottom: 1.5rem;
}
.ornamentheading::before{
	content: "~";
	margin-right: 5px;
}
.ornamentheading::after{
	content: "~";
	margin-left: 5px;
}
.ornamentline{
	text-align: center;
	position: relative;
	z-index: 9;
}
.ornamentline::after{
	content: "";
	display: block;
	background-image: url(../img/leaf.png);
	position: relative;
	background-attachment: relative;
	background-size: cover;
	background-position: top right;
	width: 104px;
	height: 20px;
	margin: 10px auto 15px;
}

.col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-4, .col-xs-6, .col-xs-12 {
  float: left;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-12 {
  width: 100%;
}


/* wrapper */
.content-wrapper {
	position: relative;
}
.container-fluid {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

header{
	top: 0px;
	left: 0px;
	position: fixed;
	z-index: 999;
}
header.init {
	margin-bottom: 0px;
	width: 100%;
	padding: 15px 0;
	background: rgba(0,0,0,0);
	box-shadow: 0px 10px 60px rgba(0, 0, 0, 0);
	-webkit-transition: all .5s cubic-bezier(.165, .84, .44, 1);
	-moz-transition: all .5s cubic-bezier(.165, .84, .44, 1);
	transition: all .5s cubic-bezier(.165, .84, .44, 1);
}
header.show {
	position: fixed;
	top: 0px;
	left: 0px;
	padding: 0 0;
	box-shadow: 0px 10px 60px rgba(0, 0, 0, .1);
	background: rgba(254,254,254,1) !important;
	-webkit-transition: all .5s cubic-bezier(.165, .84, .44, 1);
	-moz-transition: all .5s cubic-bezier(.165, .84, .44, 1);
	transition: all .5s cubic-bezier(.165, .84, .44, 1);
}
header.show .white nav a, header.show .menu-right .social-icons a{
	color: #626570;
}
header.show .white nav a.actived {
	color: #DE5A16 !important;
}
header.show .white nav a:hover {
	color: #DE5A16 !important;
}
header.show .white nav a.rsvp:hover{
	color: #fff !important;
	background: #ddd;
}

/*logo*/
.logo {
	position: relative;
	top: 11px;
	left: 0px;
	margin: 10px 0;
	margin: 0px;
	height: 70px;
	z-index: 2;
}
.logo img.show{
	display: none;
}
header.show img.show{
	display: block;
}
header.show img.init{
	display: none;
}

/* main menu */
.white nav {
	position: relative;
	float: right;
	top: 2px;
	z-index: 999;
}
.white nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
}
.white nav ul li {
	display: inline-block;
	margin: 0;
	margin-right: 10px;
}

.white nav a {
	color: #fff;
	display: block;
	padding: 35px 20px;
	font-size: .85rem;
	font-weight: 500;
	letter-spacing: .6px;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
}

.white nav a:hover {
	color: #DE5A16 !important;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
}
.white nav a:hover::before {
	display: inline-block;
	position: absolute;
	max-width: 25px;
	color: #fff;
	border-bottom: 2px solid rgba(255, 255, 255, 1);
	-webkit-transition: max-width 0.5s;
	-moz-transition: max-width 0.5s;
	transition: max-width 0.5s;
}
.white nav a::before {
	position: absolute;
	overflow: hidden;
	max-width: 0;
	border-bottom: 2px solid rgba(255, 255, 255, 0);
	color: #fff;
	content: attr(data-hover);
	-webkit-transition: max-width 0.5s;
	-moz-transition: max-width 0.5s;
	transition: max-width 0.5s;
	white-space: nowrap;
}
.white nav a.actived {
	color: #DE5A16 !important;
}
.white nav ul ul {
	display: none;
	position: absolute;
	top: 92px;
	color: #efefef;
}

li>a:only-child:after {
	content: '';
}
span.span-drop {
	position: relative;
	right: 0;
	top: 0;
	float: right;
	cursor: pointer;
}
span.span-drop:after {
	content: '\f107';
	font-family: 'FontAwesome';
	color: #fff;
	width: 20px;
	height: 20px;
	text-align: center;
	line-height: 20px;
	display: inline-block;
	background: #999;
}
@media (min-width: 1200px) {
span.span-drop {
	display: none;
}
}
.nav-icon{
	display: none;
}
.menu-right {
	padding: 36px 0;
}
.menu-right .social-icons{
    margin: 0;
}
.menu-right .social-icons a{
	color: #fff;
	font-size: 11pt;
}

pb {
	padding-bottom: 50px;
}
#about {
	padding: 25px;
}

#about a {
	color: #ff9b9b;
	text-decoration: underline;
}

#about a:hover {
	color: #954e4e;
	font-weight: 600;
	text-decoration: none;
}

/* subheader */
#subheader {
	color: #fff;
	overflow: hidden;
	width: 100%;
	height: 450px;
	position: relative;
	margin: 0 auto;
}
#subheader:before{
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 450px;
	background: rgba(0,0,0,.3);
	z-index: 1;
}
#subheader img{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
#subheader .breadcumbs{
	display: block;
	margin: 0 auto;
	position: relative;
	padding: 12vh 0;
	z-index: 2;
}
.topmenu #subheader .breadcumbs{
	padding: 26vh 0;
}
.breadcumbs .heading{
	width: 100%;
	font-size: calc(13pt + (26 - 14) * ((100vw - 300px)/(1600 - 300)));
	font-weight: 500;
	text-align: center;
	letter-spacing: .2em;
	text-transform: uppercase;
}
.breadcumbs .heading:after{
	content: "";
	display: block;
	width: 4rem;
	height: .2rem;
	background: #fff;
	margin: 10px auto 22px;
}
.breadcumbs .content{
	text-align: center;
	font-size: 11px;
	text-transform: uppercase;
	line-height: normal;
	letter-spacing: .2em;
	font-weight: 400;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 1;
}
.breadcumbs .content a{
	color: #ddd;
	text-decoration: none;
	margin-right: 1em;
}
.breadcumbs .content span{
	color: #fff;
	margin-left: 1em;
} 

/* homestatic */
#homestatic {
	color: #fff;
	overflow: hidden;
	width: 100%;
	height: auto;
	position: relative;
}
#homestatic.vh{
	height: 100vh;
}
#homestatic.fullheight .wraphomestatic{
	padding: 24vh 0;
}
#homestatic::before{
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.2);
	z-index: 1;
}
#homestatic img{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.homestatic{
	display: block;
	margin: 0 auto;
	position: relative;
	border-radius: 50%;
	overflow: hidden;
	z-index: 2;
	width: 300px;
	height: 300px;
}
.homestatictext {
	width: 100%;
	text-align: center;
	position: relative;
	margin-top: 30px;  
	z-index: 2;
}
.homestatictextbig{
	padding-top: 35px;
	color: #fff;
	font-size: 3.5rem;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: normal;
	margin-bottom: 5px;
}
.homestatictextbig span{
	margin: 0 15px;
	color: #ff8383;
}
.homestatictextsmall{
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 1px;
	width: auto;
	margin: 0 auto;
}


/* bullet points */
ul.list{
	list-style: inside;
	padding: 0px;
	text-align: left;
}
ul.list li {
	font-family: inherit;
	font-weight: 300;
	padding-left: 40px;
}


ul.list li a:hover {
	color: #d98e81 !important;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
	text-decoration: underline;
}

.social-icons{
	display: block;
	font-size: 14px;
	color: #626570;
	margin: 15px auto;
}
.social-icons a{
	margin-right: 15px;
	color: #626570;
	-webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
	-moz-transition: all .3s cubic-bezier(.165, .84, .44, 1);
	transition: all .3s cubic-bezier(.165, .84, .44, 1);
}
.social-icons a:hover{
	color: #ff8383;
	-webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
	-moz-transition: all .3s cubic-bezier(.165, .84, .44, 1);
	transition: all .3s cubic-bezier(.165, .84, .44, 1);
}
.social-icons a:last-child{
	margin-right: 0px;
}

/* text click to review info */
.content{
	position: absolute;
	top: 10%;
	left: 10%;
	width: 80%;
	height: 75%;
	text-align: left;
	opacity: 0;
	-moz-transition: opacity .1s ease-in-out;
	-ms-transition: opacity .1s ease-in-out;
	-o-transition: opacity .1s ease-in-out;
	transition: opacity .1s ease-in-out;
}
.topcontent{
	font-size: 13px;
	color: #fff;
	font-weight: 500;
}
.botcontent{
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 3vh 0;
	font-size: calc(.8rem + (1 - .73) * ((100vw - 300px)/(1600 - 300)));
	font-weight: 400;
}
.botcontent span{
	margin-top: 0px;
	padding-left: 0px;
}


/* footer */
section.gray{
	font-size: 15px;
	background-image: url(../img/cakeimage.jpg);
	color: #fff;
	overflow: hidden;
	position: relative;
	background-attachment: relative;
	background-size: cover;
	background-position: top right;
	height: 275px;
}
section.gray::before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 250px;
	background: rgba(0,0,0,.3);
	z-index: 1;
}
section.gray .container-fluid{
	position: relative;
	z-index: 2;
}

section.gray .serperator{
	display: block;
	width: 100%;
	height: 1px;
	background: rgba(255,255,255,.3);
	margin: 1.5rem 4vw;
	margin-bottom: 0px;
}

.footer {
	position: relative;
	padding: 0;
	font-size: .8rem;
	font-weight: 400;
	background-color: #ff9b9b;
	color: #fff;
}
.footer a.footer_link {
	font-size: .8rem;
	color: #fff !important;
	text-decoration: none;
}
.footer a.footer_link:hover {
	font-size: .8rem;
	color: #d98e81;
	text-decoration: underline;
}
/* totop */
#totop {
	width: 35px;
	height: 35px;
	font-size: 10pt;
	color: #fff;
	background: #ff8383;
	line-height: 32px;
	position: fixed;
	right: 15px;
	text-align: center;
	cursor: pointer;
	z-index: 9;
	-webkit-border-radius: 2%;
	-moz-border-radius: 2%;
	-ms-border-radius: 2%;
	-o-border-radius: 2%;
	border-radius: 2%;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#totop.init {
	bottom: -100px;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#totop.show {
	bottom: 10px;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#totop:hover {
	background: #999;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
/* totop end */