*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

html, body {
	height: 100%;
	width: 100%;
	background: #000;
	font-family: "Manrope", sans-serif;
	color: #fff;
}

.overlay {
	position: fixed;
	top: -100vh;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9;
	transition: all 0.2s;
	opacity: 0;
}
	.overlay.active {
		top: 0;
		opacity: 1;
	}
	.overlay .modal {
		background: #fff;
		color: #333;
		border-radius: 15px;
		width: 90%;
		max-width: 400px;
		padding: 15px;
		display: none;
	}
	.overlay .modal.active {
		display: block;
	}
	.overlay .modal h5 {
		font-family: 'valueplusbold';
		font-size: 22px;
		text-align: center;
	}
	.overlay .modal table {
		width: 100%;
		margin: 0;
	}
	.overlay .modal table td,
	.overlay .modal table th {
		padding: 8px;
		font-size: 13px;
		line-height: 1.2em;
	}
	.overlay .modal table th {
		background: #bd9c67;
		color: #fff;
	}
	.overlay .modal table tr:nth-child(odd) td {
		background: rgba(0,0,0,0.08);
	}

.bg-gold {
	background-color: #bd9c67;
}

.u-text-center {
	text-align: center;
}

.container {
	max-width: 750px;
}

.badge {
	display: inline-block;
	padding: 8px 12px;
	text-transform: uppercase;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
}
	.badge.white {
		background: #f0f0f0;
		color: #333;
	}

h1 {
	font-family: 'valueplusreg', serif;
	font-weight: 500;
	letter-spacing: -1px;
	text-transform: uppercase;
	font-size: 55px;
}
h2 {
	font-family: 'valueplusreg', serif;
	font-weight: 500;
	text-transform: capitalize;
	font-size: 38px;
	letter-spacing: 0;
}
h3 {
	font-family: 'valueplusreg', serif;
	text-transform: uppercase;	
	letter-spacing: 0;
	font-weight: 500;
	font-size: 30px;
}
h4 {
	font-family: 'valueplusreg', serif;
	letter-spacing: 0;
	font-weight: 500;
	font-size: 24px;
	text-transform: capitalize;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
	font-size: 18px;
	display: block;
	margin: 8px 0 0;
	font-family: "Manrope", sans-serif;
	letter-spacing: 0;
	font-weight: 600;
	letter-spacing: 1px;
}

.button {
	border: none;
  display: block;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  height: 45px;
  line-height: 45px;
  min-width: 160px;
  border-radius: 5px;
  transition: all 0.2s;
  height: auto;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
	.button.smaller {
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
	.button.inline {
		display: inline-block !important;
	  width: auto !important;
	  margin: 0 auto;
	}
	.button.turquiose {
		background: #a4b7b3;
  	color: #fff !important;
	}
	.button.gold-reverse {
		border: solid 1px #bd9c67;
		background: none;
		color: #bd9c67;
	}
		.button.gold-reverse:hover {
			background: #bd9c67;
			color: #fff;
			transition: all 0.1s;
		}


#glyph {
	width: 100%;
	max-width: 60px;
	display: block;
	margin: 0 auto 30px;
}

.section {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
	.section.fullscreen {
		width: 100%;
		min-height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0;
	}
	.section.home:after {
		content: "";
		width: 100%;
		height: 100%;
		background: #000;
		opacity: 0.4;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}
	.section.home #logo {
		width: 100%;
		max-width: 550px;
		margin: 20px auto 20px;
		display: block;
		position: relative;
		z-index: 2;
	}
	.section.home h5 {
		font-family: 'Playfair Display', serif;
		text-transform: none;
		font-size: 18px;
		background: #bd9c67;
		color: #121b34;
		max-width: 350px;
		margin: 0 auto;
		padding: 8px 0;
		border-radius: 5px;
	}
	.date {
		display: block;
		color: #bd9c67;
	}

.section {
	padding: 60px 40px;
}

.section.black {
	background: #111;
	color: #bd9c67;
}
	.section.black a {
		color: #bd9c67;
	}
.section.white {
	background: #f9f9f9;
	color: #111;
}
.section.gold {
	background: #bd9c67;
	color: #111;
}

.inclusion {
	background: #bd9c67;
	padding: 20px;
	margin: -150px auto 40px;
	width: 90%;
	max-width: 1024px;
	border-radius: 15px;
	-webkit-box-shadow: 0px 11px 24px 0px rgba(0,0,0,0.3); 
	box-shadow: 0px 11px 24px 0px rgba(0,0,0,0.3);
}
.inclusion ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	max-width: 700px;
	margin: 0 auto;
}
	.inclusion ul li {
		width: 50%;
		text-align: left;
		list-style-position: outside;
		list-style: square;
		margin: 0 0 15px;
		padding: 0 25px 0 0;
	}

.section.itinerary {
	padding: 0;
}
	.section.itinerary h3 span {
		text-transform: uppercase;
		margin: 5px 0 25px;
	}
	.itinerary .details {
		width: 100%;
		height: 100%;
	}
	.details .columns {
		position: relative;
		margin: 0;
		width: 100%;
	}
	.bg-day {
		background-size: cover;
		background-position: center;
		width: 100%;
		height: 250px;
		border-radius: 15px;
	}
	.details .detail {
		width: 100%;
		position: relative;
		padding: 10px 0 20px;
	}
	.details .detail:after {
		content: "";
		width: 2px;
		height: 50px;
		border-right: dotted 3px #bd9c67;
		position: relative;
		bottom: 20px;
		left: 50%;
		margin: 0 0 0 -1px;
		display: table;
	}
	.details .detail h3 {
		text-transform: capitalize;
		margin: 20px 0 15px;
	}
	.details .detail:last-child:after {
		display: none;
	}

.section.accommodation {
	position: relative;
}
	.section.accommodation:after {
		content: "";
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.7);
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}
	.section.accommodation .container {
		position: relative;
		z-index: 2;
	}
	.section.accommodation .columns {
		margin: 0 10px 0 0;
		width: calc(50% - 10px);
		background-size: cover; 
	}

.section.registration {
	position: relative;
	color: #bd9c67;
	text-align: center;
}
	.section.registration:after {
		content: "";
		width: 100%;
		height: 100%;
		background: rgba(255,255,255,0.6);
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}
	.section.registration .container {
		position: relative;
		z-index: 2;
	}

.footer {
	font-size: 12px;
	font-weight: 600;
	padding: 10px;
}
	.footer span {
		margin: 0 5px;
	}

@media (max-width: 800px) {
	h1 {
		font-size: 35px !important;
	}
	h5 {
		font-size: 18px;
		line-height: 1.2em;
	}
	.section {
		padding: 40px 0;
	}
	.inclusion ul li {
		width: 100%;
	}
	.section.accommodation .columns {
		width: 100%;
		margin-bottom: 25px;
	}
	.bg-day {
		background-position: right center;
	}
	.footer {
		padding: 25px 10px;
	}
		.footer span {
			display: block;
		}
}

