@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,900");
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* =========================
   Main Colors
========================= */
:root {
	--color-red: #5d0007;
	--color-green: #083b32;
	--color-purple: #3c2446;
	--color-blue: #0c3f69;
	--color-gold: #e7b772;
	--color-light: #f3f6fa;
	--color-dark: #1c2021;
	--color-text: #333;
}

/* =========================
   Mouse Glitter Trail
========================= */
.glitter {
	position: fixed;
	width: 6px;
	height: 6px;
	background: radial-gradient(circle, #fffff0 0%, var(--jewel-color, #9b111e) 100%);
	pointer-events: none;
	border-radius: 50%;
	opacity: 1;
	z-index: 9999;
	transform: translate(-50%, -50%);
	will-change: transform, opacity;
}

/* =========================
   Sparkle Quote Section
========================= */
#cta {
    background-attachment: scroll, scroll, scroll, fixed;
    background-color: #645862;
    background-image: url("/assets/images/light-tl.svg"),
                      url("/assets/images/light-tr.svg"),
                      url("/assets/images/overlay.png"),
                      url("/assets/images/banner.jpg");
    background-position: top left, top right, top left, bottom center;
    background-repeat: no-repeat, no-repeat, repeat, no-repeat;
    background-size: 25em, 25em, auto, cover;
    color: #fff;
    padding: 5em;
    text-align: center;
    height: 80vh;
    position: relative; /* allows absolute positioning inside */
}

/* Quote overlay styling */
.quote-overlay {
    position: absolute; /* sit on top of #cta background */
    top: 50%;           /* center vertically */
    left: 50%;          /* center horizontally */
    transform: translate(-50%, -50%);
    background-color: rgba(93, 0, 7, 0.6);
    padding: 2em 8em;
    border-radius: 1em;
    max-width: 80%;
}

.quote-line {
    font-size: 1.5rem;
    margin-bottom:0;
    letter-spacing: 3px;
	text-align: center;
	line-height: 1;
}
@media screen and (max-width: 736px) {
	.quote-overlay {
		padding: 2em 1.5em;
	}
	.quote-line {
		font-size: 1rem;
	}
	.quote-sparkle {
		font-size: 4em !important;
	}	
}

.quote-sparkle {
    font-family: 'Great Vibes', cursive;
    font-size: 6rem;
    display: inline-block;
    position: relative;
    background: linear-gradient(45deg, #fdfcf7, #f5e1a4, #fdfcf7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
	margin:5px 0 0 0;
	text-transform: capitalize;
}

.quote-sparkle span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    pointer-events: none;
    animation: float 4s infinite linear;
}

.quote-sparkle span:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.quote-sparkle span:nth-child(2) { top: 30%; left: 60%; animation-delay: 1s; }
.quote-sparkle span:nth-child(3) { top: 60%; left: 40%; animation-delay: 2s; }

@keyframes float {
    0% { transform: translate(0,0) scale(0.5); opacity: 1; }
    50% { transform: translate(5px,-5px) scale(1); opacity: 0.6; }
    100% { transform: translate(-5px,5px) scale(0.5); opacity: 0; }
}


/* =========================
   Minimal Reset
========================= */
h2.section-title {
	border-top: 2px solid;
	border-bottom: 2px solid;
	margin: 0 0 2em 0;
	padding: 3px 0;
	text-transform: uppercase;
	/* optional, for consistency */
	letter-spacing: 0.1em;
	/* optional */
	text-align: center;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Helvetica', 'Arial', sans-serif;
	line-height: 1.5;
	color: #333;
	background: #fffff0;
}

img,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
}

button,
input,
select,
textarea {
	font: inherit;
}

body {
	background: #fffff0;
}

body.is-preload *,
body.is-preload *:before,
body.is-preload *:after {
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}

body,
input,
select,
textarea {
	color: #55555;
	font-family: 'Lato', sans-serif;
	font-size: 15pt;
	font-weight: 300;
	letter-spacing: 0.025em;
	line-height: 1.75em;
}

a {
	-moz-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	color: #3fb1a3;
	text-decoration: none;
	border-bottom: dotted 1px;
}

a:hover {
	border-bottom-color: transparent;
}

strong,
b {
	font-weight: 400;
}

p,
ul,
ol,
dl,
table,
blockquote {
	margin: 0 0 2em 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: inherit;
	font-weight: 300;
	line-height: 1.75em;
	margin-bottom: 1em;
	text-transform: uppercase;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
	text-decoration: none;
	border: 0;
}

h2 {
	font-size: 1.5em;
	letter-spacing: 0.1em;
}

h3 {
	font-size: 1.15em;
	letter-spacing: 0.025em;
}

sub {
	font-size: 0.8em;
	position: relative;
	top: 0.5em;
}

sup {
	font-size: 0.8em;
	position: relative;
	top: -0.5em;
}

hr {
	border-top: solid 1px rgba(124, 128, 129, 0.2);
	border: 0;
	margin-bottom: 1.5em;
}

blockquote {
	border-left: solid 0.5em rgba(124, 128, 129, 0.2);
	font-style: italic;
	padding: 1em 0 1em 2em;
}

/* Container */

.container {
	margin: 0 auto;
	max-width: 100%;
	width: 1400px;
}

/* Make sure content is still readable */
.day-info-section .wrapper {
	position: relative;
	z-index: 1;
}

.day-info-section {
	position: relative;
	/* ensures overlay can sit absolutely inside */
}

/* Overlay image over the section */
.day-info-section .overlay-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('/assets/images/gold-glitter.jpeg');
	/* your image path */
	background-size: cover;
	/* covers entire section */
	background-position: center;
	opacity: 0.5;
	/* control transparency */
	pointer-events: none;
	/* allows clicking through overlay */
	z-index: 2;
	/* sits above content if desired */
}

/* Ensure content sits above overlay */
.day-info-section .wrapper {
	position: relative;
	z-index: 3;
	/* higher than overlay */
}




.container.medium {
	width: 1050px;
}

@media screen and (max-width: 1680px) {

	.container {
		width: 1200px;
	}

	.container.medium {
		width: 900px;
	}

}

@media screen and (max-width: 1280px) {

	.container {
		width: 960px;
	}

	.container.medium {
		width: 735px;
	}

}

@media screen and (max-width: 980px) {

	.container {
		width: 95%;
	}

	.container.medium {
		width: 71.25%;
	}

}

@media screen and (max-width: 840px) {

	.container {
		width: 95%;
	}

	.container.medium {
		width: 95%;
	}

}

@media screen and (max-width: 736px) {

	.container {
		width: 100%;
	}

	.container.medium {
		width: 100%;
	}
	.quote-overlay {
		
		        padding: 2em 1.5em;
	}

}

/* Row */

.row {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	align-items: stretch;
}

.row>* {
	box-sizing: border-box;
}

.row.gtr-uniform>*> :last-child {
	margin-bottom: 0;
}

.row.aln-left {
	justify-content: flex-start;
}

.row.aln-center {
	justify-content: center;
}

.row.aln-right {
	justify-content: flex-end;
}

.row.aln-top {
	align-items: flex-start;
}

.row.aln-middle {
	align-items: center;
}

.row.aln-bottom {
	align-items: flex-end;
}

.row>.imp {
	order: -1;
}

.row>.col-1 {
	width: 8.33333%;
}

.row>.off-1 {
	margin-left: 8.33333%;
}

.row>.col-2 {
	width: 16.66667%;
}

.row>.off-2 {
	margin-left: 16.66667%;
}

.row>.col-3 {
	width: 25%;
}

.row>.off-3 {
	margin-left: 25%;
}

.row>.col-4 {
	width: 33.33333%;
}

.row>.off-4 {
	margin-left: 33.33333%;
}

.row>.col-5 {
	width: 41.66667%;
}

.row>.off-5 {
	margin-left: 41.66667%;
}

.row>.col-6 {
	width: 50%;
}

.row>.off-6 {
	margin-left: 50%;
}

.row>.col-7 {
	width: 58.33333%;
}

.row>.off-7 {
	margin-left: 58.33333%;
}

.row>.col-8 {
	width: 66.66667%;
}

.row>.off-8 {
	margin-left: 66.66667%;
}

.row>.col-9 {
	width: 75%;
}

.row>.off-9 {
	margin-left: 75%;
}

.row>.col-10 {
	width: 83.33333%;
}

.row>.off-10 {
	margin-left: 83.33333%;
}

.row>.col-11 {
	width: 91.66667%;
}

.row>.off-11 {
	margin-left: 91.66667%;
}

.row>.col-12 {
	width: 100%;
}

.row>.off-12 {
	margin-left: 100%;
}

.row.gtr-0 {
	margin-top: 0px;
	margin-left: 0px;
}

.row.gtr-0>* {
	padding: 0px 0 0 0px;
}

.row.gtr-0.gtr-uniform {
	margin-top: 0px;
}

.row.gtr-0.gtr-uniform>* {
	padding-top: 0px;
}

.row.gtr-25 {
	margin-top: -12.5px;
	margin-left: -12.5px;
}

.row.gtr-25>* {
	padding: 12.5px 0 0 12.5px;
}

.row.gtr-25.gtr-uniform {
	margin-top: -12.5px;
}

.row.gtr-25.gtr-uniform>* {
	padding-top: 12.5px;
}

.row.gtr-50 {
	margin-top: -25px;
	margin-left: -25px;
}

.row.gtr-50>* {
	padding: 25px 0 0 25px;
}

.row.gtr-50.gtr-uniform {
	margin-top: -25px;
}

.row.gtr-50.gtr-uniform>* {
	padding-top: 25px;
}

.row {
	margin-top: -50px;
	margin-left: -50px;
}

.row>* {
	padding: 50px 0 0 50px;
}

.row.gtr-uniform {
	margin-top: -50px;
}

.row.gtr-uniform>* {
	padding-top: 50px;
}

.row.gtr-150 {
	margin-top: -75px;
	margin-left: -75px;
}

.row.gtr-150>* {
	padding: 75px 0 0 75px;
}

.row.gtr-150.gtr-uniform {
	margin-top: -75px;
}

.row.gtr-150.gtr-uniform>* {
	padding-top: 75px;
}

.row.gtr-200 {
	margin-top: -100px;
	margin-left: -100px;
}

.row.gtr-200>* {
	padding: 100px 0 0 100px;
}

.row.gtr-200.gtr-uniform {
	margin-top: -100px;
}

.row.gtr-200.gtr-uniform>* {
	padding-top: 100px;
}

@media screen and (max-width: 1680px) {

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-wide {
		order: -1;
	}

	.row>.col-1-wide {
		width: 8.33333%;
	}

	.row>.off-1-wide {
		margin-left: 8.33333%;
	}

	.row>.col-2-wide {
		width: 16.66667%;
	}

	.row>.off-2-wide {
		margin-left: 16.66667%;
	}

	.row>.col-3-wide {
		width: 25%;
	}

	.row>.off-3-wide {
		margin-left: 25%;
	}

	.row>.col-4-wide {
		width: 33.33333%;
	}

	.row>.off-4-wide {
		margin-left: 33.33333%;
	}

	.row>.col-5-wide {
		width: 41.66667%;
	}

	.row>.off-5-wide {
		margin-left: 41.66667%;
	}

	.row>.col-6-wide {
		width: 50%;
	}

	.row>.off-6-wide {
		margin-left: 50%;
	}

	.row>.col-7-wide {
		width: 58.33333%;
	}

	.row>.off-7-wide {
		margin-left: 58.33333%;
	}

	.row>.col-8-wide {
		width: 66.66667%;
	}

	.row>.off-8-wide {
		margin-left: 66.66667%;
	}

	.row>.col-9-wide {
		width: 75%;
	}

	.row>.off-9-wide {
		margin-left: 75%;
	}

	.row>.col-10-wide {
		width: 83.33333%;
	}

	.row>.off-10-wide {
		margin-left: 83.33333%;
	}

	.row>.col-11-wide {
		width: 91.66667%;
	}

	.row>.off-11-wide {
		margin-left: 91.66667%;
	}

	.row>.col-12-wide {
		width: 100%;
	}

	.row>.off-12-wide {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0px;
		margin-left: 0px;
	}

	.row.gtr-0>* {
		padding: 0px 0 0 0px;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0px;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0px;
	}

	.row.gtr-25 {
		margin-top: -10px;
		margin-left: -10px;
	}

	.row.gtr-25>* {
		padding: 10px 0 0 10px;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -10px;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 10px;
	}

	.row.gtr-50 {
		margin-top: -20px;
		margin-left: -20px;
	}

	.row.gtr-50>* {
		padding: 20px 0 0 20px;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -20px;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 20px;
	}

	.row {
		margin-top: -40px;
		margin-left: -40px;
	}

	.row>* {
		padding: 40px 0 0 40px;
	}

	.row.gtr-uniform {
		margin-top: -40px;
	}

	.row.gtr-uniform>* {
		padding-top: 40px;
	}

	.row.gtr-150 {
		margin-top: -60px;
		margin-left: -60px;
	}

	.row.gtr-150>* {
		padding: 60px 0 0 60px;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -60px;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 60px;
	}

	.row.gtr-200 {
		margin-top: -80px;
		margin-left: -80px;
	}

	.row.gtr-200>* {
		padding: 80px 0 0 80px;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -80px;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 80px;
	}

}

@media screen and (max-width: 1280px) {

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-normal {
		order: -1;
	}

	.row>.col-1-normal {
		width: 8.33333%;
	}

	.row>.off-1-normal {
		margin-left: 8.33333%;
	}

	.row>.col-2-normal {
		width: 16.66667%;
	}

	.row>.off-2-normal {
		margin-left: 16.66667%;
	}

	.row>.col-3-normal {
		width: 25%;
	}

	.row>.off-3-normal {
		margin-left: 25%;
	}

	.row>.col-4-normal {
		width: 33.33333%;
	}

	.row>.off-4-normal {
		margin-left: 33.33333%;
	}

	.row>.col-5-normal {
		width: 41.66667%;
	}

	.row>.off-5-normal {
		margin-left: 41.66667%;
	}

	.row>.col-6-normal {
		width: 50%;
	}

	.row>.off-6-normal {
		margin-left: 50%;
	}

	.row>.col-7-normal {
		width: 58.33333%;
	}

	.row>.off-7-normal {
		margin-left: 58.33333%;
	}

	.row>.col-8-normal {
		width: 66.66667%;
	}

	.row>.off-8-normal {
		margin-left: 66.66667%;
	}

	.row>.col-9-normal {
		width: 75%;
	}

	.row>.off-9-normal {
		margin-left: 75%;
	}

	.row>.col-10-normal {
		width: 83.33333%;
	}

	.row>.off-10-normal {
		margin-left: 83.33333%;
	}

	.row>.col-11-normal {
		width: 91.66667%;
	}

	.row>.off-11-normal {
		margin-left: 91.66667%;
	}

	.row>.col-12-normal {
		width: 100%;
	}

	.row>.off-12-normal {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0px;
		margin-left: 0px;
	}

	.row.gtr-0>* {
		padding: 0px 0 0 0px;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0px;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0px;
	}

	.row.gtr-25 {
		margin-top: -10px;
		margin-left: -10px;
	}

	.row.gtr-25>* {
		padding: 10px 0 0 10px;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -10px;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 10px;
	}

	.row.gtr-50 {
		margin-top: -20px;
		margin-left: -20px;
	}

	.row.gtr-50>* {
		padding: 20px 0 0 20px;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -20px;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 20px;
	}

	.row {
		margin-top: -40px;
		margin-left: -40px;
	}

	.row>* {
		padding: 40px 0 0 40px;
	}

	.row.gtr-uniform {
		margin-top: -40px;
	}

	.row.gtr-uniform>* {
		padding-top: 40px;
	}

	.row.gtr-150 {
		margin-top: -60px;
		margin-left: -60px;
	}

	.row.gtr-150>* {
		padding: 60px 0 0 60px;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -60px;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 60px;
	}

	.row.gtr-200 {
		margin-top: -80px;
		margin-left: -80px;
	}

	.row.gtr-200>* {
		padding: 80px 0 0 80px;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -80px;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 80px;
	}

}

@media screen and (max-width: 980px) {

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-narrow {
		order: -1;
	}

	.row>.col-1-narrow {
		width: 8.33333%;
	}

	.row>.off-1-narrow {
		margin-left: 8.33333%;
	}

	.row>.col-2-narrow {
		width: 16.66667%;
	}

	.row>.off-2-narrow {
		margin-left: 16.66667%;
	}

	.row>.col-3-narrow {
		width: 25%;
	}

	.row>.off-3-narrow {
		margin-left: 25%;
	}

	.row>.col-4-narrow {
		width: 33.33333%;
	}

	.row>.off-4-narrow {
		margin-left: 33.33333%;
	}

	.row>.col-5-narrow {
		width: 41.66667%;
	}

	.row>.off-5-narrow {
		margin-left: 41.66667%;
	}

	.row>.col-6-narrow {
		width: 50%;
	}

	.row>.off-6-narrow {
		margin-left: 50%;
	}

	.row>.col-7-narrow {
		width: 58.33333%;
	}

	.row>.off-7-narrow {
		margin-left: 58.33333%;
	}

	.row>.col-8-narrow {
		width: 66.66667%;
	}

	.row>.off-8-narrow {
		margin-left: 66.66667%;
	}

	.row>.col-9-narrow {
		width: 75%;
	}

	.row>.off-9-narrow {
		margin-left: 75%;
	}

	.row>.col-10-narrow {
		width: 83.33333%;
	}

	.row>.off-10-narrow {
		margin-left: 83.33333%;
	}

	.row>.col-11-narrow {
		width: 91.66667%;
	}

	.row>.off-11-narrow {
		margin-left: 91.66667%;
	}

	.row>.col-12-narrow {
		width: 100%;
	}

	.row>.off-12-narrow {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0px;
		margin-left: 0px;
	}

	.row.gtr-0>* {
		padding: 0px 0 0 0px;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0px;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0px;
	}

	.row.gtr-25 {
		margin-top: -7.5px;
		margin-left: -7.5px;
	}

	.row.gtr-25>* {
		padding: 7.5px 0 0 7.5px;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -7.5px;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 7.5px;
	}

	.row.gtr-50 {
		margin-top: -15px;
		margin-left: -15px;
	}

	.row.gtr-50>* {
		padding: 15px 0 0 15px;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -15px;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 15px;
	}

	.row {
		margin-top: -30px;
		margin-left: -30px;
	}

	.row>* {
		padding: 30px 0 0 30px;
	}

	.row.gtr-uniform {
		margin-top: -30px;
	}

	.row.gtr-uniform>* {
		padding-top: 30px;
	}

	.row.gtr-150 {
		margin-top: -45px;
		margin-left: -45px;
	}

	.row.gtr-150>* {
		padding: 45px 0 0 45px;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -45px;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 45px;
	}

	.row.gtr-200 {
		margin-top: -60px;
		margin-left: -60px;
	}

	.row.gtr-200>* {
		padding: 60px 0 0 60px;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -60px;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 60px;
	}

}

@media screen and (max-width: 840px) {

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-narrower {
		order: -1;
	}

	.row>.col-1-narrower {
		width: 8.33333%;
	}

	.row>.off-1-narrower {
		margin-left: 8.33333%;
	}

	.row>.col-2-narrower {
		width: 16.66667%;
	}

	.row>.off-2-narrower {
		margin-left: 16.66667%;
	}

	.row>.col-3-narrower {
		width: 25%;
	}

	.row>.off-3-narrower {
		margin-left: 25%;
	}

	.row>.col-4-narrower {
		width: 33.33333%;
	}

	.row>.off-4-narrower {
		margin-left: 33.33333%;
	}

	.row>.col-5-narrower {
		width: 41.66667%;
	}

	.row>.off-5-narrower {
		margin-left: 41.66667%;
	}

	.row>.col-6-narrower {
		width: 50%;
	}

	.row>.off-6-narrower {
		margin-left: 50%;
	}

	.row>.col-7-narrower {
		width: 58.33333%;
	}

	.row>.off-7-narrower {
		margin-left: 58.33333%;
	}

	.row>.col-8-narrower {
		width: 66.66667%;
	}

	.row>.off-8-narrower {
		margin-left: 66.66667%;
	}

	.row>.col-9-narrower {
		width: 75%;
	}

	.row>.off-9-narrower {
		margin-left: 75%;
	}

	.row>.col-10-narrower {
		width: 83.33333%;
	}

	.row>.off-10-narrower {
		margin-left: 83.33333%;
	}

	.row>.col-11-narrower {
		width: 91.66667%;
	}

	.row>.off-11-narrower {
		margin-left: 91.66667%;
	}

	.row>.col-12-narrower {
		width: 100%;
	}

	.row>.off-12-narrower {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0px;
		margin-left: 0px;
	}

	.row.gtr-0>* {
		padding: 0px 0 0 0px;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0px;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0px;
	}

	.row.gtr-25 {
		margin-top: -7.5px;
		margin-left: -7.5px;
	}

	.row.gtr-25>* {
		padding: 7.5px 0 0 7.5px;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -7.5px;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 7.5px;
	}

	.row.gtr-50 {
		margin-top: -15px;
		margin-left: -15px;
	}

	.row.gtr-50>* {
		padding: 15px 0 0 15px;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -15px;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 15px;
	}

	.row {
		margin-top: -30px;
		margin-left: -30px;
	}

	.row>* {
		padding: 30px 0 0 30px;
	}

	.row.gtr-uniform {
		margin-top: -30px;
	}

	.row.gtr-uniform>* {
		padding-top: 30px;
	}

	.row.gtr-150 {
		margin-top: -45px;
		margin-left: -45px;
	}

	.row.gtr-150>* {
		padding: 45px 0 0 45px;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -45px;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 45px;
	}

	.row.gtr-200 {
		margin-top: -60px;
		margin-left: -60px;
	}

	.row.gtr-200>* {
		padding: 60px 0 0 60px;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -60px;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 60px;
	}

}

@media screen and (max-width: 736px) {

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-mobile {
		order: -1;
	}

	.row>.col-1-mobile {
		width: 8.33333%;
	}

	.row>.off-1-mobile {
		margin-left: 8.33333%;
	}

	.row>.col-2-mobile {
		width: 16.66667%;
	}

	.row>.off-2-mobile {
		margin-left: 16.66667%;
	}

	.row>.col-3-mobile {
		width: 25%;
	}

	.row>.off-3-mobile {
		margin-left: 25%;
	}

	.row>.col-4-mobile {
		width: 33.33333%;
	}

	.row>.off-4-mobile {
		margin-left: 33.33333%;
	}

	.row>.col-5-mobile {
		width: 41.66667%;
	}

	.row>.off-5-mobile {
		margin-left: 41.66667%;
	}

	.row>.col-6-mobile {
		width: 50%;
	}

	.row>.off-6-mobile {
		margin-left: 50%;
	}

	.row>.col-7-mobile {
		width: 58.33333%;
	}

	.row>.off-7-mobile {
		margin-left: 58.33333%;
	}

	.row>.col-8-mobile {
		width: 66.66667%;
	}

	.row>.off-8-mobile {
		margin-left: 66.66667%;
	}

	.row>.col-9-mobile {
		width: 75%;
	}

	.row>.off-9-mobile {
		margin-left: 75%;
	}

	.row>.col-10-mobile {
		width: 83.33333%;
	}

	.row>.off-10-mobile {
		margin-left: 83.33333%;
	}

	.row>.col-11-mobile {
		width: 91.66667%;
	}

	.row>.off-11-mobile {
		margin-left: 91.66667%;
	}

	.row>.col-12-mobile {
		width: 100%;
	}

	.row>.off-12-mobile {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0px;
		margin-left: 0px;
	}

	.row.gtr-0>* {
		padding: 0px 0 0 0px;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0px;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0px;
	}

	.row.gtr-25 {
		margin-top: -7.5px;
		margin-left: -7.5px;
	}

	.row.gtr-25>* {
		padding: 7.5px 0 0 7.5px;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -7.5px;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 7.5px;
	}

	.row.gtr-50 {
		margin-top: -15px;
		margin-left: -15px;
	}

	.row.gtr-50>* {
		padding: 15px 0 0 15px;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -15px;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 15px;
	}

	.row {
		margin-top: -30px;
		margin-left: -30px;
	}

	.row>* {
		padding: 30px 0 0 30px;
	}

	.row.gtr-uniform {
		margin-top: -30px;
	}

	.row.gtr-uniform>* {
		padding-top: 30px;
	}

	.row.gtr-150 {
		margin-top: -45px;
		margin-left: -45px;
	}

	.row.gtr-150>* {
		padding: 45px 0 0 45px;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -45px;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 45px;
	}

	.row.gtr-200 {
		margin-top: -60px;
		margin-left: -60px;
	}

	.row.gtr-200>* {
		padding: 60px 0 0 60px;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -60px;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 60px;
	}

}

/* Section/Article */

section.special,
article.special {
	text-align: center;
}

header.major {
	padding-bottom: 2em;
}

header.special {
	margin-bottom: 5em;
	padding-top: 7em;
	position: relative;
	text-align: center;
}

header.special:before,
header.special:after {
	border-bottom: solid 1.5px;
	border-top: solid 1.5px;
	content: '';
	height: 7px;
	opacity: 0.1;
	position: absolute;
	top: 1.75em;
	width: 43%;
}

header.special:before {
	left: 0;
}

header.special:after {
	right: 0;
}

header.special h2 {
	margin-bottom: 0;
}

header.special h2+p {
	margin-bottom: 0;
	padding-top: 1.5em;
}

header.special .icon {
	cursor: default;
	height: 7em;
	left: 0;
	position: absolute;
	text-align: center;
	top: 1em;
	width: 100%;
}

header.special .icon:before {
	font-size: 3.5em;
	opacity: 0.35;
}

footer> :last-child {
	margin-bottom: 0;
}

footer.major {
	padding-top: 3em;
}

/* Form */

input[type="text"],
input[type="password"],
input[type="email"],
textarea {
	-moz-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	background: none;
	border: solid 1px rgba(124, 128, 129, 0.2);
	border-radius: 0;
	color: inherit;
	display: block;
	padding: 0.75em;
	text-decoration: none;
	width: 100%;
	outline: 0;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
	border-color: #83d3c9;
}

input[type="text"],
input[type="password"],
input[type="email"] {
	line-height: 1em;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.5;
	position: relative;
	top: 3px;
}

:-moz-placeholder {
	color: inherit;
	opacity: 0.5;
}

::-moz-placeholder {
	color: inherit;
	opacity: 0.5;
}

:-ms-input-placeholder {
	color: inherit;
	opacity: 0.5;
}

/* Image */

.image {
	border: 0;
	position: relative;
}

.image:before {
	background: url("images/overlay.png");
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.image.fit {
	display: block;
}

.image.fit img {
	display: block;
	width: 100%;
}

.image.featured {
	display: block;
	margin: 0 0 2em 0;
}

.image.featured img {
	display: block;
	width: 100%;
}

/* Icon */

.icon {
	text-decoration: none;
	position: relative;
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
}

.icon.solid:before {
	font-weight: 900;
}

.icon:before {
	line-height: inherit;
}

.icon.brands:before {
	font-family: 'Font Awesome 5 Brands';
}

.icon.circle {
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	border: 0;
	border-radius: 100%;
	display: inline-block;
	font-size: 1.25em;
	height: 2.25em;
	left: 0;
	line-height: 2.25em;
	text-align: center;
	text-decoration: none;
	top: 0;
	width: 2.25em;
}

.icon.circle:hover {
	top: -0.2em;
}

.icon.circle.fa-twitter {
	background: #70aecd;
	color: #fff;
}

.icon.circle.fa-twitter:hover {
	background: #7fb7d2;
}

.icon.circle.fa-facebook-f {
	background: #7490c3;
	color: #fff;
}

.icon.circle.fa-facebook-f:hover {
	background: #829bc9;
}

.icon.circle.fa-google-plus-g {
	background: #db6b67;
	color: #fff;
}

.icon.circle.fa-google-plus-g:hover {
	background: #df7b77;
}

.icon.circle.fa-github {
	background: #dcad8b;
	color: #fff;
}

.icon.circle.fa-github:hover {
	background: #e1b89b;
}

.icon.circle.fa-dribbble {
	background: #da83ae;
	color: #fff;
}

.icon.circle.fa-dribbble:hover {
	background: #df93b8;
}

.icon.featured {
	cursor: default;
	display: block;
	margin: 0 0 1.5em 0;
	opacity: 0.35;
	text-align: center;
}

.icon.featured:before {
	font-size: 5em;
	line-height: 1em;
}

.icon>.label {
	display: none;
}

/* List */

ol {
	list-style: decimal;
	padding-left: 1.25em;
}

ol li {
	padding-left: 0.25em;
}

ul {
	list-style: disc;
	padding-left: 1em;
}

ul li {
	padding-left: 0.5em;
}

/* Icons */

ul.icons {
	list-style: none;
	padding-left: 0;
	cursor: default;
}

ul.icons li {
	display: inline-block;
	line-height: 1em;
	padding-left: 0.5em;
}

ul.icons li:first-child {
	padding-left: 0;
}

/* Featured Icons */

ul.featured-icons {
	cursor: default;
	margin: -0.75em 0 0 0;
	opacity: 0.35;
	overflow: hidden;
	position: relative;
	list-style: none;
	padding-left: 0;
}

ul.featured-icons li {
	display: block;
	float: left;
	text-align: center;
	width: 50%;
	padding-left: 0;
	margin-bottom: 1em;
}

ul.featured-icons li .icon {
	display: inline-block;
	font-size: 5.5em;
	height: 1em;
	line-height: 1.5em;
	width: 1em;
}

/* Buttons */

ul.buttons {
	cursor: default;
	list-style: none;
	padding-left: 0;
}

ul.buttons:last-child {
	margin-bottom: 0;
}

ul.buttons li {
	display: inline-block;
	padding: 0 0 0 1.5em;
}

ul.buttons li:first-child {
	padding: 0;
}

ul.buttons.stacked li {
	display: block;
	padding: 1.5em 0 0 0;
}

ul.buttons.stacked li:first-child {
	padding: 0;
}

/* Table */

table {
	width: 100%;
}

table.default {
	width: 100%;
}

table.default tbody tr {
	border-bottom: solid 1px rgba(124, 128, 129, 0.2);
}

table.default td {
	padding: 0.5em 1em 0.5em 1em;
}

table.default th {
	font-weight: 400;
	padding: 0.5em 1em 0.5em 1em;
	text-align: left;
}

table.default thead {
	background: #7c8081;
	color: #fff;
}

/* Button */

input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	-moz-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	background: none;
	border: solid 1px;
	border-radius: 0;
	color: inherit;
	cursor: pointer;
	display: inline-block;
	font-size: 0.8em;
	font-weight: 900;
	letter-spacing: 2px;
	min-width: 18em;
	padding: 0 0.75em;
	line-height: 3.75em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover,
.button:hover {
	background: rgba(188, 202, 206, 0.15);
	border-color: inherit;
}

input[type="button"].primary,
input[type="submit"].primary,
input[type="reset"].primary,
button.primary,
.button.primary {
	background: #083b32;
	border-color: #083b32;
	color: #fffff0 !important;
}

input[type="button"].primary:hover,
input[type="submit"].primary:hover,
input[type="reset"].primary:hover,
button.primary:hover,
.button.primary:hover {
	background: #0a5647 !important;
	border-color: #083b32 !important;
}

input[type="button"].fit,
input[type="submit"].fit,
input[type="reset"].fit,
button.fit,
.button.fit {
	width: 100%;
}

input[type="button"].small,
input[type="submit"].small,
input[type="reset"].small,
button.small,
.button.small {
	font-size: 0.7em;
	min-width: 14em;
	padding: 0.5em 0;
}

/* Wrapper */

.wrapper {
	margin-bottom: 5em;
	padding: 5em;
}

.wrapper.style1 {
	padding: 0;
}

.wrapper.style2 {
	background-color: #5d0007;
	background-image: url("images/light-bl.svg"), url("images/light-br.svg");
	background-position: bottom left, bottom right;
	background-repeat: no-repeat, no-repeat;
	background-size: 25em, 25em;
	color: #fffff0;
	border-radius: 0.5em;
}

.wrapper.style2 input[type="button"]:hover,
.wrapper.style2 input[type="submit"]:hover,
.wrapper.style2 input[type="reset"]:hover,
.wrapper.style2 button:hover,
.wrapper.style2 .button:hover {
	background: rgba(255, 255, 255, 0.15) !important;
}

.wrapper.style2 input[type="button"].primary,
.wrapper.style2 input[type="submit"].primary,
.wrapper.style2 input[type="reset"].primary,
.wrapper.style2 button.primary,
.wrapper.style2 .button.primary {
	background: #fff;
	border-color: #fff;
	color: #83d3c9 !important;
}

.wrapper.style2 input[type="button"].primary:hover,
.wrapper.style2 input[type="submit"].primary:hover,
.wrapper.style2 input[type="reset"].primary:hover,
.wrapper.style2 button.primary:hover,
.wrapper.style2 .button.primary:hover {
	border-color: inherit !important;
	color: #fff !important;
}

.wrapper.style3 {
	background: #fff;
	color: inherit;
}

.wrapper.style4 {
	background: #fff;
	color: inherit;
	padding: 4em;
}

/* Header */

@-moz-keyframes reveal-header {
	0% {
		top: -5em;
	}

	100% {
		top: 0;
	}
}

@-webkit-keyframes reveal-header {
	0% {
		top: -5em;
	}

	100% {
		top: 0;
	}
}

@-ms-keyframes reveal-header {
	0% {
		top: -5em;
	}

	100% {
		top: 0;
	}
}

@keyframes reveal-header {
	0% {
		top: -5em;
	}

	100% {
		top: 0;
	}
}


#header {
	background: linear-gradient(to right, #fffaf3, #fdf7ef);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	color: inherit;
	cursor: default;
	font-size: 0.8em;
	left: 0;
	padding: 2em 1.5em;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
}

#header h1 {
	font-weight: 900;
	margin: 0;
}

#header h1 span {
	font-weight: 300;
}

#header nav {
	letter-spacing: 0.075em;
	position: absolute;
	right: 1.5em;
	text-transform: uppercase;
	top: 0.75em;
}

#header nav ul {
	list-style: none;
	padding-left: 0;
}

#header nav ul li {
	display: inline-block;
	margin-left: 1.5em;
	padding-left: 0;
}

#header nav ul li>ul {
	display: none;
}

.dropotron {
	background: #fffaf3;
	border-radius: 0.5rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropotron>li>a:hover {
	background: #f2e4d6;
	color: #083b32;
}

.dropotron {
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.dropotron.open {
	opacity: 1;
	transform: translateY(0);
}


#header nav ul li a {
	border: solid 1px transparent;
	color: inherit;
	display: inline-block;
	line-height: 1em;
	padding: 0.6em 0.75em;
	text-decoration: none;
}

#header nav ul li a {
	position: relative;
	transition: color 0.3s ease;
}

#header nav ul li a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -3px;
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	width: 60%;
	height: 2px;
	background: #c7a14a;
	/* soft gold */
	transition: transform 0.3s ease;
}

#header nav ul li:hover a::after {
	transform: translateX(-50%) scaleX(1);
}

#header nav ul li input[type="button"],
#header nav ul li input[type="submit"],
#header nav ul li input[type="reset"],
#header nav ul li button,
#header nav ul li .button {
	font-size: 1em;
	min-width: 0;
	width: auto;
}

#header nav ul li.submenu>a {
	text-decoration: none;
}

#header nav ul li.submenu>a:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

#header nav ul li.submenu>a:before {
	content: '\f107';
	margin-right: 0.65em;
}

#header nav ul li.active>a,
#header nav ul li:hover>a {
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	/* background: rgba(93, 0, 7, 0.6); */
}

#header nav ul li.current>a {
	font-weight: 900;
}

#header.reveal {
	-moz-animation: reveal-header 0.5s;
	-webkit-animation: reveal-header 0.5s;
	-ms-animation: reveal-header 0.5s;
	animation: reveal-header 0.5s;
	padding: 2em;
	background: linear-gradient(145deg, #0d3b34, #145c4a);
	color: #fffff0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

#header.alt {
	-moz-animation: none;
	-webkit-animation: none;
	-ms-animation: none;
	animation: none;
	background: linear-gradient(rgba(40, 0, 4, 0.9), rgba(40, 0, 4, 0));
	/* linear-gradient(
        rgba(92, 2, 56, 0.6),
        rgba(92, 2, 56, 0)); */
	box-shadow: none;
	color: #fff;
	padding: 3em 2.5em;
	position: absolute;
}

#header.alt nav {
	right: 2.5em;
	top: 1.75em;
}

/* #header.alt nav ul li.active>a,
#header.alt nav ul li:hover>a {
	border: solid 1px;
} */

/* Dropotron */

.dropotron {
	list-style: none;
	padding-left: 0;
	background: #fff;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.075);
	line-height: 2.25em;
	min-width: 13em;
	padding: 1em 0;
	text-transform: uppercase;
	margin-top: calc(-1em + 1px);
}

.dropotron.level-0 {
	font-size: 0.7em;
	font-weight: 400;
	margin-top: 1.5em;
}

.dropotron.level-0:before {
	border-bottom: solid 0.5em #fff;
	border-left: solid 0.5em transparent;
	border-right: solid 0.5em transparent;
	content: '';
	left: 0.75em;
	position: absolute;
	top: -0.45em;
}

.dropotron>li {
	border-top: solid 1px rgba(124, 128, 129, 0.2);
	padding-left: 0;
}

.dropotron>li>a {
	-moz-transition: none;
	-webkit-transition: none;
	-ms-transition: none;
	transition: none;
	color: inherit;
	text-decoration: none;
	padding: 0 1em;
	border: 0;
}

.dropotron>li:hover>a {
	background: #83d3c9;
	color: #fff;
}

.dropotron>li:first-child {
	border-top: 0;
}

/* Banner */

@-moz-keyframes reveal-banner {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes reveal-banner {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-ms-keyframes reveal-banner {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes reveal-banner {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#banner {
	background-color: #645862;

	/* Layered images: corner lights, overlay, banner */
	background-image:
		url("/assets/images/light-bl.svg"),
		url("/assets/images/light-br.svg"),
		url("/assets/images/overlay-2.png"),
		url("/assets/images/banner2.jpg");

	/* Positions */
	background-position:
		bottom left,
		/* light-bl.svg */
		bottom right,
		/* light-br.svg */
		top left,
		/* overlay.png */
		center center;
	/* banner.jpg - focus top area (faces) */

	/* No tiling */
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;

	/* Sizes */
	background-size:
		20em, 20em, cover, cover;
	/* corner lights fixed, overlay + banner cover */

	/* Scroll behavior */
	background-attachment: scroll, scroll, scroll, scroll;

	/* Full width and flexible height */
	width: 100%;
	min-height: 60vh;
	/* adjusts height relative to viewport */
	max-height: 95vh;
	/* prevents banner from becoming too tall on large screens */

	/* Center content */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	/* Text styling */
	color: #fff;
	text-align: center;
	padding: 6em 1em;
	/* responsive horizontal padding */
}



#banner .inner {
	-moz-animation: reveal-banner 1s 0.25s ease-in-out;
	-webkit-animation: reveal-banner 1s 0.25s ease-in-out;
	-ms-animation: reveal-banner 1s 0.25s ease-in-out;
	animation: reveal-banner 1s 0.25s ease-in-out;
	-moz-animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
	-ms-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	background-color: rgba(93, 0, 7, 0.6);
	color: #fffff0;
	display: inline-block;
	opacity: 0;
	padding: 2.5em 3.5em;
	text-align: center;
	margin-top: 2.5em;
	border-radius: 0.5em;
}

#banner .inner header {
	display: inline-block;
	border-bottom: solid 2px;
	border-top: solid 2px;
	margin: 0 0 2em 0;
	padding: 3px 0 3px 0;
}

#banner .inner header h2 {
	border-bottom: solid 2px;
	border-top: solid 2px;
	font-size: 2.5em;
	font-weight: 900;
	letter-spacing: 0.2em;
	margin: 0;
	padding-left: 0.05em;
	position: relative;
	text-transform: uppercase;
}

#banner .inner p {
	letter-spacing: 0.1em;
	margin: 0;
	text-transform: uppercase;
}

#banner .inner p a {
	color: inherit;
	font-weight: 400;
	text-decoration: none;
}

#banner .inner footer {
	margin: 2em 0 0 0;
}

/* Main */

#main {
	background-image: url("/assets/images/dark-tl.svg"), url("/assets/images/dark-tr.svg");
	background-position: top left, top right, bottom left, bottom right;
	background-repeat: no-repeat;
	background-size: 25em;
	/* padding: 7em 0 4em 0; */
	background-color: #fffff0;
}

#main> :last-child {
	margin-bottom: 0;
}

#main .sidebar section {
	border-top: solid 1px rgba(124, 128, 129, 0.2);
	margin: 3em 0 0 0;
	padding: 3em 0 0 0;
}

#main .sidebar section:first-child {
	border-top: 0;
	padding-top: 0;
	margin-top: 0;
}

body.index #main {
	padding-top: 5em;
}

/* CTA */

/* #cta {
	background-attachment: scroll, scroll, scroll, fixed;
	background-color: #645862;
	background-image: url("/assets/images/light-tl.svg"), url("/assets/images/light-tr.svg"), url("/assets/images/overlay.png"), url("/assets/images/banner.jpg");
	background-position: top left, top right, top left, bottom center;
	background-repeat: no-repeat, no-repeat, repeat, no-repeat;
	background-size: 25em, 25em, auto, cover;
	color: #fff;
	padding: 5em;
	text-align: center;
	height: 80vh;
} */


/* Wide */

@media screen and (max-width: 1680px) {
	/* Basic */

	body,
	input,
	select,
	textarea {
		font-size: 14pt;
	}

	/* Section/Article */

	header.special {
		padding-top: 5.5em;
		margin-bottom: 4em;
	}

}

@media screen and (max-width: 1392px) {
	#header.reveal {padding:3em;}

}

/* Normal */

@media screen and (max-width: 1280px) {
	/* Basic */

	body,
	input,
	select,
	textarea {
		font-size: 13pt;
		letter-spacing: 0.025em;
		line-height: 1.65em;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		line-height: 1.5em;
	}

	/* Section/Article */

	header.major {
		padding-bottom: 1.5em;
	}

	footer.major {
		padding-top: 2em;
	}

	/* Wrapper */

	.wrapper {
		margin-bottom: 4em;
		padding: 4em 3em;
	}

	.wrapper.style4 {
		padding: 3em;
	}

	/* Header */

	#header nav ul li {
		margin-left: 1em;
	}

	/* Banner */

	#banner {
		background-attachment: scroll;
	}

	/* CTA */

	#cta {
		padding: 4em;
		background-attachment: scroll;
	}

	/* Footer */

	#footer {
		/* padding: 4em; */
	}

}

/* Narrow */

@media screen and (max-width: 980px) {
	/* Basic */

	body,
	input,
	select,
	textarea {
		font-size: 13pt;
		letter-spacing: 0.025em;
		line-height: 1.5em;
	}

	/* Section/Article */

	header br {
		display: none;
	}

	header.major {
		padding-bottom: 1em;
	}

	header.special {
		padding-left: 2.5em;
		padding-right: 2.5em;
	}

	footer.major {
		padding-top: 1.5em;
	}

	/* Wrapper */

	.wrapper {
		margin-bottom: 3em;
		padding: 3em 2.5em;
	}

	.wrapper.special br {
		display: none;
	}

	.wrapper.style1 {
		padding: 0 2.5em;
	}

	.wrapper.style2 {
		background-size: 15em;
	}

	.wrapper.style4 {
		padding: 2.5em;
	}

	/* Banner */

	#banner {
		background-size: 15em, 15em, auto, cover;
	}

	/* Main */

	#main {
		background-size: 15em;
	}

	/* CTA */

	#cta {
		background-size: 15em, 15em, auto, cover;
		padding: 3em;
	}

}

/* Narrower */

#navPanel,
#navButton {
	display: none;
}

@media screen and (max-width: 840px) {

	/* Basic */

	html,
	body {
		overflow-x: hidden;
		margin: 0;
		padding: 0;
		width: 100%;
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
		position: relative;
	}

	header.major {
		padding-bottom: 0.25em;
	}

	header.special {
		margin-bottom: 5em;
		padding-top: 6em;
	}

	header.special:before,
	header.special:after {
		width: 40%;
	}

	header.special h2+p {
		padding-top: 1.25em;
	}

	/* Section/Article */

	/* section {
		margin: 1em 0 1em 0;
	} */

	section:first-child {
		margin-top: 0;
	}

	/* Button */

	input[type="button"].small,
	input[type="submit"].small,
	input[type="reset"].small,
	button.small,
	.button.small {
		font-size: 0.8em;
		min-width: 18em;
		padding: 0.75em 0;
	}

	/* Featured Icons */

	ul.featured-icons {
		margin: 0;
	}

	ul.featured-icons li {
		display: inline-block;
		float: none;
		width: auto;
	}

	ul.featured-icons li .icon {
		font-size: 4em;
		width: 1.25em;
	}

	/* Buttons */

	ul.buttons li {
		display: block;
		padding: 1em 0 0 0;
	}

	/* Header */

	#header {
		display: none;
	}

	/* Banner */

	#banner {
		margin: 0;
	}

	/* Wrapper */

	.wrapper.special-alt {
		text-align: center;
	}

	.wrapper.style4 {
		padding-bottom: 3em;
	}

	/* Main */

	#main {
		padding: 5em 0;
	}

	#main .sidebar {
		border-top: solid 1px rgba(124, 128, 129, 0.1);
		padding-top: 3em;
	}

	#main .sidebar section {
		border-top: 0;
		padding-top: 0;
	}

	body.index #main {
		padding-top: 4.5em;
	}

	/* CTA */

	#cta {
		margin: 0;
	}

	/* Footer */

	#footer {
		/* padding: 4em 1.5em; */
	}

	/* Nav */

	#page-wrapper {
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		padding-bottom: 1px;
	}

	#navButton {
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		display: block;
		height: 60px;
		left: 0;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 10001;
	}

	#navButton .toggle {
		text-decoration: none;
		height: 60px;
		left: 0;
		position: absolute;
		text-align: center;
		top: 0;
		width: 100%;
		border: 0;
		outline: 0;
	}

	#navButton .toggle:before {
		-moz-osx-font-smoothing: grayscale;
		-webkit-font-smoothing: antialiased;
		display: inline-block;
		font-style: normal;
		font-variant: normal;
		text-rendering: auto;
		line-height: 1;
		text-transform: none !important;
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
	}

	#navButton .toggle:before {
		color: #fffff0;
		content: '\f0c9';
		font-size: 1em;
		height: 40px;
		left: 10px;
		line-height: 40px;
		position: absolute;
		top: 11px;
		width: 60px;
		z-index: 1;
	}

	#navButton .toggle:after {
		background: linear-gradient(145deg, #0d3b34, #145c4a);
		border-radius: 2px;
		content: '';
		height: 40px;
		left: 10px;
		position: absolute;
		top: 10px;
		width: 60px;
		opacity: 0.8;
	}

	#navPanel {
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-transform: translateX(-275px);
		-webkit-transform: translateX(-275px);
		-ms-transform: translateX(-275px);
		transform: translateX(-275px);
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		display: block;
		height: 100%;
		left: 0;
		overflow-y: auto;
		position: fixed;
		top: 0;
		width: 275px;
		z-index: 10002;
		background: linear-gradient(145deg, #0d3b34, #145c4a);
		color: #fffff0;
		font-size: 0.8em;
		letter-spacing: 0.075em;
		text-transform: uppercase;
		padding: 0.25em 0.75em 1em 0.75em;
	}

	#navPanel .link {
		border: 0;
		border-top: solid 1px rgba(255, 255, 255, 0.05);
		color: #fffff0;
		display: block;
		height: 3em;
		line-height: 3em;
		text-decoration: none;
	}

	#navPanel .link.depth-0 {
		font-weight: 900;
	}

	#navPanel .link:first-child {
		border-top: 0;
	}

	#navPanel .indent-1 {
		display: inline-block;
		width: 1em;
	}

	#navPanel .indent-2 {
		display: inline-block;
		width: 2em;
	}

	#navPanel .indent-3 {
		display: inline-block;
		width: 3em;
	}

	#navPanel .indent-4 {
		display: inline-block;
		width: 4em;
	}

	#navPanel .indent-5 {
		display: inline-block;
		width: 5em;
	}

	body.navPanel-visible #page-wrapper {
		-moz-transform: translateX(275px);
		-webkit-transform: translateX(275px);
		-ms-transform: translateX(275px);
		transform: translateX(275px);
	}

	body.navPanel-visible #navButton {
		-moz-transform: translateX(275px);
		-webkit-transform: translateX(275px);
		-ms-transform: translateX(275px);
		transform: translateX(275px);
	}

	body.navPanel-visible #navPanel {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

}

/* Mobile */

@media screen and (max-width: 736px) {

	/* Basic */

	body {
		min-width: 320px;
	}

	h2 {
		font-size: 1.25em;
		letter-spacing: 0.1em;
	}

	h3 {
		font-size: 1em;
		letter-spacing: 0.025em;
	}

	p {
		text-align: justify;
	}

	/* Section/Article */

	header {
		text-align: center;
	}

	header.major {
		padding-bottom: 0;
	}

	header.special {
		margin-bottom: 3em;
		padding-left: 2.5em;
		padding-right: 2.5em;
	}

	header.special:before,
	header.special:after {
		width: 38%;
	}

	header.special .icon {
		font-size: 1em;
		top: 1.5em;
	}

	header p {
		text-align: center;
	}

	footer.major {
		padding-top: 0;
	}

	/* Icon */

	.icon.circle {
		font-size: 1em;
	}

	/* Button */

	input[type="button"],
	input[type="submit"],
	input[type="reset"],
	button,
	.button {
		max-width: 20em;
		width: 100%;
	}

	input[type="button"].fit,
	input[type="submit"].fit,
	input[type="reset"].fit,
	button.fit,
	.button.fit {
		width: auto;
	}

	/* Icons */

	ul.icons li {
		padding-left: 0.25em;
	}

	/* Featured Icons */

	ul.featured-icons li .icon {
		width: 1.1em;
	}

	/* Buttons */

	ul.buttons {
		text-align: center;
	}

	/* Wrapper */

	.wrapper {
		margin-bottom: 2.5em;
		padding: 2.25em 1.5em;
	}

	.wrapper.special br {
		display: none;
	}

	.wrapper.style1 {
		padding: 0 1.5em;
	}

	.wrapper.style2 {
		background-size: 10em;
		padding: 2.25em 1.5em;
	}

	.wrapper.style4 {
		background-size: 10em;
		padding: 1.5em 1.5em 3em 1.5em;
	}

	/* Banner */

	#banner {
		background-size: 10em, 10em, auto, cover;
		padding: 6em 0;
	}

	#banner .inner {
		display: block;
		padding: 2em 1.5em;
	}

	#banner .inner header h2 {
		font-size: 1.5em;
	}

	#banner .inner p {
		text-align: center;
	}

	#banner .inner br {
		display: none;
	}

	/* Main */

	#main {
		background-size: 10em;
		padding: 3.5em 0 2.5em 0;
	}

	body.index #main {
		padding: 2.5em 0 0 0;
	}

	body.contact #main {
		padding-bottom: 0;
	}

	/* CTA */

	#cta {
		background-size: 10em, 10em, auto, cover;
		padding: 3em 1.5em;
	}

	/* Footer */

	#footer {
		/* padding: 3em 1.5em; */
	}

	#footer .copyright li {
		display: block;
		margin: 1em 0 0 0;
		padding: 0;
		border: 0;
	}

	/* Nav */

	#navButton .toggle:before {
		top: 8px;
		left: 8px;
		width: 50px;
		height: 34px;
		line-height: 34px;
	}

	#navButton .toggle:after {
		top: 8px;
		left: 8px;
		width: 50px;
		height: 34px;
	}

}

/* Quick Links Section */
.quick-links {
	background: linear-gradient(145deg, #0d3b34, #145c4a);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 3em 1em;
	text-align: center;

	/* Velvet depth */
	box-shadow:
		inset 0 0 30px rgba(0, 0, 0, 0.4),
		/* inner shadow for plush effect */
		0 5px 15px rgba(0, 0, 0, 0.2);
	/* subtle outer shadow */
	position: relative;
}


.quick-links h2 {
	font-size: 2em;
	margin-bottom: 1.5em;
	color: #fffff0;
	/* Gold */
	font-family: "Playfair Display", serif;
	letter-spacing: 1px;
}

.quick-links .grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1.2em;
	max-width: 100%;
	margin: 0 auto;
}

.quick-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.5em;
	background: transparent;
	border: 2px solid rgba(212, 175, 55, 0.5);
	border-radius: 0.5em;
	text-decoration: none;
	color: #fffff0;
	/* Gold text */
	font-weight: 600;
	font-size: 1.05em;
	letter-spacing: 0.5px;
	transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-link:hover {
	background: #e4c97a;
	/* Gold fill */
	color: #083b32;
	/* Green text on hover */
	transform: translateY(-6px) scale(1.03);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.quick-link img.icon {
	height: 3em;
	margin-bottom: 0.5em;
	transition: filter 0.3s ease;
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.quick-link:hover img.icon {
	filter: invert(19%) sepia(28%) saturate(1084%) hue-rotate(126deg) brightness(96%) contrast(91%);
}