:root{
  --linen: #F9F6F2;
  --umber: #85573A;
  /*--rose: #B88E95;*//* 4.49903:1 contrast ratio with 'bistre' */
  --rose: #BB8D93;/* 4.5:1 contrast ratio with 'bistre' */
  --silver: #BEB6AC;
  --arctic: #CCDCE3;
  --sand: #E4D4C8;
  --bistre: #3D2F25;

  --primary: var(--arctic);
  --secondary: var(--umber);
  --light: var(--linen);

  --body-color: var(--bistre);
  --link-color: var(--umber);
  --link-hover-color: var(--body-color);

  --nav-link-color: var(--bistre);

  --font-family-sans-serif: "Urbanist", sans-serif;
  --font-family-serif: "Merriweather", serif;
}

*,.reset,.reset *{
	margin:0;
  padding: 0;
  border:none;
	outline:none;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
html, body{
  height: 100%;
}
body {
	font-family: var(--font-family-sans-serif);
	color: var(--body-color);
	background:var(--primary);
}
body.splash{
	background:#E2D7C2;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 50px 0;
}
.splash .container{
  width: 100%;
}
h1{
  font-family: var(--font-family-serif);
	font-weight: 400;/*Regular*/
	font-size: 1.75rem;
	line-height: 1.2em;
	color: var(--bistre);
	background: var(--arctic);
	margin: -20px -20px 22px;
	padding: 20px 18px 20px 22px;
	position:relative;
}
h1 a{
  color:inherit;
  text-decoration:none;
}
h2{
	font-family: var(--font-family-serif);
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1.4em;
	margin-bottom: .5em;
}
p+h2, ul+h2{
	margin-top:1.4em;
}
h3{
  text-transform: uppercase;
	font-weight: 400;
	font-size: 1.375rem;
	line-height: 1.4em;
  color: var(--secondary);
	margin-bottom: 1rem;
}
p, ul{
	line-height: 1.5;
}
p:not(:last-child),
ul:not(:last-child){
	margin-bottom:1em;
}
figure{
	margin-bottom:1rem;
}

.big, .lead{
	font-size:1.25rem;
	margin:1.5em 0;
}

p.msg{
	margin-top:40px;
	padding:20px;
	color:#FFF;
	background:#68B40E;
	font-weight:300;
	border-radius:8px;
}
p.msg.error{
	background:#F00;
}
ul{
	margin-left:30px;
}
ul.features{
	color: var(--umber);
	margin-left:0;
	list-style:none;
}
ul.features li{
	padding: 0;
	margin-bottom:.4em;
  margin-left: 20px;
}
ul.features li:before{
  content: "\f058";
  font-family: FontAwesome;
  width: 20px;
  display: inline-block;
  margin-left: -20px;
}

a{
	color: var(--link-color);
}
a:hover{
	color: var(--link-hover-color);
}
a[href^="tel"]{
	white-space:nowrap;
}

.clear{
	clear:both;
}

img{
	max-width:100%;
	height:auto;
  vertical-align: middle;
}
img.alignright{
  float: right;
  margin-left: 20px;
}
img.alignleft{
  float: left;
  margin-right: 20px;
}

/*BUTTONS*/
.btn{
	background: var(--primary);
	color:var(--bistre) !important;
	text-transform:uppercase;
	text-decoration:none;
	line-height: 1.5;
	padding:4px 16px;
	display:inline-block;
	border-radius: 50rem;
	text-align:center;
  transition: opacity 400ms;
	cursor:pointer;
  font-size: 1rem;/*Needed for form input/submit buttons*/
}

.btn-primary{
	background: var(--primary);
	color: var(--bistre) !important;
}

.btn-secondary{
	background: var(--secondary);
	color: var(--linen) !important;
}

.btn:hover{
	opacity:.8;
}

.btn.white{
	/*color:#2397AF !important;*/
	color: #05829A !important;/*Accessible color*/
	background: #FFF;
	/*text-shadow: none;*/
	opacity:1 !important;
}
.btn.white:hover{
	box-shadow:0 2px 2px rgba(0,0,0,.2);
}
.btn.white:active{
	box-shadow:inset 0 2px 2px rgba(0,0,0,.2);
}
.btn-block{
  display: block;
	width:100%;
}
.btn-list{
	margin:-3px -3px 1em;
	list-style:none;
  display: flex;
  flex-wrap: wrap;
}
.btn-list:last-child{
	margin-bottom:0;
}
.btn-list li{
	padding:3px;
}

.package .btn-list{
	margin-top:10px;
}

/*------- CONTAINER, COLUMNS-------*/
.container{
	max-width:1140px;
	margin:0 auto;
	padding:0 15px;
	position: relative;
}

.multicol, .row{
	margin:0 -15px;
}

.row{
  display: flex;
  flex-wrap: wrap;
}
.row > *{
  width: 100%;
}
.row > .col {
  flex-shrink: 0;
  flex-basis: 0;
  flex-grow: 1;
}

.multicol > .col, .row > *{
	padding:0 15px;
}
.multicol > .col{
	width:33.3333%;
	float:left;
}

.col.wide{
	width: 66.6666%;
}
.col.half{
	width: 50%;
}

.clearfix:after{
	clear:both;
	content:"";
	display:block;
}

.splash img{
  display:inline-block;
}
.splash ul{
  list-style: none;
  margin: 0;
}

.centre,
.center{
  text-align:center;
}

/*------- HEADER -------*/

header img{
  height: 60px;
  width: auto;
}
.header-btns > *:not(:first-child){
	margin-left:10px;
}

header .phone {
	font-size: 1.5rem;
}
header .phone a {
	position:relative;
	display:block;
	text-decoration:none;
}
header .phone a:before{
	content: "\f095";
  font-family: FontAwesome;
  margin-right: 8px;
}

.lang-select {
	font-size: 1.125rem;
}
.lang-select a {
	text-decoration: none;
}
.lang-select abbr {
	cursor: inherit;
  text-decoration: none;
}

ul.social{
	list-style: none;
}
ul.social li{
	float:left;
}
ul.social li:not(:first-child){
	margin-left:4px;
}
ul.social a{
  background: var(--secondary);
  color: var(--linen);
	display:block;
	width:32px;
	height:32px;
  line-height: 32px;
  text-align: center;
	overflow:hidden;
	transition: opacity 400ms;
  border-radius: 50%;
}
/*ul.social a[href*=facebook]{
	background-position:center top;
}
ul.social a[href*=twitter]{
	background-position:center -36px;
}
ul.social a[href*=google]{
	background-position:center -72px;
}*/
ul.social a:hover {
	opacity:.8;
}

label.inline{
	display:inline;
}

/*------- CONTENT AREA -------*/

#canvas {
	padding: 50px 0 75px;
}

/*Boxes*/
.box {
  --box-padding: 20px;
	padding: var(--box-padding);
}

.topImage{
	margin:calc(var(--box-padding) * -1) calc(var(--box-padding) * -1) var(--box-padding);
}
.topImage img{
	width:100%;
	height:auto;
}

hr{
  border: 0;
  height: 1px;
  background: #DBDBEA;
	margin: 30px 0;
}
hr.spacer {
  border: 0;
  height: 0px;
  background: #CCC;
	margin: 40px 0 34px 0;
}

.caption {
  padding: 7px;
  background-color: #D1ECF2;
  border: 1px solid #54B5C7;
  width: 245px;
  top: 423px;
  left: 411px;
  position: absolute;
  color: #000;
  font-weight: 400;
  text-align: center;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  z-index: 1;
}
.caption a {
	text-decoration: none;
}

/*FOOTER*/
footer {
	clear:both;
}
footer::before{
  content: "";
  border-top-left-radius: 50rem;
  border-top-right-radius: 50rem;
  background: var(--primary);
  border-bottom: 0;
  width: 200px;
  height: 100px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50px);
}
footer .footer-inner{
  background: var(--primary);
  position: relative;
  padding: 36px 0;
}
/*footer p, footer ul{
	font-size:.875rem;
}*/
footer .copyright{
	float:left;
}
footer a {
	color:var(--bistre);
	text-decoration:none;
}
footer a:hover {
	text-decoration:underline;
}
footer ul {
	margin:0 0 0 20px;
	float:right;
  position: relative;/*Make sure menu stay on top of rings*/
}
footer li {
	float:left;
	padding:0;
	background:none;
	margin:0 0 0 20px;
	list-style:none;
}

footer .rings {
	top: 50%;
	left: 50%;
	position: absolute;
  transform: translate(-50%, -50px);
}
footer .rings img{
  display: block;
}

/*WEDDING PACKAGES*/
.package{
	display:flex;
	display:-webkit-flex;
}
.package:not(:last-child){
	padding-bottom:28px;
	margin-bottom:28px;
	border-bottom:#DBDBEA 1px solid;
}
.package .price{
	float:left;
	margin-right:20px;
	font-size:1.875rem;
	text-align:center;
	line-height:normal;
	width:140px;
	height:140px;
	background:var(--sand);
	color:var(--bistre);
	text-decoration:none;
	display:flex;
	display:-webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	justify-content: center;
	-webkit-justify-content: center;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.package a.price{
  transition: opacity 400ms;
}
.package a.price:hover{
	opacity:.8;
}
.package .price del{
	font-size:1.25rem;
	opacity:.6;
}
.package .details{
	float:left;
}

.package h2{
  font-family: var(--font-family-sans-serif);
	font-size:1.25rem;
	font-style:normal;
	margin:0 0 4px;
	line-height: 1.2em;
}
.package h2 a{
	text-decoration:none;
}
.package h2 a:hover{
	text-decoration:underline;
}
.package p{
	margin:0;
}
.packages{
	margin:0;
	line-height: 1.35em;
}
.packages li{
	list-style:none;
}
.packages li:not(:last-child){
	border-bottom: 1px solid var(--umber);
}

.packages a{
	text-decoration:none;
	padding:12px 0;
	display:flex;
	display:-webkit-flex;
	align-items: center;
	-webkit-align-items: center;
}
.packages span{
	float:left;
	margin-right:12px;
	width:40px;
	height:40px;
	font-size:.875rem;
	background: var(--arctic);
	color:var(--body-color);
	text-align:center;
  transition: opacity 400ms;
	display:flex;
	display:-webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	justify-content: center;
	-webkit-justify-content: center;
	flex-shrink:0;
	-webkit-flex-shrink:0;
	line-height: 1em;
}
.packages span del{
	opacity:.6;
}
.packages a:hover span{
	opacity:.8;
}

.pkgDetails{
	padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: #DBDBEA 1px solid;
	display:flex;
	display:-webkit-flex;
	align-items: center;
	-webkit-align-items:center;
}
.pkgDetails p{
	margin:0;
	font-size:1.25rem;
	color: #2397AF;
}
.pkgDetails .price del{
	font-size:1.25rem;
	margin-right:6px;
	opacity:.6;
}

/*------- MAKE GOOGLE MAP RESPONSIVE -------*/
.map {
	position: relative;
	padding-bottom: 50%;/*This is the aspect ratio*/
	height:0;
	overflow: hidden;
	/*margin-bottom:30px;*/
}
.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

/*------- VIRTUAL TOUR -------*/
.floatRight{
	float:right;
	width:40%;
	margin:0 0 20px 20px;
}
.floatRight img{
	width:100%;
	height:auto;
}
.floatRight .button{
	width:100%;
	border-radius:0 0 4px 4px;
}

.border{
	border-radius: 8px;
	border: 4px solid #EEE;
	overflow:hidden;
}

.collapsable h2{
	cursor:pointer;
	font-size: 1.125rem;
	font-style: normal;
	line-height: 1.2em;
	border-top: 1px solid #DBDBEA;
	margin:0 0 14px;
	padding-top:14px;
}
.collapsable h2~p,
.collapsable h2~ul{
	display:none;
}

.input{
	background:#fff;
	display:block;
	padding: 10px 5px;
}

.info span{
  color: #6c757d;/*Accessible color*/
}

.blog-thumbnail {
	width: 28%;
	display: inline-block;
}
.blog-excerpt {
	width: 68%;
	display: inline-block;
	vertical-align: top;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
}

.text-secondary{
  color: var(--secondary);
}
.text-muted{
  color: #999;
}

.bg-primary{
  background-color: var(--primary);
}
.bg-light{
  background-color: var(--light);
}
.bg-white{
  background-color: #ffffff;
}

.d-flex{
  display: flex;
}
.d-none{
  display: none;
}

/*Large up*/
@media (min-width: 769px) {
	.shomo{
		display:none;/*hide these items on desktop*/
	}
}

/*Extra large down*/
@media (max-width: 1045px) {
	.caption {
		display: none;
	}
}

@media(max-width: 815px) {
	.col.med{
		width: 92%;
		margin: 4%;
	}

	.col.med:last-child{
		width: 92%;
		margin: 4%;
		margin-top: 0;
		margin-bottom: 0;
	}
  
  footer::before{
    display: none;
  }

	footer {
		text-align: center;
		margin-top: 0px;
	}

	footer .footerLinks {
		display: none;
	}

	footer .rings {
		display: none;
	}
}

/*Large down*/
@media(max-width: 768px) {
	.nomo{
		display:none !important;
	}
	#contentWrapper{
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
    position:absolute;
    width:100%;
    min-width:320px;
    transition: left .4s;
    -webkit-transition: left .4s;
    background-color: #1B9FBC;
	}
	#contentWrapper.hide{
    left:85%;
    position:fixed;
	}
	.multicol > .col{
		width:100% !important;
	}
	#canvas {
		padding:1.5rem 0;
	}
  .splash .col.half:first-child{
    margin-bottom:30px;
  }
	footer .copyright{
		float:none;
		text-align:center;
	}
	footer ul{
		display:none;
	}
	.package{
		display:block;
	}
	.package .price{
		float:none;
		margin-bottom:14px;
	}
	.package .price a, .package .price span{
		width:180px;
		height:50px;
		flex-direction:row;
		align-items:center;
		-webkit-flex-direction:row;
		-webkit-align-items:center;
	}
	.package .price del{
		margin-right:6px;
	}
	.menu-push {
		margin-top: 380px;
	}
}

.mb-0{
  margin-bottom: 0 !important;
}
.mb-2{
  margin-bottom: .5rem;
}
.mb-3{
  margin-bottom: 1rem;
}
.mb-4{
  margin-bottom: 1.5rem;
}
.mb-5{
  margin-bottom: 3rem;
}
.ms-4{
  margin-left: 1.5rem;
}
.mt-3{
  margin-top: 1rem;
}
.mt-4{
  margin-top: 1.5rem;
}
.mt-5{
  margin-top: 3rem;
}
.me-4{
  margin-right: 1.5rem;
}
.me-5{
  margin-right: 3rem;
}

.p-5{
  padding: 3rem;
}
.py-3{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.w-100{
  width: 100%;
}

.float-end{
  float: right;
}

.text-wrap{
  white-space:initial!important;
}
.text-nowrap{
  white-space:nowrap;
}

.justify-content-between{
  justify-content: space-between;
}
.justify-content-end{
  justify-content: end;
}
.align-items-center{
  align-items: center;
}

/* Medium up */
@media(min-width: 561px){
  .d-md-block{
    display: block;
  }
}

/* Large up */
@media(min-width: 769px){
	.sm:not(.lg),.md:not(.lg){
		display:none;
	}

	header img{
    height: 90px;
	}

  .lang-select {
    font-size: 1.375rem;
  }

  .col-lg-8{
    width: 66.6666%;
  }

  .mb-lg-0{
    margin-bottom: 0;
  }

  .py-lg-4{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .d-lg-flex{
    display: flex;
  }
  .d-lg-block{
    display: block;
  }
}

/* Medium only */
@media(min-width: 561px) and (max-width: 768px){
	.sm:not(.md), .lg:not(.md){
		display:none;
	}
}

/* Medium down */
@media(max-width: 560px){
	.md:not(.sm), .lg:not(.sm){
		display:none !important;
	}
}