/*
	This is the old stylesheet.
	There is a newer SCSS stylesheet used on some pages, so it's best to make new additions to that one.
	See scss/styles.scss. 
*/

:root {
	--primary: #a51617;
	--secondary: #6bbbb0;
	--secondaryTransparent: rgba(107, 187, 176, 0.62);
	
	--font-awesome: "Font Awesome 5 Free";
	--example-width: 290px
}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%
}

body {
	margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline
}

audio:not([controls]) {
	display: none;
	height: 0
}

[hidden],
template {
	display: none
}

a {
	background-color: transparent
}

a:active,
a:hover {
	outline: 0
}

abbr[title] {
	border-bottom: 1px dotted
}

b,
strong {
	font-weight: 700
}

dfn {
	font-style: italic
}

h1 {
	font-size: 2em;
	margin: .67em 0
}

mark {
	background: #ff0;
	color: #000
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sup {
	top: -.5em
}

sub {
	bottom: -.25em
}

img {
	border: 0
}

svg:not(:root) {
	overflow: hidden
}

figure {
	margin: 1em 40px
}

hr {
	box-sizing: content-box;
	height: 0
}

pre {
	overflow: auto
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0
}

button {
	overflow: visible
}

button,
select {
	text-transform: none
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
	-webkit-appearance: button;
	cursor: pointer
}

button[disabled],
html input[disabled] {
	cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0
}

input {
	line-height: normal
}

input[type=checkbox],
input[type=radio] {
	box-sizing: border-box;
	padding: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	height: auto
}

input[type=search] {
	-webkit-appearance: textfield;
	box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}

fieldset {
	border: 1px solid silver;
	margin: 0 2px;
	padding: .35em .625em .75em
}

legend {
	border: 0;
	padding: 0
}

textarea {
	overflow: auto
}

optgroup {
	font-weight: 700
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

td,
th {
	padding: 0
}

*,
:after,
:before {
	box-sizing: border-box
}

body,
html {
	overflow-x: hidden
}

body.no-scroll,
html.no-scroll {
	overflow: hidden
}

@media (max-width:991px) {

	body.no-scroll,
	html.no-scroll {
		height: 100%
	}
}

body,
html {
	font-size: 28px;
	line-height: 36px
}

body {
	background-color: #fff;
	color: #000;
	font-family: Open Sans, sans-serif;
	letter-spacing: 0;
	word-wrap: break-word;
	-webkit-overflow-scrolling: touch
}

.text-red {
	color: var(--primary) !important;
}

.text-teal {
	color: var(--secondary) !important;
}

.container,
.container-fluid {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	width: 100%
}

@media (max-width:1199px) {

	.container,
	.container-fluid {
		padding-left: 15px;
		padding-right: 15px;
		width: auto
	}
}

@media (max-width:991px) {

	.container,
	.container-fluid {
		width: 100vw
	}
}

.container {
	max-width: 1170px
}

.container.wide {
	max-width: 100%
}

.grid-row {
	display: grid;
	grid-column-gap: 20px;
	grid-row-gap: 20px
}

.grid-two-column {
	grid-template-columns: 1fr 1fr
}

.grid-three-column {
	grid-template-columns: 1fr 1fr 1fr
}

.grid-four-column {
	grid-template-columns: 1fr 1fr 1fr 1fr
}

.flex-row {
	align-items: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 -15px
}

@media (max-width:991px) and (min-width:768px) {
	.flex-row.flex-tablet-reverse {
		flex-direction: column-reverse
	}
}

@media (max-width:767px) {
	.flex-row:not(.mobile-columns) {
		flex-direction: column
	}

	.flex-row.flex-reverse {
		flex-direction: column-reverse
	}
}

.flex-row.equal-height {
	align-items: stretch
}

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

.flex-row.flex-center {
	justify-content: center
}

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

.flex-row.no-gutter {
	margin: 0
}

.flex-column-25 {
	flex-basis: 25%
}

.flex-column-33 {
	flex-basis: 33.33%
}

.flex-column-40 {
	flex-basis: 40%
}

.flex-column-50 {
	flex-basis: 50%
}

.flex-column-60 {
	flex-basis: 60%
}

.flex-column-66 {
	flex-basis: 66%
}

.flex-column-75 {
	flex-basis: 75%
}

.flex-column-100 {
	flex-basis: 100%
}

[class*=flex-column-],
[class^=flex-column-] {
	display: flex;
	flex-direction: column;
	padding: 0 15px
}

@media (max-width:767px) {

	[class*=flex-column-],
	[class^=flex-column-] {
		flex-basis: 100%;
		margin-bottom: 20px;
		width: 100%
	}

	.no-gutter [class*=flex-column-],
	.no-gutter [class^=flex-column-] {
		margin-bottom: 0
	}
}

.no-gutter [class*=flex-column-],
.no-gutter [class^=flex-column-] {
	padding: 0
}

[class*=flex-column-].align-left,
[class^=flex-column-].align-left {
	text-align: left
}

[class*=flex-column-].align-right,
[class^=flex-column-].align-right {
	text-align: right
}

[class*=flex-column-] img,
[class^=flex-column-] img {
	align-self: center
}

[class*=flex-column-] img.align-left,
[class^=flex-column-] img.align-left {
	align-self: flex-start
}

[class*=flex-column-] img.align-center,
[class^=flex-column-] img.align-center {
	align-self: center
}

[class*=flex-column-] img.align-right,
[class^=flex-column-] img.align-right {
	align-self: flex-end
}

@media (max-width:991px) and (min-width:768px) {
	.flex-tablet-33 {
		flex-basis: 33%;
		max-width: 33%
	}

	.flex-tablet-50 {
		flex-basis: 50%;
		max-width: 50%
	}

	.flex-tablet-66 {
		flex-basis: 66%;
		max-width: 66%
	}

	.flex-tablet-100 {
		flex-basis: 100%
	}

	.flex-tablet-100+.flex-tablet-100 {
		margin-top: 40px
	}
}

@media only screen and (max-device-width:640px),
only screen and (max-device-width:667px),
only screen and (max-width:480px) {

	[class*=flex-column-],
	[class^=flex-column-] {
		flex: 1
	}
}

a,
a:visited {
	color: var(--primary);
	text-decoration: none
}

a:focus,
a:hover,
a:visited:focus,
a:visited:hover {
	color: #000;
	outline: none
}

h1 {
	font-size: 60px;
	font-size: 2.14286rem;
	line-height: 66px;
	line-height: 2.35714rem;
	margin: 0
}

h1,
h2 {
	letter-spacing: 0
}

h2 {
	font-size: 40px;
	font-size: 1.42857rem;
	line-height: 46px;
	line-height: 1.64286rem
}

h3 {
	font-size: 34px;
	font-size: 1.21429rem;
	line-height: 40px;
	line-height: 1.42857rem
}

h3,
h4 {
	letter-spacing: 0
}

h4 {
	font-size: 28px;
	font-size: 1rem;
	line-height: 28px;
	line-height: 1rem
}

h5,
h6 {
	font-size: 20px;
	font-size: .71429rem;
	line-height: 16px;
	line-height: .57143rem;
	letter-spacing: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #000;
	font-family: Open Sans, sans-serif;
	margin-bottom: 32px
}

p {
	margin: 0
}

p:not(:first-of-type) {
	margin-top: 32px
}

p a,
p a:visited {
	font-weight: 400;
	text-decoration: none
}

blockquote {
	border-left: 5px solid #e5e5e5;
	margin-left: 0;
	padding-left: 20px
}

img {
	display: block;
	height: auto;
	max-width: 100%;
	vertical-align: middle
}

img.inline {
	display: inline-block
}

.text-center img {
	margin-left: auto;
	margin-right: auto
}

.img-circle {
	border-radius: 50%
}

.img-rounded {
	border-radius: 20px
}

.img-centered {
	margin-left: auto;
	margin-right: auto
}

table {
	max-width: 100%;
	width: 100%
}

table,
table thead {
	background-color: #fff
}

table thead {
	color: #4c4c4c
}

@media (max-width:767px) {
	table thead {
		display: none
	}
}

table th {
	border-bottom: 2px solid #999;
	text-align: left
}

@media (max-width:767px) {
	table tr {
		border-bottom: 20px solid #fff
	}
}

table td {
	border-top: 1px solid #e5e5e5
}

@media (max-width:767px) {
	table td {
		display: block;
		padding-left: 0;
		text-align: left
	}

	table td:not([data-th=""]):before {
		content: attr(data-th) ": ";
		display: block;
		font-weight: 700;
		width: 100%
	}
}

@media (max-width:767px) {
	table td:last-child {
		border-bottom: 1px solid #e5e5e5
	}
}

table td,
table th {
	padding: 10px;
	vertical-align: middle
}

.table-bordered {
	border: 1px solid #e5e5e5
}

@media (max-width:767px) {
	.table-bordered {
		border-top: 0
	}
}

.table-striped tbody>tr:nth-of-type(odd) {
	background-color: #f2f2f2
}

@media (max-width:767px) {
	.table-striped tbody>tr:nth-of-type(odd) {
		background-color: #fff
	}
}

.table-hover tbody>tr:hover {
	background-color: #e8e8e8
}

.f-cursive {
	font-family: Yellowtail, cursive !important;
}

.text-left {
	text-align: left
}

.text-center {
	text-align: center
}

.text-right {
	text-align: right
}

.text-justify {
	text-align: justify
}

.text-lowercase {
	text-transform: lowercase
}

.text-uppercase {
	text-transform: uppercase
}

.text-capitalize {
	text-transform: capitalize
}

.bold, .fw-bold {
	font-weight: 700 !important;
}

.fw-normal {
	font-weight: 400 !important;
}

.display-1 {
	font-size: 2.5rem !important;
}

.small,
small {
	font-size: 85%
}

.text-ellipse {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

hr {
	border: 0;
	border-top: 1px solid #e5e5e5;
	margin-bottom: 20px;
	margin-top: 20px
}

ol,
ul {
	margin-bottom: 32px;
	margin-top: 0
}

ol ol,
ol ul,
ul ol,
ul ul {
	margin-bottom: 0
}

.list-unstyled {
	list-style: none;
	padding-left: 0
}

.list-unstyled li {
	margin: 0 0 15px
}

.list-inline {
	list-style: none;
	padding-left: 0
}

.list-inline>li {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px
}

form {
	display: grid;
	grid-template-columns: 1fr;
	margin: 32px 0
}

fieldset {
	border: 0;
	border-top: 1px solid #e5e5e5;
	margin: 0 0 20px;
	padding: 0
}

legend {
	padding-right: 20px;
	margin-bottom: 30px
}

label {
	display: block;
	margin-bottom: 5px
}

label.form-label-standalone {
	margin-bottom: 10px
}

label.form-checkbox-label,
label.form-radio-label {
	display: inline-block;
	margin-bottom: 0;
	margin-left: 10px
}

select {
	background-color: #fff;
	border-radius: 0;
	color: #000;
	padding: 10px;
	width: 100%
}

.form-input {
	margin-bottom: 15px
}

.form-input:after,
.form-input:before {
	content: " ";
	display: table
}

.form-input:after {
	clear: both
}

.form-input.error .form-email,
.form-input.error .form-select,
.form-input.error .form-text,
.form-input.error .form-textarea {
	border-color: #de4949
}

.form-email,
.form-select,
.form-text,
.form-textarea {
	background-color: #fff;
	border: 1px solid #e5e5e5;
	color: #000;
	max-width: 100%;
	padding: 15px;
	width: 100%
}

.form-email:hover,
.form-select:hover,
.form-text:hover,
.form-textarea:hover {
	border-color: #999
}

.form-email:focus,
.form-select:focus,
.form-text:focus,
.form-textarea:focus {
	border-color: #a51617;
	outline: 0 !important
}

.form-extra {
	display: none
}

.helper-block {
	color: #999;
	display: block;
	font-size: 85%;
	margin: 5px 0
}

.helper-block.error {
	color: #de4949
}

.no-show {
	display: none !important;
}

.no-show.secondary {
	margin-top: 10px
}

.notification-error,
.notification-success,
.notification-warning {
	margin-bottom: 20px;
	padding: 10px 15px
}

.notification-success {
	background-color: #68ab69;
	color: #fff
}

.notification-error {
	background-color: #de4949;
	color: #fff
}

.notification-icon {
	margin-right: 10px
}

.m0 {
	margin: 0 !important
}

.mb0 {
	margin-bottom: 0 !important
}

.mb20 {
	margin-bottom: 20px !important;
}

.mb50 {
	margin-bottom: 50px
}

.mt0 {
	margin-top: 0 !important
}

.mt20 {
	margin-top: 20px
}

.mt40 {
	margin-top: 40px
}

.pt0 {
	padding-top: 0 !important
}

.pt20 {
	padding-top: 20px
}

.margin-horizontal-auto {
	margin-left: auto;
	margin-right: auto
}

.clearfix:after,
.clearfix:before {
	content: " ";
	display: table
}

.clearfix:after {
	clear: both
}

.float-left {
	float: left
}

.float-right {
	float: right
}

.hidden {
	display: none !important
}

.vertical-center {
	display: flex;
	align-items: center;
	justify-content: center
}

.modal {
	background-color: rgba(0, 0, 0, .5);
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transform: scale(1.1);
	transition: visibility 0s linear .25s, opacity .25s 0s, transform .25s;
	visibility: hidden;
	width: 100%;
	z-index: 9000
}

@media (max-width:575px) {
	.modal {
		overflow-y: auto
	}
}

.modal.show-modal {
	opacity: 1;
	transform: scale(1);
	transition: visibility 0s linear 0s, opacity .25s 0s, transform .25s;
	visibility: visible
}

.modal-content {
	background-color: #fff;
	border-radius: 5px;
	left: 50%;
	max-width: 100%;
	padding: 20px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 500px
}

@media (max-width:575px) {
	.modal-content {
		left: 0;
		top: 0;
		transform: translate(0)
	}
}

.modal-content .gfield_html_formatted p:first-of-type {
	margin-right: 50px
}

.modal-heading {
	align-items: center;
	border-bottom: 1px solid #e5e5e5;
	display: flex;
	flex-direction: row;
	margin-bottom: 15px;
	padding: 15px 0;
	position: relative
}

.modal-heading h4 {
	flex: 1;
	margin: 0
}

.button.modal-close,
.button.modal-close:visited {
	font-size: 30px;
	line-height: 1;
	background-color: transparent;
	color: #000;
	cursor: pointer;
	min-width: 10px;
	padding: 0
}

.button.modal-close:focus,
.button.modal-close:hover,
.button.modal-close:visited:focus,
.button.modal-close:visited:hover {
	background-color: transparent;
	color: var(--primary)
}

address {
	font-style: normal
}

.pagination {
	margin-top: 40px;
	text-align: center
}

.pagination .page-numbers {
	border: 1px solid var(--primary);
	color: var(--primary);
	line-height: 1;
	padding: 5px 10px;
	text-decoration: none
}

.pagination .page-numbers.current,
.pagination .page-numbers:focus,
.pagination .page-numbers:hover {
	border-color: #000;
	color: #000
}

.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%
}

@media (max-width:991px) {
	.embed-container {
		margin-top: 30px
	}
}

.embed-container embed,
.embed-container iframe,
.embed-container object {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

@media (min-width:1200px) {
	.hide-on-desktop {
		display: none !important
	}
}

@media (max-width:1199px) and (min-width:992px) {
	.hide-on-laptop {
		display: none !important
	}
}

@media (max-width:991px) and (min-width:768px) {
	.hide-on-tablet {
		display: none !important
	}
}

@media (max-width:767px) {
	.hide-on-mobile {
		display: none !important
	}
}

@supports (-ms-ime-align:auto) {

	img[data-src],
	img[data-srcset] {
		display: block;
		min-height: 1px
	}
}

@media screen and (-ms-high-contrast:active),
screen and (-ms-high-contrast:none) {

	[class*=flex-column-],
	[class^=flex-column-] {
		flex-basis: auto;
		flex-grow: 1
	}

	.flex-column-25 {
		max-width: 25%;
		width: 25%
	}

	.flex-column-33 {
		max-width: 33%;
		width: 33.33%
	}

	.flex-column-40 {
		max-width: 40%;
		width: 40%
	}

	.flex-column-50 {
		max-width: 50%;
		width: 50%
	}

	.flex-column-60 {
		max-width: 60%;
		width: 60%
	}

	.flex-column-66 {
		max-width: 66%;
		width: 66%
	}

	.flex-column-75 {
		max-width: 75%;
		width: 75%
	}

	.flex-column-100 {
		max-width: 100%;
		width: 100%
	}
}

body,
html {
	height: 100vh
}

body {
	background-image: url(../images/common/img-pattern.jpg);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative
}

.webp body {
	background-image: url(../images/common/img-pattern.webp)
}

body.light-grey {
	background-color: #f2f2f2
}

body.no-background {
	background-image: none
}

body.rdh-light {
	background-image: url(../images/common/img-RDH-pattern-white.jpg)
}

.webp body.rdh-light {
	background-image: url(../images/common/img-RDH-pattern-white.webp)
}

body.rdh-red {
	background-image: url(../images/common/img-RDH-pattern-red.jpg);
	color: #fff
}

.webp body.rdh-red {
	background-image: url(../images/common/img-RDH-pattern-red.webp)
}

body.rdh-teal {
	background-image: url(../images/common/img-RDH-pattern-teal.jpg);
	color: #fff
}

.webp body.rdh-teal {
	background-image: url(../images/common/img-RDH-pattern-teal.webp)
}

.page-title {
	font-size: 60px;
	font-size: 2.14286rem;
	line-height: 66px;
	line-height: 2.35714rem;
	color: var(--primary);
	font-family: Open Sans, sans-serif;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0;
	margin-bottom: 50px;
	position: relative;
	text-transform: none
}

@media (max-width:1500px) {
	.page-title {
		margin-bottom: 50px
	}
}

.page-title.black {
	color: #000
}

.page-title.teal {
	color: var(--secondary);
}

.page-title.mb40 {
	margin-bottom: 40px
}

.page-title.white {
	color: #fff
}

.billboard .page-title {
	margin-bottom: 40px
}

.cover-page .page-title {
	font-size: 78px;
	font-size: 2.78571rem;
	line-height: 86px;
	line-height: 3.07143rem;
	color: #fff;
	margin-bottom: 40px;
	padding-bottom: 40px
}

.cover-page .page-title:after {
	border-bottom: 8px solid var(--primary);
	bottom: 0;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: translate(-50%);
	width: 190px
}

.cover-page .page-title.teal:after {
	border-color: var(--secondary);
}

.page-title .yellowtail {
	color: var(--secondary);
	font-family: Yellowtail, cursive;
	font-weight: 400
}

.page-title img {
	display: inline-block;
	margin-right: .5rem;
	vertical-align: baseline;
}

.section-title {
	font-size: 40px;
	font-size: 1.42857rem;
	line-height: 46px;
	line-height: 1.64286rem;
	color: #000;
	font-family: Open Sans, sans-serif;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0;
	margin-top: 0;
	text-transform: none
}

.cover-page .section-title {
	font-size: 50px;
	font-size: 1.78571rem;
	line-height: 58px;
	line-height: 2.07143rem;
	color: #fff
}

.heading-title {
	font-size: 34px;
	font-size: 1.21429rem;
	line-height: 40px;
	line-height: 1.42857rem;
	color: #000;
	font-family: Open Sans, sans-serif;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: none
}

.heading-title.red {
	color: var(--primary)
}

.heading-title.white {
	color: #fff
}

.section-heading {
	text-transform: uppercase;
	font-weight: 700
}

.section-heading.light {
	color: #fff
}

.section {
	padding-bottom: 60px;
	padding-top: 60px
}

@media (max-width:767px) {
	.section {
		padding-bottom: 30px;
		padding-top: 30px
	}
}

.section.p0 {
	padding-bottom: 0
}

.section.p0,
.section.pt0 {
	padding-top: 0
}

.section.pb0 {
	padding-bottom: 0
}

.section.section-cover {
	align-items: center;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	height: 100vh;
	justify-content: center
}

.section.section-cover .container.wide {
	max-width: 1300px
}

@media (max-width:1500px) {
	.section.section-cover .container.wide {
		max-width: 880px
	}
}

.section.section-quad {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100vh;
	justify-content: center
}

.section.section-quad .container.wide {
	max-width: 1600px
}

.billboard .section .container {
	color: #fff;
	max-width: 1170px;
	text-align: center
}

.red-text .section .container {
	color: var(--primary)
}

.picture-book .section {
	height: 100%;
	padding: 0
}

.picture-book .section .container {
	display: grid;
	grid-gap: 60px;
	grid-template-columns: 60% auto;
	height: 100%
}

.picture-book .section .pb-content-background {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover
}

.picture-book .section .pb-content {
	padding-bottom: 60px;
	padding-top: 60px
}

.section.progress-map {
	height: 100vh;
	padding: 0;
	width: 100%
}

.cover-content {
	font-size: 50px;
	font-size: 1.78571rem;
	line-height: 58px;
	line-height: 2.07143rem;
	color: #fff
}

.mw80 {
	margin-left: auto;
	margin-right: auto;
	max-width: 80%
}

@media (max-width:991px) {
	.mw80 {
		max-width: 100%
	}
}

.mw60 {
	margin-left: auto;
	margin-right: auto;
	max-width: 60%
}

@media (max-width:991px) {
	.mw60 {
		max-width: 80%
	}
}

@media (max-width:575px) {
	.mw60 {
		max-width: 100%
	}
}

.revealable {
	opacity: 0;
	transform: translateY(30px);
	transition: all .5s ease;
	-webkit-transition: all .5s ease
}

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

.logo-next-steps {
	margin-bottom: 60px
}

.steps-grid {
	display: grid;
	grid-gap: 50px;
	grid-template-columns: repeat(5, minmax(0, 1fr))
}

.steps-grid .grid-item {
	font-size: 28px;
	font-size: 1rem;
	line-height: 36px;
	line-height: 1.28571rem;
	padding: 0 20px;
	text-align: center
}

.steps-grid .grid-item.step-1 .grid-item-title:before {
	background-image: url(../images/svgs/icon-step-1.svg)
}

.steps-grid .grid-item.step-2 .grid-item-title:before {
	background-image: url(../images/svgs/icon-step-2.svg)
}

.steps-grid .grid-item.step-3 .grid-item-title:before {
	background-image: url(../images/svgs/icon-step-3.svg)
}

.steps-grid .grid-item.step-4 .grid-item-title:before {
	background-image: url(../images/svgs/icon-step-4.svg)
}

.steps-grid .grid-item.step-5 .grid-item-title:before {
	background-image: url(../images/svgs/icon-step-5.svg)
}

.steps-grid .grid-item.step-6 .grid-item-title:before {
	background-image: url(../images/svgs/icon-step-6.svg)
}

.steps-grid .grid-item.step-7 .grid-item-title:before {
	background-image: url(../images/svgs/icon-step-7.svg)
}

.steps-grid .grid-item.step-8 .grid-item-title:before {
	background-image: url(../images/svgs/icon-step-8.svg)
}

.steps-grid .grid-item.step-9 .grid-item-title:before {
	background-image: url(../images/svgs/icon-step-9.svg)
}

.steps-grid .grid-item.step-10 .grid-item-title:before {
	background-image: url(../images/svgs/icon-step-10.svg)
}

.steps-grid .grid-item-title {
	font-size: 200px;
	font-size: 7.14286rem;
	line-height: 200px;
	line-height: 7.14286rem;
	color: rgba(107, 187, 176, .4);
	display: block;
	font-family: Open Sans, sans-serif;
	font-weight: 700;
	position: relative
}

.steps-grid .grid-item-title:before {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	content: "";
	display: block;
	height: 100px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	z-index: 5
}

.lists-grid {
	display: inline-grid;
	grid-gap: 50px;
	grid-template-columns: auto auto 1fr
}

.images-grid {
	display: inline-grid;
	grid-gap: 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 10px
}

.grid-image-item {
	align-items: flex-end;
	display: flex;
	justify-content: center;
	position: relative
}

.grid-image-item .heading-title {
	position: absolute;
	z-index: 5
}

.grid-image-item .data-overlay, .content-grid-image .data-overlay {
	position: absolute;
	bottom: 10px;
	left: 10px;
	display: flex;
	padding: 8px 12px;
	color: #fff;
	background-color: var(--secondaryTransparent);
	font-size: 16px;
	font-weight: 400;
	backdrop-filter: saturate(.5);
	z-index: 5;
}

.grid-image-item .data-overlay p, .content-grid-image .data-overlay p {
	margin: 0 !important;
	line-height: 1.4;
}

.grid-image-item .data-overlay p:not(:last-child) {
	margin-right: 15px !important;
}

.customization-grid {
	display: inline-grid;
	grid-gap: 30px;
	grid-template-columns: repeat(3, minmax(0, 1fr))
}

.customization-grid-item {
	text-align: center;
	text-transform: uppercase
}

.customization-grid-item img {
	margin-top: 10px
}

.button,
.button-alt,
.button-alt:visited,
.button:visited,
.gform_button,
button:not(.nav-toggle) {
	border: 0;
	border-radius: 0;
	display: inline-block;
	font-family: Open Sans, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	min-width: 200px;
	padding: 20px 30px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: all .25s;
	vertical-align: middle
}

.button-alt.to-fit,
.button-alt:visited.to-fit,
.button.to-fit,
.button:visited.to-fit,
.gform_button.to-fit,
button:not(.nav-toggle).to-fit {
	padding: 20px
}

.button-alt.full,
.button-alt:visited.full,
.button.full,
.button:visited.full,
.gform_button.full,
button:not(.nav-toggle).full {
	display: block
}

.button-alt.disabled,
.button-alt:visited.disabled,
.button.disabled,
.button:visited.disabled,
.gform_button.disabled,
button:not(.nav-toggle).disabled {
	cursor: default;
	opacity: .4;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
	filter: alpha(opacity=40)
}

.button,
.button:visited,
.gform_button,
button:not(.nav-toggle):not(.slick-arrow) {
	background-color: var(--primary);
	border: 2px solid var(--primary);
	color: #fff
}

.button.teal,
.button:visited.teal,
.gform_button.teal,
button:not(.nav-toggle):not(.slick-arrow).teal {
	color: #fff;
	background-color: var(--secondary);
	border-color: var(--secondary)
}

.button.teal:focus,
.button.teal:hover,
.button:focus,
.button:hover,
.button:visited.teal:focus,
.button:visited.teal:hover,
.button:visited:focus,
.button:visited:hover,
.gform_button.teal:focus,
.gform_button.teal:hover,
.gform_button:focus,
.gform_button:hover,
button:not(.nav-toggle):not(.slick-arrow).teal:focus,
button:not(.nav-toggle):not(.slick-arrow).teal:hover,
button:not(.nav-toggle):not(.slick-arrow):focus,
button:not(.nav-toggle):not(.slick-arrow):hover {
	background-color: transparent;
	border-color: #fff;
	color: #fff;
	outline: 0
}

.button.hover-red:focus,
.button.hover-red:hover,
.button:visited.hover-red:focus,
.button:visited.hover-red:hover,
.gform_button.hover-red:focus,
.gform_button.hover-red:hover,
button:not(.nav-toggle):not(.slick-arrow).hover-red:focus,
button:not(.nav-toggle):not(.slick-arrow).hover-red:hover {
	border-color: var(--primary);
	color: var(--primary)
}

.button.hover-teal:focus,
.button.hover-teal:hover,
.button:visited.hover-teal:focus,
.button:visited.hover-teal:hover,
.gform_button.hover-teal:focus,
.gform_button.hover-teal:hover,
button:not(.nav-toggle):not(.slick-arrow).hover-teal:focus,
button:not(.nav-toggle):not(.slick-arrow).hover-teal:hover {
	border-color: var(--secondary);
	color: var(--secondary)
}

.button-alt,
.button-alt:visited {
	background-color: transparent;
	border: 2px solid var(--primary);
	color: var(--primary)
}

.button-alt:hover,
.button-alt:visited:hover {
	background-color: var(--primary);
	border-color: var(--primary);
	color: #fff;
	outline: 0
}

.button-alt:focus,
.button-alt:visited:focus {
	background-color: rgba(0, 0, 0, .5);
	border-color: rgba(165, 22, 23, .5);
	color: rgba(165, 22, 23, .5);
	outline: 0
}

.button-spacing {
	margin-top: 50px
}

.wrapper {
	display: grid;
	height: 100vh;
	left: 0;
	position: relative;
	transition: transform .3s ease-in-out;
	z-index: 5
}

.wrapper.right-nav-layout {
	grid-template-areas: "MAIN HDNV";
	grid-template-columns: 1fr auto
}

.wrapper.right-nav-layout.dashboard,
.wrapper.right-nav-layout.not-found {
	grid-template-columns: auto 0
}

.wrapper.right-nav-layout.nav-bottom {
	grid-template-areas: "MAIN";
	grid-template-columns: 1fr
}

.wrapper.dashboard,
.wrapper.not-found {
	align-items: center
}

.topbar {
	background-color: var(--secondary);
	color: #fff;
	font-weight: 700;
	grid-area: TPB;
	min-height: 40px;
	padding: 5px 0;
	width: 100%;
	z-index: 1210
}

@media (max-width:767px) {
	.topbar {
		bottom: 0;
		position: fixed !important;
		top: auto !important;
		width: 100%
	}
}

.standard-layout .topbar {
	position: fixed;
	top: 0;
	z-index: 1210
}

@media (max-width:991px) {
	.standard-layout .topbar {
		position: relative
	}
}

.topbar .container {
	align-items: center;
	display: flex;
	flex-basis: 100%;
	justify-content: flex-end
}

@media (max-width:767px) {
	.topbar .container {
		display: block
	}
}

.topbar .topbar-list {
	margin: 0;
	padding: 0
}

.topbar .topbar-list li {
	margin-left: 20px;
	position: relative
}

@media (max-width:767px) {
	.topbar .topbar-list li {
		margin: 0;
		text-align: center;
		width: 49%
	}
}

.topbar .topbar-list li:not(:first-child):before {
	background-color: #000;
	content: "";
	display: block;
	height: 14px;
	left: -12px;
	margin-top: -7px;
	position: absolute;
	top: 50%;
	width: 1px
}

@media (max-width:767px) {
	.topbar .topbar-list li:not(:first-child):before {
		left: 5px
	}
}

.topbar a,
.topbar a.topbar-phone-link,
.topbar a:visited {
	color: #fff;
	font-weight: 400;
	justify-self: end;
	text-decoration: none;
	text-transform: uppercase
}

@media (max-width:767px) {

	.topbar a,
	.topbar a.topbar-phone-link,
	.topbar a:visited {
		font-size: 14px;
		font-size: .5rem;
		line-height: 14px;
		line-height: .5rem;
		display: inline-block;
		padding: 10px 0
	}
}

.topbar a.topbar-phone-link:focus,
.topbar a.topbar-phone-link:hover,
.topbar a:focus,
.topbar a:hover,
.topbar a:visited:focus,
.topbar a:visited:hover {
	color: var(--secondary)
}

header {
	background-color: #fff;
	color: #fff;
	grid-area: HDR;
	height: 140px;
	margin: 0;
	position: relative;
	padding: 15px 0;
	top: 0;
	transition: all .25s ease-in-out;
	z-index: 1200
}

@media (max-width:991px) {
	header {
		height: auto
	}
}

header .container,
header .container-fluid {
	display: grid;
	grid-gap: 20px;
	grid-template-areas: "HDLG HDNV";
	grid-template-columns: 30% auto
}

@media (max-width:991px) {

	header .container,
	header .container-fluid {
		grid-template-areas: "HDLG HDMV";
		grid-template-columns: repeat(2, 1fr)
	}
}

.standard-layout header {
	left: 0;
	position: fixed;
	right: 0;
	top: 40px;
	z-index: 1200
}

@media (max-width:991px) {
	.standard-layout header {
		height: 110px;
		position: relative;
		top: 0
	}
}

@media (max-width:767px) {
	.standard-layout header {
		height: 80px
	}
}

.left-nav-layout header .container,
.left-nav-layout header .container-fluid {
	grid-template-areas: "HDLG""HDNV";
	grid-template-columns: 1fr
}

header.shrink {
	border-bottom: 1px solid #e5e5e5;
	height: 90px
}

header.shrink .header {
	margin: 4px 0;
	padding: 0
}

header.shrink .logo-link img {
	height: 60px;
	width: 88px
}

header.shrink a.inline-nav-link {
	padding: 15px 0 5px
}

.header-logo {
	align-items: center;
	display: flex;
	grid-area: HDLG;
	justify-content: flex-start
}

.logo-link {
	display: block
}

.logo-link img {
	height: 100px;
	width: 140px;
	transition: all .25s ease-in-out
}

@media (max-width:991px) {
	.logo-link img {
		height: 60px;
		width: 88px
	}
}

nav {
	background-color: #000;
	display: grid;
	grid-area: HDNV;
	grid-gap: 0;
	grid-template-areas: "NLB NLG";
	grid-template-columns: 50px auto;
	height: 100vh;
	transition: all .25s ease-in-out;
	z-index: 20
}

.dashboard nav,
.not-found nav {
	background-color: transparent
}

nav.subnav {
	position: absolute;
	left: -570px;
	width: 570px
}

.nav-closed nav.subnav {
	left: -50px
}

nav.bottom {
	background-color: transparent;
	bottom: 0;
	grid-template-areas: "NLG NLB";
	grid-template-columns: auto 50px;
	grid-template-rows: 1fr;
	height: 50px;
	position: absolute;
	width: 100vw
}

.nav-list-bar {
	align-items: center;
	background-color: var(--primary);
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 40px;
	font-weight: 700;
	grid-area: NLB;
	height: 100vh;
	justify-content: center;
	left: 0;
	line-height: 1;
	position: relative;
	width: 50px
}

.nav-list-bar.open {
	content: "\f054"
}

.bottom .nav-list-bar {
	height: 50px;
	width: auto
}

.nav-list-grid {
	display: grid;
	grid-area: NLG;
	grid-gap: 0;
	grid-template-rows: repeat(auto-fit, minmax(0, 1fr));
	height: calc(100vh - 170px);
	position: relative;
	transition: all .25s ease-in-out;
	width: 100%
}

.bottom .nav-list-grid {
	background-color: #000;
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	grid-template-rows: 1fr;
	height: auto;
	bottom: -50px
}

.bottom .nav-list-grid.open {
	bottom: 0
}

a.nav-list-grid-link,
a.nav-list-grid-link:visited {
	align-items: center;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: auto 1fr;
	min-height: 100px
}

.bottom a.nav-list-grid-link,
.bottom a.nav-list-grid-link:visited {
	grid-template-columns: 1fr;
	min-height: 40px;
	text-align: center
}

a.nav-list-grid-link.red:hover,
a.nav-list-grid-link:visited.red:hover {
	background-color: rgba(165, 22, 23, .5)
}

a.nav-list-grid-link.red.active,
a.nav-list-grid-link:visited.red.active {
	background-color: var(--primary)
}

a.nav-list-grid-link.teal:hover,
a.nav-list-grid-link:visited.teal:hover {
	background-color: rgba(107, 187, 176, .5)
}

a.nav-list-grid-link.teal.active,
a.nav-list-grid-link:visited.teal.active {
	background-color: var(--secondary)
}

.nav-list-grid-image {
	height: 100%;
	overflow: hidden
}

.bottom .nav-list-grid-image {
	display: none
}

.nav-list-grid-image img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%
}

.nav-list-grid-title {
	font-size: 24px;
	font-size: .85714rem;
	line-height: 28px;
	line-height: 1rem;
	color: #fff;
	margin: 0
}

.nav-footer-grid {
	bottom: 40px;
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(4, 1fr);
	margin: 0;
	position: fixed;
	right: 80px;
	z-index: 200
}

.nav-footer-grid.subnav {
	grid-gap: 10px;
	grid-template-columns: 1fr 1fr auto 1fr
}

.nav-footer-grid.bottom {
	bottom: 80px;
	left: 50%;
	right: auto;
	transform: translate(-50%)
}

.nav-footer-inline-buttons {
	display: none;
	grid-gap: 10px;
	grid-template-columns: repeat(2, 1fr)
}

.subnav .nav-footer-inline-buttons {
	display: grid
}

a.nav-footer-link,
a.nav-footer-link:visited {
	align-items: center;
	background-color: var(--primary);
	color: #fff;
	display: flex;
	height: 60px;
	justify-content: center;
	margin: 0;
	padding: 10px;
	transition: all .3s cubic-bezier(.25, .8, .25, 1);
	width: 60px
}

a.nav-footer-link:focus,
a.nav-footer-link:hover,
a.nav-footer-link:visited:focus,
a.nav-footer-link:visited:hover {
	box-shadow: 0 0 0 5px rgba(107, 187, 176, .25);
	outline: none !important
}

a.nav-footer-link.p5,
a.nav-footer-link:visited.p5 {
	padding: 5px
}

.subnav a.nav-footer-link,
.subnav a.nav-footer-link:visited {
	display: flex
}

a.nav-footer-link.next-link,
a.nav-footer-link.prev-link,
a.nav-footer-link:visited.next-link,
a.nav-footer-link:visited.prev-link {
	font-size: 44px;
	line-height: 1
}

.nav-toggle {
	font-size: 12px;
	line-height: 12px;
	align-items: center;
	background-color: #fff;
	border: 0;
	box-shadow: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 60px;
	justify-content: center;
	margin: 0;
	padding: 10px;
	position: relative;
	transition: all .3s cubic-bezier(.25, .8, .25, 1);
	width: 60px;
	z-index: 200
}

.subnav .nav-toggle {
	bottom: 0;
	position: relative;
	right: 0
}

.nav-toggle:focus,
.nav-toggle:hover {
	outline: none !important
}

.nav-toggle:focus,
.nav-toggle:hover,
.subnav .nav-toggle:focus,
.subnav .nav-toggle:hover {
	box-shadow: 0 0 0 5px rgba(107, 187, 176, .25)
}

.nav-toggle .button-text {
	font-size: 12px;
	line-height: 12px;
	color: var(--primary);
	display: inline-block;
	margin: 0 0 4px
}

.nav-toggle .icon-bar-span {
	display: block;
	margin-top: -4px
}

.nav-toggle .icon-bar {
	background-color: var(--primary);
	border-radius: 1px;
	display: block;
	height: 2px;
	transition: transform .25s;
	width: 35px
}

.nav-toggle .icon-bar+.icon-bar {
	margin-top: 6px
}

.nav-toggle.open .button-text {
	opacity: 0;
	transform: translateX(-100%)
}

.nav-toggle.open .icon-bar {
	outline: none
}

.nav-toggle.open .icon-bar:nth-child(2) {
	transform: translateY(0) rotate(45deg)
}

.nav-toggle.open .icon-bar:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg)
}

.nav-overlay {
	background-color: #000;
	bottom: 0;
	color: #fff;
	display: none;
	left: 0;
	padding: 60px;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 100
}

@media (max-width:1500px) {
	.nav-overlay {
		padding: 50px
	}
}

.nav-overlay.open {
	display: block
}

@media (max-width:1500px) {
	.nav-overlay.open {
		overflow-y: scroll
	}
}

.nav-overlay-grid {
	display: grid;
	grid-gap: 40px;
	grid-template-areas: "NOGL1 NOGL4 NOGL7""NOGL2 NOGL5 .""NOGL3 NOGL6 .";
	grid-template-columns: repeat(3, minmax(0, 1fr))
}

@media (max-width:1500px) {
	.nav-overlay-grid {
		grid-gap: 40px
	}
}

.nav-overlay-grid-list {
	list-style: none;
	margin: 0;
	padding: 0
}

.nav-overlay-grid-list:first-child {
	grid-area: NOGL1
}

.nav-overlay-grid-list:nth-child(2) {
	grid-area: NOGL2
}

.nav-overlay-grid-list:nth-child(3) {
	grid-area: NOGL3
}

.nav-overlay-grid-list:nth-child(4) {
	grid-area: NOGL4
}

.nav-overlay-grid-list:nth-child(5) {
	grid-area: NOGL5
}

.nav-overlay-grid-list:nth-child(6) {
	grid-area: NOGL6
}

.nav-overlay-grid-list:nth-child(7) {
	grid-area: NOGL7
}

.nav-overlay-grid-list li {
	margin-bottom: 16px
}

a.nav-primary-link,
a.nav-primary-link:visited {
	font-size: 30px;
	line-height: 36px;
	color: var(--secondary);
	font-weight: 700;
	position: relative;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 1px;
	text-underline-position: under
}

a.nav-primary-link:focus:before,
a.nav-primary-link:hover:before,
a.nav-primary-link:visited:focus:before,
a.nav-primary-link:visited:hover:before {
	color: hsla(0, 0%, 100%, .3);
	content: "\00BB";
	font-weight: 200;
	left: -25px;
	line-height: 1;
	position: absolute
}

a.nav-dropdown-link,
a.nav-dropdown-link:visited {
	font-size: 30px;
	line-height: 36px;
	color: #fff;
	position: relative
}

@media (max-width:1500px) {

	a.nav-dropdown-link,
	a.nav-dropdown-link:visited {
		font-size: 1.8vw;
		line-height: 1.25
	}
}

a.nav-dropdown-link:focus:before,
a.nav-dropdown-link:hover:before,
a.nav-dropdown-link:visited:focus:before,
a.nav-dropdown-link:visited:hover:before {
	color: hsla(0, 0%, 100%, .3);
	content: "\00BB";
	font-weight: 200;
	left: -25px;
	line-height: 1;
	position: absolute
}

.hero {
	align-items: center;
	background-color: var(--primary);
	color: #fff;
	display: flex;
	height: 160px;
	justify-content: center
}

@media (max-width:767px) {
	.hero {
		height: 120px
	}
}

.hero .container {
	align-items: center;
	display: flex;
	justify-content: center;
	flex-direction: column
}

.hero.home {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 50vh;
	min-height: 400px
}

@media (max-width:991px) {
	.hero.home {
		height: 300px
	}
}

@media (max-width:767px) {
	.hero.home {
		height: 300px
	}
}

.hero .button {
	margin-top: 32px
}

main {
	grid-area: MAIN
}

main.not-found {
	min-height: 500px
}

.main-content {
	padding-left: 5%;
	padding-right: 5%
}

.cover-page .main-content,
.map-page .main-content {
	padding: 0
}

.dashboard .main-content {
	text-align: center
}

.main-content.billboard {
	align-items: flex-end;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center
}

.main-content.billboard.content-top {
	align-items: flex-start
}

.main-content.billboard.contain {
	background-size: contain
}

.main-content.billboard ul>li {
	text-align: left
}

.main-content.billboard ul>li:not(:first-child) {
	margin-top: 10px
}

.main-content.menu .content-grid-image {
	justify-content: flex-start
}

.main-content.menu .page-title {
	margin-bottom: 40px
}

.main-content.menu .page-content ol li:not(:first-child),
.main-content.menu .page-content ul li:not(:first-child) {
	margin-top: 15px
}

.main-content.picture-book {
	padding-left: 0
}

footer {
	background-color: var(--secondary);
	color: #fff;
	grid-area: FTR;
	padding: 50px 0 0
}

@media (max-width:767px) {
	footer {
		padding: 50px 0 70px
	}
}

footer a,
footer a:visited {
	color: #fff
}

footer a:focus,
footer a:hover,
footer a:visited:focus,
footer a:visited:hover {
	color: var(--secondary)
}

.copyright {
	font-size: 20px;
	font-size: .71429rem;
	line-height: 28px;
	line-height: 1rem;
	text-align: center;
	text-transform: uppercase
}

.wdc-badge {
	display: inline-block;
	height: 17px;
	margin-top: -5px;
	width: 23px
}

.footer-social-list {
	margin: 0
}

.footer-social-list a,
.footer-social-list a:visited {
	font-size: 28px;
	font-size: 1rem;
	line-height: 28px;
	line-height: 1rem;
	color: var(--secondary);
	margin: 0 10px
}

.footer-social-list a:focus,
.footer-social-list a:hover,
.footer-social-list a:visited:focus,
.footer-social-list a:visited:hover {
	color: #fff
}

.mobile-check {
	background-color: transparent;
	display: block;
	height: 1px;
	width: 1px
}

@media (max-width:767px) {
	.mobile-check {
		display: none
	}
}

.dashboard-grid {
	align-items: center;
	display: inline-grid;
	grid-gap: 0;
	grid-template-columns: repeat(4, 1fr);
	margin-left: auto;
	margin-right: auto
}

.dashboard-grid-item {
	max-width: 400px;
	text-align: center
}

.dashboard-grid-item img {
	margin-left: auto;
	margin-right: auto
}

a.dashboard-grid-link,
a.dashboard-grid-link:visited {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 400px;
	position: relative;
	border: .5rem solid var(--primary);
}

a.dashboard-grid-link:focus .dashboard-grid-overlay,
a.dashboard-grid-link:hover .dashboard-grid-overlay,
a.dashboard-grid-link:visited:focus .dashboard-grid-overlay,
a.dashboard-grid-link:visited:hover .dashboard-grid-overlay {
	background-color: rgba(0, 0, 0, .5)
}

.dashboard-grid-overlay {
	align-items: center;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	left: 0;
	padding: 40px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	transition: all .3s cubic-bezier(.25, .8, .25, 1);
	z-index: 10;
	background-color: rgba(0, 0, 0, .25);
}

.dashboard-grid-title {
	color: #fff;
	margin: 0
}

.section-cta {
	margin-top: 30px;
	text-align: center
}

.section-cta.text-left {
	text-align: left
}

.cover-buttons-grid {
	display: inline-grid;
	grid-gap: 30px;
	grid-template-columns: minmax(0, 1fr);
	margin-top: 45px;
	min-width: 540px
}

@media (max-width:1500px) {
	.cover-buttons-grid {
		margin-top: 50px
	}
}

.billboard .cover-buttons-grid {
	margin-top: 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr))
}

.quad-grid {
	display: grid;
	grid-gap: 0;
	grid-template-columns: repeat(2, 1fr)
}

a.quad-grid-link,
a.quad-grid-link:visited {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative
}

.quad-grid-title {
	color: #fff;
	position: absolute;
	z-index: 10
}

.quad-grid-image img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%
}

.content-grid {
	display: grid;
	grid-gap: 60px;
	grid-template-areas: "CGI CGC";
	grid-template-columns: auto 1fr
}

.content-grid.one-column,
.picture-book .content-grid {
	grid-template-columns: 1fr;
	grid-template-areas: "CGC"
}

.content-grid.half {
	grid-template-columns: 1fr 1fr;
	grid-template-areas: "CGC ."
}

.content-grid.w70 {
	grid-template-columns: 70% auto;
	grid-template-areas: "CGC ."
}

.content-grid.reverse {
	align-items: center;
	grid-template-areas: "CGC CGI";
	grid-template-columns: 40% auto
}

.content-grid-image {
	align-items: flex-start;
	display: flex;
	grid-area: CGI;
	justify-content: center
}

.content-grid-image.test {
	align-items: center;
	background-color: #d8d8d8;
	width: 700px
}

@media (max-width:1500px) {
	.content-grid-image.test {
		width: 300px
	}
}

.reverse .content-grid-image {
	justify-content: flex-start
}

.content-grid-content {
	grid-area: CGC
}

.content-grid-content ol,
.content-grid-content ul {
	margin-bottom: 0
}

.content-grid-content ol.list-column-1,
.content-grid-content ul.list-column-1 {
	-moz-column-count: 1;
	column-count: 1
}

.content-grid-content ol.list-column-1 li:not(:first-child),
.content-grid-content ul.list-column-1 li:not(:first-child) {
	margin-top: 10px
}

.content-grid-content ol.list-column-3,
.content-grid-content ul.list-column-3 {
	-moz-column-count: 3;
	column-count: 3
}

.content-grid-content ol.list-column-3 li:not(:first-child),
.content-grid-content ul.list-column-3 li:not(:first-child) {
	margin-top: 10px
}

.content-grid-content ol+p,
.content-grid-content ul+p {
	margin-top: 40px
}

.content-grid-content ol li:not(:first-child),
.content-grid-content ul li:not(:first-child) {
	margin-top: 30px
}

@media (max-width:1500px) {

	.content-grid-content ol li:not(:first-child),
	.content-grid-content ul li:not(:first-child) {
		margin-top: 30px
	}
}

.callouts-grid {
	display: inline-grid;
	grid-gap: 30px;
	grid-template-columns: repeat(auto-fill, minmax(0, 380px));
	width: 100%
}

a.callouts-grid-link,
a.callouts-grid-link:visited {
	align-items: center;
	background-color: #d8d8d8;
	display: grid;
	grid-gap: 0;
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: 340px auto;
	text-align: center;
	transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

a.callouts-grid-link:focus,
a.callouts-grid-link:hover,
a.callouts-grid-link:visited:focus,
a.callouts-grid-link:visited:hover {
	box-shadow: 0 8px 18px rgba(0, 0, 0, .25), 0 0 0 rgba(0, 0, 0, .22)
}

.callout-grid-content {
	font-size: 20px;
	font-size: .71429rem;
	line-height: 26px;
	line-height: .92857rem;
	align-items: center;
	background-color: var(--primary);
	color: #fff;
	display: flex;
	font-weight: 700;
	height: 100%;
	justify-content: center;
	padding: 20px;
	text-transform: uppercase
}

.progress-map-overlay {
	bottom: 20px;
	left: 370px;
	min-width: 200px;
	position: absolute;
	text-align: center;
	z-index: 40
}

.progress-match-switch {
	font-size: 18px;
	font-size: .64286rem;
	line-height: 22px;
	line-height: .78571rem;
	color: var(--primary);
	cursor: pointer;
	font-weight: 700;
	text-transform: uppercase
}

.progress-match-switch:focus,
.progress-match-switch:hover {
	text-decoration: underline
}

.progress-map-image, .budget-worksheet-image {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	display: none;
	height: 100vh;
	position: relative;
	width: 100%;
	z-index: 2
}

.progress-map-image.active {
	display: block
}

.budget-worksheet-image {
	display: block;
	background-size: contain;
}

input.budget-input {
	background-color: transparent;
	border: 0;
	border-bottom: 2px solid transparent;
	padding-right: 1px;
	text-align: right
}

input.budget-input:focus {
	border-bottom: 2px solid var(--secondary);
	outline: none
}

input.budget-input.readonly:focus {
	border-bottom: 2px solid #e5e5e5
}

.tester {
	bottom: 0;
	display: grid;
	left: 0;
	opacity: 0;
	place-items: center;
	pointer-events: none;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 2000
}

.tester .screen-size {
	box-shadow: 0 0 0 1000px rgba(0, 0, 0, .4);
	height: 1080px;
	outline: 2px solid red;
	width: 1920px
}

.worksheet-footer,
.worksheet-header {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: 1fr auto;
	margin-bottom: 30px
}

.worksheet-footer .heading-title,
.worksheet-header .heading-title {
	font-size: 26px;
	font-size: .92857rem;
	line-height: 32px;
	line-height: 1.14286rem
}

.worksheet-footer-title .title-note,
.worksheet-header-title .title-note {
	font-size: 16px;
	font-size: .57143rem;
	line-height: 22px;
	line-height: .78571rem;
	color: #999;
	display: block;
	font-style: italic;
	margin-top: 5px
}

.worksheet-footer-number,
.worksheet-header-number {
	font-size: 26px;
	font-size: .92857rem;
	line-height: 32px;
	line-height: 1.14286rem;
	padding-right: 60px
}

.worksheet-section {
	background-color: #fff;
	border: 1px solid #f2f2f2;
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
	padding: 0;
	position: relative
}

.worksheet-section-title {
	position: relative
}

.worksheet-section-title span {
	font-size: 14px;
	font-size: .5rem;
	line-height: 14px;
	line-height: .5rem;
	background-color: var(--secondary);
	color: #fff;
	display: inline-block;
	font-weight: 700;
	min-width: 200px;
	padding: 15px;
	text-transform: uppercase
}

.worksheet-section-content {
	font-size: 22px;
	font-size: .78571rem;
	line-height: 28px;
	line-height: 1rem;
	flex: 1;
	padding: 30px 60px
}

.worksheet-section-grid-row {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: 1fr auto
}

.worksheet-section-grid-row:not(.first-row) {
	margin-top: 15px
}

.worksheet-section-grid-topic .topic-note {
	font-size: 16px;
	font-size: .57143rem;
	line-height: 22px;
	line-height: .78571rem;
	color: #999;
	display: block;
	font-style: italic;
	margin-top: 5px
}

.worksheet-section-footer {
	font-size: 22px;
	font-size: .78571rem;
	line-height: 28px;
	line-height: 1rem;
	background-color: #fff;
	border-top: 1px solid #f2f2f2;
	display: grid;
	grid-gap: 30px;
	grid-template-columns: 1fr auto;
	padding: 15px 60px;
	position: relative
}

.between-section-notice {
	font-size: 20px;
	font-size: .71429rem;
	line-height: 28px;
	line-height: 1rem;
	margin-bottom: 30px;
	margin-right: auto;
	max-width: 50%;
	text-align: left
}

.worksheet-columns {
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr 1fr
}

.testimonial-card {
	font-size: 18px;
	line-height: 1.5
}

.testimonial-card.card-blue .testimonial-card-content {
	background-color: #e7f9f7
}

.testimonial-card.card-blue .testimonial-card-content:after {
	border-color: transparent transparent #e7f9f7 #e7f9f7
}

.testimonial-card.card-blue .testimonial-card-details {
	background-color: #e7f9f7
}

.testimonial-card.card-pink .testimonial-card-content {
	background-color: #faeff1
}

.testimonial-card.card-pink .testimonial-card-content:after {
	border-color: transparent transparent #faeff1 #faeff1
}

.testimonial-card.card-pink .testimonial-card-details {
	background-color: #faeff1
}

.testimonial-card.card-grey .testimonial-card-content {
	background-color: #f5f5f5
}

.testimonial-card.card-grey .testimonial-card-content:after {
	border-color: transparent transparent #f5f5f5 #f5f5f5
}

.testimonial-card.card-grey .testimonial-card-details {
	background-color: #f5f5f5
}

.testimonial-card-content {
	background-color: #fff;
	border-radius: 15px;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, .1);
	position: relative
}

.testimonial-card-content:after {
	top: 100%;
	left: 25%;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	margin-left: -20px;
	border-color: transparent transparent #fff #fff;
	border-style: solid;
	border-width: 15px;
	transform-origin: 0 0;
	transform: rotate(-45deg);
	box-shadow: -3px 3px 8px 0 rgba(0, 0, 0, .05)
}

.testimonial-card-content .embed-container {
	border-radius: 15px 15px 0 0
}

.testimonial-card-details {
	background-color: #fff;
	border-radius: 15px;
	padding: 30px;
	position: relative;
	z-index: 5
}

.testimonial-card-details .heading-title {
	color: var(--primary);
	margin-bottom: 20px;
	text-transform: none
}

.testimonial-card-rating {
	color: #e4a206;
	display: block;
	letter-spacing: 2px;
	margin-bottom: 20px;
	text-align: center
}

.testimonial-card-author {
	font-weight: 700;
	margin-top: 20px
}

.customer-ratings {
	border-top: 2px solid #f2f2f2;
	margin: 60px auto 0;
	max-width: 50%;
	padding-top: 40px;
	position: relative
}

.testimonials-masonry {
	margin: 0;
	width: 100%
}

.testimonial-card {
	float: left;
	height: auto;
	margin-bottom: 30px;
	min-height: 130px;
	padding-bottom: 30px;
	position: relative
}

@media (max-width:767px) {
	.testimonial-card {
		float: none
	}
}

.testimonial-card,
.testimonial-grid-sizer {
	width: 21%
}

@media (max-width:991px) {

	.testimonial-card,
	.testimonial-grid-sizer {
		width: 48%
	}
}

@media (max-width:767px) {

	.testimonial-card,
	.testimonial-grid-sizer {
		width: 100%
	}
}

.examples-grid {
	display: inline-grid;
	gap: 0;
	grid-template-columns: repeat(4, minmax(0, var(--example-width)));
	position: relative
}

.examples-grid.open:after {
	color: #fff;
	content: "\00d7";
	display: block;
	font-size: 40px;
	line-height: 20px;
	pointer-events: none;
	position: absolute;
	right: 20px;
	text-shadow: 0 0 5px rgba(0, 0, 0, .7);
	top: 20px;
	z-index: 30
}

.examples-grid-item {
	height: 780px;
	outline: 1px solid #fff;
	overflow: hidden;
	position: relative
}

.examples-grid-item.active {
	overflow: visible;
	z-index: 20
}

.examples-grid-image {
	height: 100%;
	max-width: 1160px;
	position: absolute;
	width: auto
}

.item-2 .examples-grid-image {
	margin-left: calc(var(--example-width)*-1)
}

.item-3 .examples-grid-image {
	margin-left: calc(var(--example-width)*-2)
}

.item-4 .examples-grid-image {
	margin-left: calc(var(--example-width)*-3)
}

#anewgo-iframe {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 120px);
	margin-top: .35rem;
	border: none;
}
/*# sourceMappingURL=style.css.map */

.worksheet {
	padding-top: 0;
	background: #d4effc;
}
.worksheet-header-title, .land-costs-title {
	margin: 0;
	padding: 2.5rem;
	color: #fff;
	font-size: 1.5rem;
	background-image: url('/images/content/img-pattern-red.png');
	background-size: cover;
}
.worksheet-header-paragraph {
	margin-bottom: .5rem;
	padding: 1rem .75rem 0;
	font-size: .7rem;
	text-align: center;
	line-height: 1.4;
}
.worksheet-header-logo, .land-costs-logo {
	margin: 0 auto 1rem;
	height: 60px;
}
.worksheet-card {
	width: 95%;
	margin: auto;
	position: relative;
	text-align: center;
	background: white;
	padding-bottom: 1rem;
}
.worksheet-card h1 {
	margin: 0;
	padding: .25rem;
	background: var(--primary);
	color: white;
	font-size: 1rem;
	line-height: 1;
}
.worksheet-card h2 {
	margin: .5rem 0 0;
	font-size: .75rem;
	line-height: 1.2;
}
.worksheet-card p {
	margin: 0;
	font-size: .5rem;
	line-height: 1.4;
}
.worksheet-card-description {
	min-height: 90px;
	padding: .25rem .5rem 0;
}
.worksheet-card .plus-bubble {
	position: absolute;
	bottom: 1.2rem;
	left: 50%;
	margin: auto;
	padding: .125rem .45rem;
	color: white;
	background: var(--primary);
	border-radius: 2rem;
	transform: translateX(-50%);
}
.worksheet-card .plus-bubble p {
	margin: 0;
	padding: 0;
	display: inline;
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1;
}
.worksheet-card-img-wrapper {
	display: flex; 
	flex-direction: column; 
	justify-content: flex-end; 
	height: 100px; 
}
.worksheet-card-img-wrapper img {
	margin: 0 auto;
}
.worksheet-result-panel h1 {
	font-size: 1.25rem;
	line-height: 1;
}

.worksheet-input {
	width: 8rem;
	padding: .25rem;
	border: 2px solid var(--primary);
	border-radius: 0;
}
.worksheet-input.result {
	border-color: #e5e5e5;
	background: #fff;
}
.worksheet-result-panel {
	margin: 0 4rem 5rem auto;
	padding: .75rem 1.5rem .75rem 14rem;
	text-align: center;
	background: #fff;
	border: 3px solid var(--primary);
}
.worksheet-house-illustration {
	position: absolute; 
	top: -14rem; 
	z-index: 100;
}

.section-land-costs {
	position: relative;
	padding-bottom: 0;
	background-color: #d4eefb;
}
.section-land-costs .container {
	padding: 24px;
	z-index: 5;
}
.section-developing-land {
	position: relative;
	max-height: 100vh;
	padding-bottom: 0;
	background-color: transparent;
}
.section-developing-land .container {
	z-index: 5;
}
.table-land-costs {
	border: 2px solid var(--primary);
}
.table-land-costs th {
	padding: 24px;
	color: #fff;
	background-color: var(--primary);
	font-size: 28px;
	border-bottom: none;
}
.table-land-costs td {
	padding: 24px;
	font-size: 20px;
	line-height: 1.5;
}
.arrow-down {
	position: absolute;
	top: 0;
	left: 50%;
	height: auto;
	width: 10px;
	transform: translateX(-50%);
	z-index: 5;
}
.list-land-costs-heading {
	margin-bottom: 0;
	color: #fff;
	background-color: var(--primary);
	font-size: 20px;
	text-align: center;
	text-transform: uppercase;
}
.list-land-costs {
	margin: 0;
	padding: 16px 16px 16px 32px;
	background-color: #ffffffaa;
	font-size: 18px;
}
.list-land-costs li {
	margin-bottom: 8px;
	line-height: 1.5;
}
.copy-land-costs {
	margin-top: 16px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
}
.illustration-land-costs {
	position: absolute; 
	bottom: -2rem;
	width: 100%;
	z-index: 1;
}
.step-link {
	margin-right: .25rem;
}
.step-link:not(.active) {
	color: transparent;
	pointer-events: none;
}
.links-footer {
	position: absolute;
	bottom: .25rem;
	left: .25rem;
	z-index: 5;
}
.absolute-header {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 5;
}
.absolute-window {
	position: absolute;
	top: 4rem;
	right: 2rem;
	padding: 16px 32px 16px 32px;
	background-color: #ffffffaa;
	z-index: 5;
}
.absolute-window h2 {
	margin: 0 0 16px;
	font-size: 24px;
}
.absolute-window ul {
	margin: 0;
	padding: 0;
	list-style-position: inside;
}
.absolute-window ul li {
	margin-bottom: 8px;
	font-size: 20px;
	line-height: 1.2;
}
.video-iframe {
	margin-bottom: 16px;
}
.video-iframe iframe {
	width: 64vw;
	height: calc(64vw/1.77);
}
.links-row {
	display: flex;
	flex-direction: row;
	margin-bottom: 128px;
}
.links-row a {
	flex-grow: 1;
	margin-right: .5rem;
	padding: .5rem;
	color: #fff;
	background-color: #a51617;
	text-align: center;
}