@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,300italic,400italic");

/*Source page template by: Alpha by HTML5 UP | html5up.net | @ajlkn | CC BY 3.0*/

/* Constants and other useful variables #################################### */
:root {
	--default-font-color: #60392f;
	--default-background-color: #2d1b16;

	--header-color: white;
	--header-color-bg: #444;
	--header-color-alt: rgba(from white r g b / 0.85);
	--header-color-bg-alt: transparent;


	--button-speed: 0.12s;

	--width-wide: 1680px;
	--width-normal: 1280px;
	--width-narrow: 980px;
	--width-narrower: 840px;
	--width-mobile: 736px;
	--width-mobile-portrait: 480px;
}

/* Reset ################################################################### */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

body {
	line-height: 1;
}

ol,ul {
	list-style: none;
}

blockquote,q {
	quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

mark {
	background-color: transparent;
	color: inherit;
}

input,select,textarea {
	appearance: none;
}

/* Basic ################################################################### */
html {
	box-sizing: border-box;
	color: var(--default-font-color);
}

*,
*:before,
*:after {
	color: inherit;
	box-sizing: inherit;
}

body {
	background: #f5f5f5;
}

body,input,select,textarea {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 16pt;
	font-weight: 300;
	line-height: 1.65em;
	letter-spacing: -0.015em;
}

strong, b {
	font-weight: 400;
}

em, i {
	font-style: italic;
}

p {
	margin: 0 0 2em 0;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 300;
	line-height: 1em;
	margin: 0 0 0.5em 0;

	& a {
		color: inherit;
		text-decoration: none;
	}
}

h2 {
	font-size: 2.25em;
	line-height: 1.5em;
	letter-spacing: -0.035em;
}

h3 {
	font-size: 1.75em;
	line-height: 1.5em;
	letter-spacing: -0.025em;
}

h4 {
	font-size: 1.1em;
	line-height: 1.5em;
	letter-spacing: 0;
}

h5 {
	font-size: 0.9em;
	line-height: 1.5em;
	letter-spacing: 0;
}

h6 {
	font-size: 0.7em;
	line-height: 1.5em;
	letter-spacing: 0;
}

sub {
	font-size: 0.8em;
	position: relative;
	top: 0.5em;
}

sup {
	font-size: 0.8em;
	position: relative;
	top: -0.5em;
}

hr {
	border: 0;
	border-bottom: solid 2px #e5e5e5;
	margin: 2em 0;
}

hr.major {
	margin: 3em 0;
}

blockquote {
	border-left: solid 4px #e5e5e5;
	font-style: italic;
	margin: 0 0 2em 0;
	padding: 0.5em 0 0.5em 2em;
}

pre {
	background: #f8f8f8;
	border-radius: 6px;
	border: solid 1px #e5e5e5;
	font-family: monospace;
	font-size: 0.9em;
	line-height: 1.75em;
	margin: 0 0 2em 0;
	overflow-x: auto;
	padding: 1em 1.5em;
}

code {
	background: #f8f8f8;
	border-radius: 6px;
	border: solid 1px #e5e5e5;
	font-family: monospace;
	font-size: 0.9em;
	margin: 0 0.25em;
	padding: 0.25em 0.65em;
}

@media screen and (max-width: 1680px) {
	body, input, select, textarea {
		font-size: 13pt;
	}
}
@media screen and (max-width: 1280px) {
	body, input, select, textarea {
		font-size: 11pt;
	}
}
/*
@media screen and (max-width: 980px) {
}*/
@media screen and (max-width: 840px) {
	html, body {
		overflow-x: hidden;
	}

	header.major {
		padding: 0 4em;
	}

}
@media screen and (max-width: 736px) {
	h2 {
		font-size: 1.75em;
		line-height: 1.35em;
		letter-spacing: -0.025em;
	}

	h3 {
		font-size: 1.5em;
	}

	h4 {
		font-size: 1em;
	}
}
@media screen and (max-width: 480px) {
	html, body {
		min-width: 320px;
	}
}
/* Loose Styles ############################################################ */
.center {
	text-align: center;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.flex {
	display: flex;
}

/* Container ############################################################### */
.container {
	margin: 0 auto;
	max-width: calc(100% - 5em);

	width: 60em;
	&.xsmall  {width: 15em;}
	&.small   {width: 30em;}
	&.medium  {width: 45em;}
	&.large   {width: 75em;}
	&.xlarge  {width: 90em;}
	&.max     {width: 100%;}
}

/*
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}*/
@media screen and (max-width: 840px) {
	.container {
		width: 100% !important;
	}
}
@media screen and (max-width: 736px) {
	.container {
		max-width: 100%;
	}
}
/*
@media screen and (max-width: 480px) {
}*/


/* Section/Article ######################################################### */
section.special,
article.special {
	text-align: center;
}

header{
	& p {
		position: relative;
		margin: 0 0 1.5em 0;
		font-style: italic;
	}

	& h2+p {
		font-size: 1.25em;
		margin-top: -1em;
		line-height: 1.5em;
	}

	& h3+p {
		font-size: 1.1em;
		margin-top: -0.85em;
		line-height: 1.5em;
	}

	& h4+p, & h5+p, & h6+p {
		font-size: 0.8em;
		margin-top: -0.5em;
		line-height: 1.5em;
	}

	&.major {
		padding: 1em 0;
		text-align: center;

		& h2 {
			margin: 0;
		}

		& p {
			display: inline-block;
			border-top: solid 2px #e5e5e5;
			margin: 1.5em 0 0 0;
			padding: 1.5em 0 0 0;
			font-style: normal;
		}
	}
}


/*
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 840px) {
}*/
@media screen and (max-width: 736px) {
	header.major {
		padding: 1em;

		& h2,
		& p {
			padding-left: 0.5em;
			padding-right: 0.5em;
		}
	}
}
@media screen and (max-width: 480px) {
	header.major {
		padding: 0;
	}

}

/* Form #################################################################### */
form {
	margin: 0 0 2em 0;
}

label {
	color: #646464;
	display: block;
	font-size: 0.9em;
	font-weight: 300;
	margin: 0 0 1em 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
	appearance: none;
	background-color: #f8f8f8;
	border-radius: 6px;
	border: solid 1px #e5e5e5;
	color: inherit;
	display: block;
	outline: 0;
	padding: 0 1em;
	text-decoration: none;
	width: 100%;

	&:invalid {
		box-shadow: none;
	}

	&:focus {
		border-color: #e89980;
		box-shadow: 0 0 0 2px #e89980;
	}
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
	height: 3em;
}

textarea {
	padding: 0.75em 1em;
}

.verify {
	& .details {
		display: none;
	}

	& input[type='checkbox'].human {
		position:relative;
		bottom: 0.25em;
		transform: scale(2);
		margin-inline: 0.5em;
		appearance: auto;
	}

	&:has(input[type='checkbox'].human:checked) {
		& .details {
			display: block;
		}
	}

	& .verify-link {
		padding: 0.5em;
		width: fit-content;
		margin-inline: auto;

		& .download {
			font-size: 1em;
			line-height: 1.5em;
			letter-spacing: -0.025em;
			padding: 0.5em;
			margin: 0;
		}
	}

	& .steps-header {
		font-size: 135%;
		text-align: center;
		font-weight: 500;
	}

	& .steps {
		text-align: left;
		display: inline-block;
	}
}

details summary{
	list-style: none;
}
/*
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 736px) {
}
@media screen and (max-width: 480px) {
}*/

/* Box ##################################################################### */
.box {
	--spacing: 3em;
	background: #fff;
	border-radius: 6px;
	margin: 0 0 2em 0;
	padding: var(--spacing);

	&> img.featured {
		display: block;
		position: relative;
		margin: var(--spacing) 0 0 0;
		left: calc(-1*var(--spacing));
		width: calc(100% + 2*var(--spacing));

		&:last-child {
			margin-bottom: calc(-1*var(--spacing));
		}
	}
}

.box.dotted {
	border: 4px dotted var(--default-background-color);
}

.box.flow {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	row-gap: 1em;
	column-gap: 1em;

	&>section {
		border: 2px solid rgb(from var(--default-background-color) r g b / 0.2);
		border-radius: 4px;
		padding: 1em;
		margin: 0;
	}

	&.col-2>section {
		width: calc(50% - 0.5em);
	}
}

/*
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 840px) {
}*/
@media screen and (max-width: 736px) {
	.box {
		margin: 1em;
		overflow-x: hidden;
		padding: 2em 2em !important;
		&.flow.col-2>section {
			width: 100%;
		}
	}
}

@media screen and (max-width: 480px) {
	.box {
		border-radius: 0;
		box-shadow: none;
		margin: 1em 0 0 0;
		padding: 3em 1em !important;
	}
}

/* Icon ################################################################### */
.icon {
	text-decoration: none;
	border-bottom: none;
	position: relative;

	&.major {
		background-size: contain;
		border-radius: 100%;
		color: #ffffff;
		cursor: default;
		display: inline-block;
		height: 5.5em;
		line-height: 5.5em;
		margin: 0 0 2em 0;
		width: 5.5em;

		&:before {
			font-size: 2.5em;
		}
	}

	&.fixed {
		aspect-ratio: 1;
		margin: auto 1em auto 0;
	}

	&.brand {
		display: block;
		background-size: contain;
		height: 1.5em;
		width: 1.5em;
	}

	&.src-beans {
		background-image: url("../../images/Coffee-bean-icon.jpg");
	}

	&.src-laughing {
		background-image: url("../../images/People-laughing-icon.jpg");
	}

	&.src-tree {
		background-image: url("../../images/Tree-sky-icon.jpg");
	}

	&.src-guitar {
		background-image: url("../../images/Guitar-blurry-icon.jpg");
	}


	&.src-dawn {
		background-image: url("../../images/Dawn-Patrol-icon.jpg");
	}

	&.src-alpine {
		background-image: url("../../images/Alpine-Elevation-icon.jpg");
	}

	&.src-midnight {
		background-image: url("../../images/Midnight-Maverick-icon.jpg");
	}
}

.brand.x {
	background-image: url("../../images/x-logo.png");
}

.brand.facebook {
	background-image: url("../../images/facebook-logo.png");
}

.brand.instagram {
	background-image: url("../../images/instagram-logo.png");
}

/*
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 736px) {
}
@media screen and (max-width: 480px) {
}*/

/* Image ################################################################## */
.image {
	border-radius: 6px;
	border: 0;
	display: inline-block;
	position: relative;

	& img {
		border-radius: 6px;
		display: block;
	}

	&.left {
		float: left;
		padding: 0 1.5em 1em 0;
		top: 0.25em;
	}

	&.right {
		float: right;
		padding: 0 0 1em 1.5em;
		top: 0.25em;
	}

	&.fit {
		display: block;
		margin: 0 0 2em 0;
		width: 100%;

		& img {
			display: block;
			width: 100%;
		}
	}
}

/*
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 736px) {
}
@media screen and (max-width: 480px) {
}*/

/* List #################################################################### */
ol {
	list-style: decimal;
	margin: 0 0 2em 0;
	padding-left: 1.25em;

	& li {
		padding-left: 0.25em;
	}
}

ul {
	list-style: disc;
	margin: 0 0 2em 0;
	padding-left: 1em;

	& li {
		padding-left: 0.5em;
	}

	&.alt {
		list-style: none;
		padding-left: 0;

		& li {
			border-top: solid 1px #e5e5e5;
			padding: 0.5em 0;
		}

		& li:first-child {
			border-top: 0;
			padding-top: 0;
		}
	}

	&.icons li {
		display: inline-block;
		padding-inline: 1em;
	}
}

dl {
	margin: 0 0 2em 0;
}

/*
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 736px) {
}*/
@media screen and (max-width: 480px) {
	ul.actions {
		margin: 0 0 2em 0;

		& li {
			display: block;
			padding: 1em 0 0 0;
			text-align: center;
			width: 100%;

			&:first-child {
				padding-top: 0;
			}

			&>* {
				width: 100%;
				margin: 0 !important;

				&.icon:before {
					margin-left: -2em;
				}
			}
		}

		&.small li {
			padding: 0.5em 0 0 0;
			&:first-child {
				padding-top: 0;
			}
		}
	}
}

/* Actions ################################################################# */
ul.actions {
	display: flex;
	cursor: default;
	list-style: none;
	margin-left: -1em;
	padding-left: 0;

	& li {
		padding: 0 0 0 1em;
		vertical-align: middle;
	}

	&.special {
		justify-content: center;
		width: 100%;
		margin-left: 0;

		& li:first-child {
			padding-left: 0;
		}
	}

	&.stacked {
		flex-direction: column;
		margin-left: 0;
		& li {
			padding: 1.3em 0 0 0;
			&:first-child {
				padding-top: 0;
			}
		}

	}

	&fit {
		width: calc(100% + 1em);

		& li {
			flex-grow: 1;
			flex-shrink: 1;
			width: 100%;

			&>* {
				width: 100%;
			}

		}

		&.stacked {
			width: 100%;
		}
	}
}

/*
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 736px) {
}*/
@media screen and (max-width: 480px) {
	ul.actions:not(.fixed) {
		flex-direction: column;
		margin-left: 0;
		width: 100% !important;
	}

	ul.actions:not(.fixed) li {
		flex-grow: 1;
		flex-shrink: 1;
		padding: 1em 0 0 0;
		text-align: center;
		width: 100%;

		&>* {
			width: 100%;
		}

		&:first-child {
			padding-top: 0;
		}

		& input[type="submit"],
		& input[type="reset"],
		& input[type="button"],
		& button,
		& .button {
			width: 100%;

			&.icon:before {
				margin-left: -0.5em;
			}
		}
	}
}

/* Table ################################################################### */
.table-wrapper {
	overflow-x: auto;
}

table {
	margin: 0 0 2em 0;
	width: 100%;

	& thead {
		border-bottom: solid 2px #e5e5e5;
	}

	& tbody
	{
		& tr {
			border: solid 1px #e5e5e5;
			border-left: 0;
			border-right: 0;

			&:nth-child(2n + 1) {
				background-color: #f8f8f8;
			}
		}
	}

	& tfoot {
		border-top: solid 2px #e5e5e5;
	}

	& th {
		color: #646464;
		font-size: 0.9em;
		font-weight: 300;
		padding: 0 0.75em 0.75em 0.75em;
		text-align: left;
	}

	& td {
		padding: 0.75em 0.75em;
	}
}

table.hours {
	& td {
		&:first-child {
			width: 15ch;
			text-align: left;
		}

		&:last-child {
			width: 20ch;
			text-align: center;
		}
	}
}

table.alt {
	border-collapse: separate;

	& tbody tr {
		& td {
			border: solid 1px #e5e5e5;
			border-left-width: 0;
			border-top-width: 0;
		}

		& td:first-child {
			border-left-width: 1px;
		}

		&:first-child td {
			border-top-width: 1px;
		}
	}

	& thead {
		border-bottom: 0;
	}

	& tfoot {
		border-top: 0;
	}
}

/*
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 736px) {
}
@media screen and (max-width: 480px) {
}*/


/* Button ################################################################## */
input[type="submit"],
input[type="reset"],
input[type="button"],
.button {
	appearance: none;
	transition: background-color var(--button-speed) ease-in-out, color var(--button-speed) ease-in-out, box-shadow var(--button-speed) ease-in-out;
	background-color: #666;
	border-radius: 6px;
	border: 0;
	color: #ffffff;
	cursor: pointer;
	display: inline-block;
	font-weight: 400;
	height: 3em;
	line-height: 3em;
	padding: 0 2em;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;

	&:hover {
		background-color: #737373;
	}

	&:active {
		background-color: #595959;
	}

	&.fit {
		width: 100%;
	}

	&.small {
		font-size: 0.8em;
		height: 2.7em;
		line-height: 2.7em;
	}

	&.large {
		font-size: 1.25em;
		height: 2.7em;
		line-height: 2.7em;
	}

	&.icon {
		padding-left: 1.35em;

		&:before {
			margin-right: 0.5em;
		}
	}

	&.alt {
		background-color: transparent;
		box-shadow: inset 0 0 0 2px #e5e5e5;
		color: var(--default-font-color);

		&:hover {
			background-color: #f8f8f8;
		}

		&:active {
			background-color: #f0f0f0;
		}

		&icon:before {
			color: #999;
		}
	}

	&.primary {
		background-color: #e89980;
		color: #ffffff !important;

		&:hover {
			background-color: #ecaa96;
		}

		&:active {
			background-color: #e4886a;
		}
	}

	&.disabled,
	&:disabled
	{
		background-color: #777 !important;
		box-shadow: inset 0 -0.15em 0 0 rgba(0, 0, 0, 0.15);
		color: #f5f5f5 !important;
		cursor: default;
		opacity: 0.25;
	}
}

/*
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 736px) {
}
@media screen and (max-width: 480px) {
}*/

/* Header ################################################################## */
#header {
	--color: var(--header-color);
	--background: var(--header-color-bg);

	background-color: var(--background);
	color: var(--color);
	line-height: 3.25em;
	height: 3.25em;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;

	& nav {
		position: absolute;
		vertical-align: middle;
		top: 0;
		right: 2em;

		& ul {
			list-style: none;
			user-select: none;
		}

		& ul>li {
			display: inline-block;
			padding-left: 0;

			& a {
				transition: background-color var(--button-speed) ease-in-out;
				background-color: transparent;

				&:hover {
					background-color: rgba(from var(--color) r g b / 0.25);
				}
				&:active {
					background-color: rgba(from var(--color) r g b / 0.5);
				}

				display: inline-block;
				height: 2em;
				line-height: 1.95em;
				padding: 0 1em;
				border: 0;
				border-radius: 0.75em;
				text-decoration: none;
			}

			&.dropdown {
				&>ul {
					display: none;
					position: absolute;

					/* Background styling */
					background: #fff;
					border-radius: 6px;
					margin: calc(-0.5em + 1px) 0 0 1px;
					padding: 0;
					width: 11em;
					left: -2.0em;
					opacity: 1;

					&:before {
						position: absolute;
						display: block;

						/*Shows the diamond in the corner*/
						transform: rotate(45deg);
						background: #fff;
						border: solid 1px rgba(229, 229, 229, 0.5);
						border-right-width: 1px;
						border-right-style: solid;
						border-right-color: rgba(229, 229, 229, 0.5);
						border-bottom-width: 1px;
						border-bottom-style: solid;
						border-bottom-color: rgba(229, 229, 229, 0.5);
						border-bottom: 0;
						border-right: 0;
						box-shadow: -0.25em -0.125em 0.125em 0 rgba(0, 0, 0, 0.015);
						content: '';
						height: 0.75em;
						right: 1.0em;
						top: -0.375em;
						width: 0.75em;
					}

					&>li {
						display: inline-block;
						color: var(--default-font-color);
						width: 100%;
						height: 3em;
						line-height: 3em;
						appearance: none;
						transition: background-color var(--button-speed) ease-in-out;
						background-color: transparent;

						& a {
							display: inline-block;
							padding: 0.5em 0 0 1em;
							border: 0;
							margin: 0;
							height: 100%;
							width: 100%;
							border: 0;
							&:hover, &:active {background-color: transparent;}
						}

						&:hover {
							background-color: rgba(78, 39, 18, 0.1);
						}
						&:active {
							background-color: rgba(78, 39, 18, 0.2);
						}
					}

				}

				/* Hover behavior to get the child to display */
				&:active,
				&:hover,
				&.show {
					& > ul {
						display: block;
					}
				}
			}
		}
	}

	&.alt {
		--color: var(--header-color-alt);
		--background: var(--header-color-bg-alt);

		position: absolute;
	}

}

/*
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 736px) {
}
@media screen and (max-width: 480px) {
}*/

/* Banner ################################################################## */
#banner {
	background-color: var(--default-background-color);
	background-attachment: scroll, fixed;
	background-position: top center, center center;
	background-repeat: repeat, no-repeat;
	background-size: cover, contain;

	/* Select different images for the background */
	background-image: url("../../images/Coffee-shop.jpg");
	&.montage {background-image: url("../../images/Coffee-montage.jpg");}

	text-align: center;

	padding: 8em 0 0 0;
	margin: 0;
	&.absorb-child {
		padding: 10em 0 18em 0;
		margin: 0 0 -20em 0;
	}

	& h2, & h3, & h4, &h5, &h6 {
		color: #fff;
	}

	& h2 {
		font-size: 3.5em;
		line-height: 1em;
		margin: 0 0 0.5em 0;
		padding: 0;
	}

	&>.background {
		background-color: rgb(255, 255, 255, 0.7);
		color: var(--default-font-color);
		display: inline-block;
		padding: 0.2em;
		border-radius: 0.2em;
	}

	& input[type="submit"],
	& input[type="reset"],
	& input[type="button"],
	& .button {
		background-color: transparent;
		box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
		color: #fff;
		min-width: 12em;

		&:hover {
			background-color: rgba(255, 255, 255, 0.15);
		}

		&:active {
			background-color: rgba(255, 255, 255, 0.3);
		}

		&.primary {
			background: #fff;
			box-shadow: none;
			color: var(--default-font-color) !important;

			&:hover {
				box-shadow: inset 0 0 0 2px rgba(180, 180, 180, 0.5);
				background: #f3f3f3;
			}

			&:active {
				box-shadow: inset 0 0 0 2px rgba(150, 150, 150, 0.5);
				background: #e8e8e8;
			}

		}
	}
}

/*
@media screen and (max-width: 1680px) {
}*/
@media screen and (max-width: 1280px) {
	#banner {
		& h2 {
			font-size: 3.5em;
		}
	}
}
/*
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 840px) {
}*/
@media screen and (max-width: 736px) {
	#banner {
		&.absorb-child {
			padding: 4em 0;
			margin: 0 0 -8em 0;
		}

		& h2 {
			font-size: 2.25em;
		}

		& p {
			font-size: 1.25em;
		}
	}
}
@media screen and (max-width: 480px) {
	#banner {
		&.absorb-child {
			padding: 4em;
			margin: 0 0 -8em 0;
		}
	}
}


/* Main #################################################################### */
.header-background {
	display: block;
	margin-inline: auto;
	width: fit-content;
	padding-inline: 0.4em;
	background-color: rgb(255, 235, 205, 0.5);
	border-radius: 0.6em;
}

.extra-bottom {
	padding-bottom: 1em;
}

#main {
	padding: 4em 0;

	&>header {
		text-align: center;
		margin: 0 0 3em 0;

		& h2 {
			font-size: 2.75em;
			margin: 0;
		}

		& p {
			border-top: solid 2px #e5e5e5;
			color: #777;
			display: inline-block;
			font-style: normal;
			margin: 1em 0 0 0;
			padding: 1em 0 1.25em 0;
		}
	}

	body.landing & {
		margin-top: -14em;
	}
}

/*
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 840px) {
}*/
@media screen and (max-width: 736px) {
	#main {
		padding: 4em 0 0 0;
		&>header {
			margin: 0 2em 1.5em 2em;

			& h2 {
				font-size: 2em;
			}

			& p {
				font-size: 1em;
				padding-bottom: 1em;
			}
		}

		body.landing & {
			padding: 0;
			margin-top: 0;
		}
	}
}
@media screen and (max-width: 480px) {
	#main>.box:first-child {
		margin-top: 0;
	}
}

/* Call to Action (CTA) #################################################### */
#cta {
	background: #8b6a61;
	color: #f9e6df;
	padding: 3.5em 0 4em 0;
	text-align: center;


	& h2, & h3, & h4, & h5, & h6 {
		color: inherit;
	}

	& form {
		margin: 0 auto;
		max-width: 100%;
		width: 25em;
	}

	& input[type="submit"],
	& input[type="reset"],
	& input[type="button"],
	& .button {
		box-shadow: none;
		background: #fff;
		color: #8b6a61;

		&:hover {
			box-shadow: inset 0 0 0 2px rgba(180, 180, 180, 0.5);
			background: #f3f3f3;
		}

		&:active {
			box-shadow: inset 0 0 0 2px rgba(150, 150, 150, 0.5);
			background: #e8e8e8;
		}
	}


	& input[type="text"],
	& input[type="password"],
	& input[type="email"],
	& select,
	& textarea {
		color: #ffffff;
		background: rgba(255, 255, 255, 0.15);
		border: 0;
	}

	&:focus {
		box-shadow: inset 0 0 0 2px #fff;
	}

	& .formerize-placeholder {
		color: rgba(255, 255, 255, 0.75) !important;
	}
}

/*
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 736px) {
}*/
@media screen and (max-width: 480px) {
	#cta {
		padding: 2.5em 1em 3em 1em;
	}
}

/* Footer ################################################################## */
#footer {
	background: #f0f0f0;
	padding: 4em 0 6em 0;
	text-align: center;

	& .icons a {
		transition: opacity var(--button-speed) ease-in-out;
		opacity: 0.35;
	}

	& .icons a:hover {
		opacity: 0.75;
	}

	& .copyright {
		color: #999;
		font-size: 0.9em;
		line-height: 1em;
		margin: 2em 0 0 0;
		padding: 0;
		text-align: center;

		& a {
			color: inherit;
		}

		& li {
			border-left: solid 1px #dddddd;
			display: inline-block;
			list-style: none;
			margin-left: 1em;
			padding-left: 1em;

			&:first-child {
				border-left: 0;
				margin-left: 0;
				padding-left: 0;
			}
		}
	}
}

/*
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 840px) {
}*/
@media screen and (max-width: 736px) {
	#footer {
		padding: 4em 0;

		& .copyright li {
			border-left: 0;
			display: block;
			line-height: 2em;
			margin-left: 0;
			padding-left: 0;
		}
	}
}
/*
@media screen and (max-width: 480px) {
}*/

/* Debug ################################################################### */
.debug-color-1 {
	background-color: hotpink !important;
}

.debug-color-2 {
	background-color: lightcoral !important;
}

.debug-color-3 {
	background-color: lightgreen !important;
}

.debug-color-4 {
	background-color: lightskyblue !important;
}

.debug-div {
	background-color: hotpink !important;
	display: block !important;
	padding: 100px !important;
	border: 0 !important;
	margin: 0 !important;
}