@media (prefers-reduced-motion: no-preference) {
	:root {
		interpolate-size: allow-keywords;
	}

	html {
		scroll-behavior: smooth;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
		animation: none !important;
		transition-duration: 0s !important;
	}
}

.sr-only:not(:focus):not(:active),
.screen-reader-text:not(:focus):not(:active) {
	clip: rect(0 0 0 0); 
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap; 
	width: 1px;
}

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

a {
	transition: color 0.2s;
	color: inherit;
	text-decoration: none;
	outline-offset: 2px;
}

:target {
	scroll-margin-block: 75px;
}

[hidden] {
	display: none !important;
}

.post-content figure,
blockquote,
p {
	margin: 0 0 1.5em;

	&:last-child {
		margin: 0;
	}
}

b,
strong {
	font-weight: bold;
}

ul, ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

input::placeholder {
	opacity: 1;
	color: inherit;
}

/***** GLOBAL *****/
h1, .h1 {
	font-family: var(--font-tertiary);
	text-transform: uppercase;
	font-size: 6rem;
	line-height: 1em;
	margin: 0;
	letter-spacing: 0.2em;
	font-weight: normal;
}

h2, .h2 {
	font-family: var(--font-secondary);
	font-size: 3.2rem;
	line-height: 1.3em;
	letter-spacing: 0.02em;
	margin: 0 0 0.3em;
	font-weight: normal;
}

h3, .h3 {
	font-family: var(--font-body);
	font-size: 3.4rem;
	text-transform: uppercase;
	line-height: 1.3em;
	margin: 0;
	font-weight: normal;
}

h4, .h4 {
	font-family: var(--font-tertiary);
	text-transform: none;
	font-size: 4rem;
	line-height: 1em;
	margin: 0 0 0.3em;
	letter-spacing: 0.05em;
	font-weight: normal;
}

h5, .h5 {
	font-family: var(--font-body);
	font-size: 1.7rem;
	line-height: 1em;
	margin: 0 0 0.3em;
	font-weight: normal;
	color: inherit;
}

h6, .h6 {
	font-family: var(--font-secondary);
	font-size: 2.2rem;
	line-height: 1em;
	margin: 0 0 0.3em;
	font-weight: normal;
	color: inherit;
}

.red-text {
	color: var(--color-accent);
	text-transform: uppercase;
}

.richtext-content a:not(.button) {
	color: var(--color-accent);
	text-decoration: underline;
}

.richtext-content ol,
.richtext-content ul {
	margin: 0 0 1.5em;
	list-style-type: disc;
	padding: 0 0 0 1.5em;

	&:last-child {
		margin: 0;
	}
}

.richtext-content ol {
	list-style-type: decimal;
}

.richtext-content table {
	margin: 1.5em 0;
}

.aligncenter {
	display: block;
	margin: 0 auto;
}

.ratio-container {
	--ratio: 1;
	aspect-ratio: var(--ratio);
	position: relative;
	overflow: hidden;
}

.ratio-container--placeholder {
	background: #f7f5f5;

	img {
		width: 50px;
		height: auto;
		position: absolute;
		opacity: 0.6;
		top: 50%;
		left: 50%;
		translate: -50% -50%;
	}
}

.ratio-container > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 900px) {
	.page-section {
		scroll-margin: 10rem;
	}

	.richtext-content {
		word-wrap: break-word;
	}

	h1, .h1 {
		font-size: 3.2rem;
		line-height: 1.2em;
	}

	h2, .h2 {
		font-size: 2.2rem;
		line-height: 1.2em;
	}
	
	h3, .h3 {
		font-size: 2.2rem;
		line-height: 1.2em;
	}

	h4, .h4 {
		font-size: 3rem;
		line-height: 1.4em;
	}

	h5, .h5 {
		font-size: 1.6rem;
	}

	h6, .h6 {
		font-size: 1.6rem;
	}
}

.heading--with-dots {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-wrap: balance;
}

.heading--with-dots::before,
.heading--with-dots::after {
	content: '';
	width: 4rem;
	height: 3rem;
	background: url("../img/icon-dot-red.svg?v=2") space no-repeat center / auto 1.1rem;
}

body .follow-us {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--color-gold);
	font-family: var(--font-secondary);
	letter-spacing: 0.1em;
	font-size: 1.7rem;
	justify-content: center;
	text-transform: uppercase;
}

body .follow-us .button {
	padding: 0 1.5rem;
	min-width: 0;
	letter-spacing: 0;
}

.follow-us__text {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.follow-us__text::before,
.follow-us__text::after {
	content: '';
	width: 4rem;
	height: 1rem;
	background: url("../img/icon-dot-red.svg?v=2") space no-repeat center / auto 1.1rem;
}

@media (max-width: 900px) {
	.slider--hero .heading--with-dots::before,
	.slider--hero .heading--with-dots::after {
		display: none;
	}
	
	body .follow-us {
		gap: 1.5rem;
	}
	
	.follow-us__text {
		font-size: 1.4rem;
	}
	
	.follow-us__text::before,
	.follow-us__text::after {
		display: none;
	}
}
/***** END GLOBAL *****/

/**** SLIDER ****/
.slider {
	--slides-per-page: 3;
	--gap: 1rem;
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	gap: var(--gap);
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scroll-snap-stop: always;
}

.slider--full {
	.slider__slide {
		scroll-margin-left: var(--side-offset);

		&:first-child {
			margin-left: var(--side-offset);
		}

		&:last-child {
			margin-right: var(--side-offset);
			scroll-margin-right: var(--side-offset);
		}
	}
}

.slider {
	display: flex;
	--slides-per-page: 3;
	--gap: 0px;
	overflow-x: auto;
}

.slider__slide {
	--gap_per_item: var(--gap) * ( var(--slides-per-page) - 1 ) / var(--slides-per-page);
	flex: 0 0 calc(100% / var(--slides-per-page) - var(--gap_per_item));
}

.slider__controls {
	position: absolute;
	display: flex;
	top: 0;
	right: 0;
}

.slider__control {
	opacity: 0;
}
/**** END SLIDER ****/

/***** FORMS *****/
input
button,
textarea,
select,
button {
	font: inherit;
	accent-color: var(--color-accent);
	outline-offset: 2px;
	font-size: 1.6rem;
}

button {
	color: inherit;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
}

.select-wrapper {
	color: #000;
	display: block;
}

.select-wrapper:has(select[inert]) {
	color: var(--color-gray-medium);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="password"],
input[type="number"],
button,
textarea,
select {
	width: 100%;
	color: #000;
	display: block;
	background: transparent;
	border: 1px solid currentColor;
	height: 4.8rem;
	padding: 0 2.5rem;
	font-family: inherit;
	outline-offset: 2px;
}

input[type="checkbox"] {
	margin: 0 0.4rem 0 0;
	width: 1.6rem;
	height: 1.6rem;
}

select {
	appearance: none;
	color: inherit;
}

body .nf-field-element input[type="submit"],
.button {
	font-family: var(--font-body);
	
	letter-spacing: .06em;
	width: auto;
	height: 5rem;
	font-size: 1.9rem;
	padding: 0 2rem;
	min-width: 15rem;
	text-transform: uppercase;
	display: inline-flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-style: normal;
	text-decoration: none;
	outline-offset: 2px;
	transition: background 0.2s;
	border: 2px solid;
	background: transparent;
	border-color: var(--color-red);
	color: inherit;
	flex-shrink: 0;
}

.page-section--cta .button {
	border-color: var(--color-mint);
	color: var(--color-gold);
	font-family: var(--font-tertiary);
}

.site-footer .button,
body .nf-field-element input[type="submit"],
.page-section--welcome .button,
.page-section--hero .button {
	background: var(--color-green);
	border-color: var(--color-mint);
	color: var(--color-gold);
	padding: 0 3rem;
	font-family: var(--font-tertiary);
}

.page-section--hero .scroll-down {
	min-width: 0;
	font-family: var(--font-tertiary);
	padding: 0 2rem;
}

.button--outline {
	border: 1px solid var(--color-accent);
	color: var(--color-dark);
	background: transparent;
}

.form-line {
	display: flex;
	flex-wrap: wrap;
}

.form-line > *:not(.button),
.form-line .select-wrapper select {
	flex: 1;
	border-right: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.form-line > .button {
	width: auto;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

@media (max-width: 768px) {
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="date"],
	input[type="password"],
	input[type="number"],
	button,
	textarea,
	select {
		padding: 0 2rem;
	}

	.select-wrapper::after {
		right: 1em;
	}

	
	input[type="submit"],
	.button {
		font-size: 1.5rem;
	}
}

fieldset {
	border: 0;
	padding: 2.5rem;
	margin: 0 0 3rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}


fieldset p.form-row {
	margin: 0;
}

legend {
	float: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 1.5rem;
	line-height: 1.5em;
	color: var(--color-gray-medium);
	margin: 0 0 1em;
	padding: 0;
}

.form-row--required > label::after {
	content: ' *';
	color: var(--color-accent);
}
/***** END FORMS *****/

/***** HEADER *****/
.main-header {
	background: var(--color-green);
	color: var(--color-gold);
	border-bottom: 2px solid var(--color-gold);
}

.header-top {
	font-size: 1.3rem;
	height: 3.5rem;
	display: flex;
	align-items: center;
	letter-spacing: 0.1em;
	border-bottom: 2px solid var(--color-mint);
	text-align: center;
	justify-content: center;
}

.header-branding {
	text-align: center;
	border-bottom: 2px solid var(--color-gold);
	position: relative;
	z-index: 5;
	background: var(--color-green);
}

.header-branding::after {
	content: '';
	top: 100%;
	left: 0;
	width: 100%;
	border-bottom: 2px solid var(--color-mint);
	height: 1.2rem;
	position: absolute;
	margin-top: 2px;
	background: var(--color-green);
}

.header-branding .container {
	display: flex;
	justify-content: center;
}

.header-branding a {
	display: block;
	padding: 2.5rem 0;
	margin: 0 auto;
}

.header-bottom {
	border-bottom: 2px solid var(--color-mint);
	margin: 1rem 0;
}

.header-navigation .menu {
	display: flex;
	justify-content: center;
	align-items: center;
}

.header-navigation .menu a {
	display: block;
	padding: 1.5rem;
	font-family: var(--font-tertiary);
	text-transform: uppercase;
	font-size: 1.9rem;
	line-height: 1.3em;
	letter-spacing: 0.1em;
}

.header-navigation .current-menu-item a {
	color: #fff;
	position: relative;
}

@media (min-width: 901px) {
	.header-navigation .current-menu-item a::after {
		content: '';
		background: url("../img/icon-dot-gold.svg") space no-repeat center / 10px auto;
		width: 3rem;
		height: 5px;
		position: absolute;
		top: 50%;
		left: 50%;
		translate: -50% -50%;
		margin-top: 0.8em;
	}
}

.header-navigation .booking-link a {
	color: var(--color-mint);
	font-family: var(--font-body);
	font-size: 1.9rem;
	margin-top: -1px;
	
	&:hover {
		color: #fff;
	}
}

.header-navigation .menu li:not(:first-child) {
	position: relative;

	&::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		translate: -50% -50%;
		width: 4px;
		height: 4px;
		border-radius: 50%;
		background: var(--color-red);
	}
}

.mobile-menu-activator {
	width: 4.5rem;
	height: 4.5rem;
	border: 0;
	text-indent: -30rem;
	overflow: hidden;
	position: relative;
	color: inherit;
	display: none;
	z-index: 5;
	margin-left: -1rem;
}

.mobile-menu-activator::before,
.mobile-menu-activator::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2.6rem;
	transform: translate(-50%, -50%);
	transition: height 0.35s ease-in-out, border-color 0.35s ease-in-out, transform 0.35s ease-in-out;
	border-color: currentColor;
	border-style: solid;
	border-width: 2px 0 0;
}

.mobile-menu-activator::after {
	border-width: 2px 0;
	height: 1.8rem;
}

.mobile-extra-nav {
	display: none;
}

.current-page,
.call-now {
	display: none;
}

@media (max-width: 900px) {	
	.current-page {
		color: #fff;
		display: flex;
		text-transform: uppercase;
		align-items: center;
		font-family: var(--font-tertiary);
		gap: 1rem;
		font-size: 1.7rem;
		letter-spacing: 0.1em;
	}
	
	.current-page::before,
	.current-page::after {
		content: '';
		width: 3px;
		height: 3px;
		border-radius: 50%;
		background: var(--color-accent);
	}
	
	.call-now {
		position: relative;
		z-index: 5;
		width: 4.5rem;
		height: 4.5rem;
		margin-right: -1rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.call-now svg {
		width: 2.3rem;
		height: 2.3rem;
	}
	
	.header-bottom .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.header-navigation .current-menu-item a {
		display: flex;
		gap: 1rem;
		align-items: center;
	}
	
	.header-navigation .current-menu-item a::before,
	.header-navigation .current-menu-item a::after {
		content: '';
		width: 3px;
		height: 3px;
		background: var(--color-accent);
		border-radius: 50%;
		margin-top: -1px;
	}
	
	.main-header {
		position: sticky;
		top: 0;
		z-index: 4;
		border-bottom-width: 1px;
	}

	.header-branding {
		border-bottom-width: 1px;
	}

	.header-branding img {
		height: 1.5rem;
	}

	.header-branding a {
		padding: 1rem 0;
	}

	.header-navigation,
	.header-top {
		display: none;
	}

	.mobile-menu-activator {
		display: block;
	}
	
	.header-branding::after {
		height: 0.4rem;
		border-bottom-width: 1px;
	}
	
	.header-bottom {
		border-bottom-width: 1px;
		margin: 0.5rem 0 0.4rem;
	}
	
	.header-navigation .menu a {
		font-size: 1.7rem
	}
}
/***** END HEADER *****/



/***** HERO *****/
.page-section--hero {
	display: flex;
	margin: 0;
}

.slider--hero {
	--slides-per-page: 1;
	--gap: 0px;
	flex: 0 0 100%;
}

.slider--hero .hero__image {
	height: 100%;
	background: var(--color-green);
	position: relative;
}

.hero__image .container {
	height: 100%;
	position: relative;
}

.hero__image--overlay {
	--overlay-color: #000;
	--overlay-opactiy: 0.3;
}

.hero__image .ratio-container {
	position: static;
}

.hero__image--overlay .ratio-container::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--overlay-color);
	opacity: var(--overlay-opactiy);
}

.hero__content {
	flex: 0 0 100%;
	translate: -100% 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	position: relative;
	text-align: center;
	padding: 4rem 0 2.5rem;
	align-self: flex-end;
	margin-bottom: 5rem;
	color: #fff;
	z-index: 2;
}

.hero__description {
	font-family: var(--font-secondary);
	color: var(--color-gold);
	text-transform: uppercase;
	font-size: 2rem;
	letter-spacing: 0.05em;
}

.hero__buttons {
	margin-top: 2.5rem;
	letter-spacing: .05em;
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.page-section--hero .slider__dots {
	display: flex;
	position: absolute;
	bottom: 2.5rem;
	left: 50%;
	translate: -50% 0;
}

.page-section--hero .slider__dot {
	border: 0;
	--color-accent: #fff;
	padding: 0;
}

@media (max-width: 900px) {
	.slider--hero .hero__image {
		height: 60vh;
	}
	
	.hero__description {
		font-size: 1.6rem;
	}
	
	.hero__content .heading--with-dots::before,
	.hero__content .heading--with-dots::after {
		display: none;
	}
}
/***** END HERO *****/


/***** COLUMNS *****/
.page-section--columns {
	border: 2px solid var(--color-gold);
	border-width: 2px 0;
}

.content-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 8%;
}

.text-card {
	flex: 8;
	min-width: 30rem;
	padding: 3rem 0;
}

.text-card .heading {
	width: 87%;
	padding: 0 0 .66em 12.5%;
	position: relative;
	margin: 0 0 1em;

	&::after {
		content: '';
		position: absolute;
		bottom: 0;
		border-top: 2px solid var(--color-mint);
		left: 0;
		width: 100%;
	}
}

.text-card__description {
	margin-left: 25%;
}

.text-card__button-container {
	margin-top: 2.5rem;
	display: flex;
	gap: 1rem 2rem;
	align-items: center;
}

.text-card__button-container > span {
	display: inline-flex;
	font-size: 0.9em;
	color: var(--color-orange);
	letter-spacing: .03em;
	gap: 0.5rem;
	line-height: 1.3em;
	align-items: center;
	font-family: var(--font-secondary);
	font-weight: 600;

	&::before {
		content: '<';
		color: var(--color-red);
	}
}

.image-card {
	flex: 7;
	min-width: 30rem;
	position: relative;
	border: 2px solid var(--color-red);
	margin: -2px 0;
	align-self: flex-start;
}

.image-card:has(.slider__slide:nth-child(2)) {
	border-color: var(--color-green);
}

.slider--image-card {
	--slides-per-page: 1;
	--gap: 0px;
}

.slider--image-card-overlay {
	position: relative;
	--overlay-color: #000;
	--overlay-opactiy: 0.3;
}

.slider--image-card-overlay::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--overlay-color);
	opacity: var(--overlay-opactiy);
}

.image-card__content {
	position: absolute;
	inset: 0;
	z-index: 3;
	inset: 5rem;
	padding: 1.5rem 6.5rem;
	border: 2px solid var(--color-mint);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--color-gold);
}

.image-card__content a {
	color: var(--color-mint);
	text-transform: uppercase;
	border-bottom: 1px solid var(--color-red);
}

@media (max-width: 900px) {
	.content-columns {
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.text-card__button-container {
		flex-direction: column-reverse;
		align-items: flex-start;
	}
	
	.content-columns {
		flex-direction: column;
	}

	.text-card .heading {
		padding-left: 0;
		width: auto;
	}

	.text-card__description {
		margin-left: 0;
	}

	.image-card__content {
		inset: 3.5rem;
		padding: 1.5rem 3.5rem;
	}

	.image-card {
		margin-left: calc(-1 * var(--container-padding));
		margin-right: calc(-1 * var(--container-padding));
		width: 100vw;
		order: 5;
	}
	
	.text-card__button-container > span {
		flex-direction: column-reverse;
		align-items: flex-start;
		font-size: 1em;
		gap: 0;
	}
	
	.text-card__button-container > span::before {
		rotate: -90deg;
	}
}
/***** END COLUMNS *****/

/***** SEPARATOR *****/
.separator {
	margin: 1.5rem 0;
	height: 1rem;
	background: var(--color-red);
	border: 0;

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

	&:last-child {
		margin-bottom: 0;
	}
}

.separator--green {
	background: var(--color-mint);
}

@media (max-width: 768px) {
	.page-section--separator .container {
		padding: 0;
	}
}
/***** END SEPARATOR *****/

/***** CTA *****/
.page-section--cta {
	background: var(--color-red);
	color: #fff;
	margin: 0;
	border-style: solid;
	border-width: 1rem 0;
	border-color: var(--color-gold);
}

.page-section--cta:first-child {
	border-top: 0;
}

.container--cta {
	padding-top: calc( 1.5 * var(--section-space) );
	padding-bottom: calc( 1.5 * var(--section-space) );
	background-image: linear-gradient(90deg, transparent 25%, rgba(0,0,0,0.1) 30%, transparent 30%, transparent 50%, rgba(0,0,0,0.1) 50%, transparent 55%);
	background-size: 148px 50px;
}

.container--cta .heading {
	margin: 0 0 4rem auto;
	max-width: 80rem;
	padding: 0 0 .66em;
	position: relative;
	color: var(--color-gold);

	&::before {
		content: '';
		position: absolute;
		bottom: 0;
		border-top: 2px solid var(--color-mint);
		right: 15%;
		left: 25%;
	}
}

.container--cta .heading:last-child {
	margin-bottom: 0;
}

.cta__content {
	display: flex;
	flex-wrap: wrap;
	margin-left: 11%;
}

.cta__description {
	flex: 5;
	min-width: 30rem;
	text-transform: uppercase;
}

.cta__side {
	flex: 2;
	padding-top: 2rem;
	text-align: right;
}

.cta__side img,
.cta__side .ratio-container {
	max-width: 15rem;
	margin: 0 auto;
}

.cta__content:has(img) {
	align-items: center;
	
	.cta__side {
		padding: 0;
	}
}

@media (max-width: 900px) {
	.cta__content {
		margin: 0;
	}

	.cta__side {
		text-align: center;
	}
	
	.container--cta .heading::before {
		left: 0;
	}

	.container--cta {
		padding-top: var(--section-space);
		padding-bottom: var(--section-space);
	}
}
/***** END CTA *****/

/***** PRESS ENTRY *****/
.page-section--press-entry {
	margin: calc(2 * var(--section-space)) 0;
}

.page-section--press-entry .container {
	max-width: 62rem;
}

.page-section--press-entry h3 {
	text-transform: none;
}

.press-entry__year {
	font-size: 3rem;
	color: var(--color-mint);
	font-family: var(--font-tertiary);
	margin-bottom: 2.5rem;
}

.press-entry__source {
	text-transform: uppercase;
	color: var(--color-accent);
}
/***** END PRESS ENTRY *****/

/***** WELCOME *****/
.page-section--welcome {
	margin: 0;
	padding: calc(1.5 * var(--section-space)) 0;
	border-width: 1rem 0;
	border-style: solid;
	border-color: var(--color-gold);
	background: var(--color-green);
	color: var(--color-gold);
	text-align: center;
}

.container--welcome {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: space-between;
}

.welcome-heading {
	max-width: 66rem;
	flex: 1;
}

.welcome-heading:only-child {
	margin: 0 auto;
}

.title-separator {
	color: #fff;
	font-family: var(--font-tertiary);
	font-size: 4rem;
	margin: 3rem 0;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	display: flex;
	gap: 5rem;
	align-items: center;
}

.title-separator::before,
.title-separator::after {
	content: '';
	border-top: 2px solid var(--color-red);
	flex: 1;
}

@media (max-width: 900px) {
	.container--welcome {
		flex-direction: column;
		align-items: center;
	}
	
	.welcome-heading {
		order: -1;
		width: 100%;
	}
	
	.title-separator {
		font-size: 2.3rem;
		margin: 1rem 0;
		gap: 2rem;
	}
}
/***** END WELCOME *****/

/***** FOOTER *****/
.page-section--footer {
	margin-bottom: 0;
	padding: calc(1.5 * var(--section-space)) 0;
	border-width: 1rem 0;
	border-style: solid;
	border-color: var(--color-gold);
	background: var(--color-green);
	color: var(--color-gold);
	text-align: center;
}

.footer-container {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	align-items: center;
	max-width: 93rem;
}

.footer-cells {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-cell {
	color: #fff;
	font-family: var(--font-tertiary);
	padding: 1.5rem 0;
	font-size: 2.4rem;
	text-transform: uppercase;
}

.footer-logo {
	max-width: 32.5rem;
}

.green-link {
	border-bottom: 1px solid var(--color-red);
	color: var(--color-mint);
	text-transform: uppercase;
	font-size: 1.7rem;
	font-family: var(--font-body);
}

.under-footer {
	height: 3.4rem;
	background: var(--color-green);
	color: var(--color-mint);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 1rem;
	text-transform: uppercase;
}

@media (max-width: 768px) {
	.footer-cell {
		font-size: 1.8rem;
	}
	
	.footer-container::before, .footer-container::after {
		display: none;
	}
}

#message-us {
	border: 2px solid var(--color-accent);
	text-align: center;
	padding: 3rem;
	width: 55rem;
	max-width: 100vw;
}

#message-us #ninja_forms_required_items, #message-us .nf-field-container {
	margin: 0;
}

#message-us .nf-field-element input[type="text"],
#message-us .nf-field-element input[type="email"],
#message-us .nf-field-element input[type="tel"],
#message-us .nf-field-element input[type="number"],
#message-us .nf-field-element input[type="password"],
#message-us .nf-field-element select,
#message-us .nf-field-element textarea {
	height: 5rem;
	padding: 0 1.5rem;
	border: 2px solid #000;
}

#message-us .nf-field-element textarea {
	height: 10rem;
	resize: vertical;
}

#message-us .label-above .nf-field-label {
	margin: 0;
}
#message-us .nf-field-label label {
	font-weight: normal;
}

.nf-before-form-content {
	display: none;
}

#message-us .nf-after-field .nf-error-msg {
	font-size: 1.3rem;
	line-height: 1.2em;
}

#message-us::backdrop {
	background: #000;
	opacity: 0.6;
}

.close-popup {
	position: absolute;
	top: 0;
	right: 0;
	width: 4.5rem;
	height: 4.5rem;
	text-indent: -30rem;
	overflow: hidden;
	border: none;
}

.nf-after-form-content {
	display: none;
}

.close-popup::before,
.close-popup::after {
	content: '';
	width: 2rem;
	border-top: 2px solid currentColor;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	rotate: 45deg;
}

.close-popup::after {
	rotate: -45deg;
}

.booknow {
	display: none;
}
/***** END FOOTER *****/