@charset "UTF-8";/*! normalize.css v1.1.3 | MIT License | git.io/normalize */
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}html,button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{/*outline:thin dotted*/}a:active,a:hover{outline:0}h1{font-size:2em;margin:0 0 .67em 0}h2{font-size:1.5em;margin:0 0 .83em 0}h3{font-size:1.17em;margin:0 0 1em 0}h4{font-size:1em;margin:0 0 1.33em 0}h5{font-size:.83em;margin:0 0 1.67em 0}h6{font-size:.67em;margin:0 0 2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:1em 40px}dfn{font-style:italic}hr{box-sizing:content-box;height:0}mark{background:#ff0;color:#000}p,pre{margin:0 0 1em 0}code,kbd,pre,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dl,menu,ol,ul{margin:0 0 1em 0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;*overflow:visible}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*height:13px;*width:13px}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}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

html.with-featherlight {
	/* disable global scrolling when featherlights are visible */
	overflow: hidden;
}

.featherlight {
	display: none;

	/* dimensions: spanning the background from edge to edge */
	position:fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 2147483647; /* z-index needs to be >= elements on the site. */

	/* position: centering content */
	text-align: center;

	/* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
	white-space: nowrap;

	/* styling */
	cursor: pointer;
	background: #333;
	/* IE8 "hack" for nested featherlights */
	background: rgba(0, 0, 0, 0);
}

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
.featherlight:last-of-type {
	background: rgba(0, 0, 0, 0.8);
}

.featherlight:before {
	/* position: trick to center content vertically */
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.featherlight .featherlight-content {
	/* make content container for positioned elements (close button) */
	position: relative;

	/* position: centering vertical and horizontal */
	text-align: left;
	vertical-align: middle;
	display: inline-block;

	/* dimensions: cut off images */
	overflow: auto;
	padding: 25px 25px 0;
	border-bottom: 25px solid transparent;

	/* dimensions: handling large content */
	margin-left: 5%;
	margin-right: 5%;
	max-height: 95%;

	/* styling */
	background: #fff;
	cursor: auto;

	/* reset white-space wrapping */
	white-space: normal;
}

/* contains the content */
.featherlight .featherlight-inner {
	/* make sure its visible */
	display: block;
}

/* don't show these though */
.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
	display: none;
}

.featherlight .featherlight-close-icon {
	/* position: centering vertical and horizontal */
	position: absolute;
	z-index: 9999;
	top: 0;
	right: 0;

	/* dimensions: 25px x 25px */
	line-height: 25px;
	width: 25px;

	/* styling */
	cursor: pointer;
	text-align: center;
	font-family: Arial, sans-serif;
	background: #fff; /* Set the background in case it overlaps the content */
	background: rgba(255, 255, 255, 0.3);
	color: #000;
	border: none;
	padding: 0;
}

/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
.featherlight .featherlight-close-icon::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.featherlight .featherlight-image {
	/* styling */
	width: 100%;
}


.featherlight-iframe .featherlight-content {
	/* removed the border for image croping since iframe is edge to edge */
	border-bottom: 0;
	padding: 0;
	-webkit-overflow-scrolling: touch;
}

.featherlight iframe {
	/* styling */
	border: none;
}

.featherlight * { /* See https://github.com/noelboss/featherlight/issues/42 */
	box-sizing: border-box;
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
	.featherlight .featherlight-content {
		/* dimensions: maximize lightbox with for small screens */
		margin-left: 0;
		margin-right: 0;
		max-height: 98%;

		padding: 10px 10px 0;
		border-bottom: 10px solid transparent;
	}
}

/* hide non featherlight items when printing */
@media print {
	html.with-featherlight > * > :not(.featherlight) {
		display: none;
	}
}
/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

.featherlight-next,
.featherlight-previous {
	display: block;
	position: absolute;
	top: 25px;
	right: 25px;
	bottom: 0;
	left: 80%;
	cursor: pointer;
	/* preventing text selection */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	/* IE9 hack, otherwise navigation doesn't appear */
	background: rgba(0,0,0,0);
}

.featherlight-previous {
	left: 25px;
	right: 80%;
}

.featherlight-next:hover,
.featherlight-previous:hover {
	background: rgba(255,255,255,0.25);
}


.featherlight-next span,
.featherlight-previous span {
	display: none;
	position: absolute;

	top: 50%;
	left: 5%;
	width: 82%;

	/* center horizontally */
	text-align: center;

	font-size: 80px;
	line-height: 80px;

	/* center vertically */
	margin-top: -40px;

	text-shadow: 0px 0px 5px #fff;
	color: #fff;
	font-style: normal;
	font-weight: normal;
}
.featherlight-next span {
	right: 5%;
	left: auto;
}


.featherlight-next:hover span,
.featherlight-previous:hover span {
	display: inline-block;
}

.featherlight-swipe-aware .featherlight-next,
.featherlight-swipe-aware .featherlight-previous {
	display: none;
}

/* Hide navigation while loading */
.featherlight-loading .featherlight-previous, .featherlight-loading .featherlight-next {
	display:none;
}

/* Hide navigation in case of single image */
.featherlight-first-slide.featherlight-last-slide .featherlight-previous,
.featherlight-first-slide.featherlight-last-slide .featherlight-next {
	display:none;
}


/* Always display arrows on touch devices */
@media only screen and (max-device-width: 1024px){
	.featherlight-next:hover,
	.featherlight-previous:hover {
		background: none;
	}
	.featherlight-next span,
	.featherlight-previous span {
		display: block;
	}
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
	.featherlight-next,
	.featherlight-previous {
		top: 10px;
		right: 10px;
		left: 85%;
	}

	.featherlight-previous {
		left: 10px;
		right: 85%;
	}

	.featherlight-next span,
	.featherlight-previous span {
		margin-top: -30px;
		font-size: 40px;
	}
}

/* ==========================================================================
   Imports
   ========================================================================== */
/* ==========================================================================
   SCSS Mixins
   ========================================================================== */
/* Responsive Detection */
/* Box Shadow */
/* Border Radius */
/* animation */
/*
@author 14islands.com
SASS mixins for future proof resolution media query
*/
/* Opacity mixin */
/* Smooth transition */
/* Smooth transition */
/* Smooth transition */
/* Rotate Mixin */
/* FONT SIZE */
/* For clearing floats like a boss */
.BBMembershipListing:before, .two-col-content .feature-list ul:before, .floated-list:before, .layout:before, #socialise-container ul:before, .BBMembershipListing:after, .two-col-content .feature-list ul:after, .floated-list:after, .layout:after, #socialise-container ul:after {
  display: table;
  content: "";
  line-height: 0;
}
.BBMembershipListing:after, .two-col-content .feature-list ul:after, .floated-list:after, .layout:after, #socialise-container ul:after {
  clear: both;
}

/* ==========================================================================
   SCSS Variables
   ========================================================================== */
/* COLOURS */
/* FONTS */
/* ==========================================================================
   UTILITIES
   ========================================================================== */
html {
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Custo∂mize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video,
svg {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
}

/*
 * No top margin on all elements
 */
* {
  margin-top: 0;
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}

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

/* layout & grid overrides */
ul {
  padding-left: 18px;
}
ul li {
  margin-bottom: 1em;
}

dd {
  margin: 0;
}

.layout, #socialise-container ul {
  position: relative;
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.layout > *, #socialise-container ul > * {
  list-style-type: none;
  margin-bottom: 0;
}

main ul ul {
  list-style-type: disc;
}

.top-layer {
  position: relative;
  z-index: 8000;
}

.floated {
  float: left;
}

.floated-right {
  float: right !important;
}

@media only screen and (max-width: 640px) {
  .m-no-float {
    float: none !important;
  }
}

@media only screen and (max-width: 1023px) {
  .bd-no-float {
    float: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .t-no-float {
    float: none !important;
  }
}

.floated-list > * {
  float: left;
  list-style-type: none;
}

.inline-list > *, #socialise-container ul > * {
  display: inline-block;
}
@media only screen and (max-width: 640px) {
  .inline-list.m-block-100 > li, #socialise-container ul.m-block-100 > li,
  .inline-list.m-block-100 > dt,
  #socialise-container ul.m-block-100 > dt,
  .inline-list.m-block-100 > dd,
  #socialise-container ul.m-block-100 > dd {
    display: block;
    margin-right: 0 !important;
    margin-bottom: 0.5em;
  }
}
.inline-list.centered, #socialise-container ul.centered {
  text-align: center;
}

.comma-seperated-list li:after {
  content: ", ";
}
.comma-seperated-list li:last-child:after {
  content: "";
  padding-right: 0;
}

.pipe-separated-list li {
  margin-right: 0.2em;
}
.pipe-separated-list li:after {
  content: " | ";
  padding-left: 0.2em;
}
.pipe-separated-list li:last-child {
  margin-right: 0;
}
.pipe-separated-list li:last-child:after {
  content: "";
}

.table-list {
  padding-left: 0;
  margin-left: 0;
  display: table;
  table-layout: fixed;
  text-align: center;
}
.table-list > * {
  display: table-cell;
}
@media only screen and (max-width: 640px) {
  .table-list > * {
    margin: 0 0 1.25em 0;
  }
}

nav ul {
  margin-left: 0;
  padding-left: 0;
}
nav ul li {
  list-style-type: none;
}
nav ul li a {
  text-decoration: none;
}

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

.inline-block {
  display: inline-block;
}

.vertical-center-parent {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.vertical-center {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.relative {
  position: relative;
}

.flex {
  display: flex;
}

.gap-2 {
  gap: 0.5rem;
}

.justify-end {
  justify-content: end;
}

.flex-center-parent {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
}

.flex-center {
  margin: 0;
}

.align-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 640px) {
  .align-bottom {
    position: relative;
    margin-top: 1em;
  }
}
.align-bottom li:last-child {
  padding-right: 0;
}
.align-bottom li:last-child:after {
  padding-left: 0;
}

.centered-copy {
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .m-centered-copy {
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .t-centered-copy {
    text-align: center;
  }
}

.parentBgImg img {
  display: none;
}
@media only screen and (max-width: 640px) {
  .parentBgImg img {
    display: block;
  }
}

[v-cloak] > * {
  display: none;
}

[v-cloak]::before {
  content: "loading...";
}

.inline-focus {
  outline: 0;
}
.inline-focus:focus-visible .inline-focus__span {
  background-color: #00382b;
  color: #FFFFF0;
  text-decoration: underline;
}

.unlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   DEVELOPMENT GRID
   ========================================================================== */
#devGrid {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 999999;
  pointer-events: none;
}
#devGrid .inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
}
#devGrid .inner > * {
  background: rgba(255, 0, 0, 0.3);
  height: 100%;
  width: 4.8611111%;
  margin-left: 2.7777778%;
  float: left;
}
#devGrid .inner > *:first-child {
  margin-left: 5.5555556%;
}
@media only screen and (max-width: 640px) {
  #devGrid .inner > *:first-child {
    margin-left: 6.25%;
    width: 87.5%;
  }
}

.icon {
  fill: #3d4539;
  width: 0.9375em;
  height: 0.9375em;
  overflow: hidden;
  vertical-align: -0.12em;
}
.icon.after {
  margin-left: 0.666666667em;
}
.icon.before {
  margin-right: 0.666666667em;
}
.icon.inline {
  width: 0.666666667em;
  height: 0.666666667em;
  vertical-align: baseline;
}
a:hover .icon {
  fill: currentColor;
}
.icon.responsive {
  width: 100%;
  height: auto;
}
.icon.warning {
  fill: #ffbf00;
}
.reverse .icon {
  fill: #FFFFF0;
}

a:hover .warning {
  fill: #ffbf00;
}

.bg-icon {
  font-weight: 700;
  text-decoration: none;
  position: relative;
  display: block;
  padding-left: 2em;
  line-height: 1.2em;
}
.bg-icon:before {
  content: "";
  width: 1.5em;
  height: 2em;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1em;
  background-size: contain;
}

/* Sibbaldia Regular */
@font-face {
  font-family: "Sibbaldia";
  src: url("/dist/fonts/Sibbaldia-Regular.woff2") format("woff2"), url("/dist/fonts/Sibbaldia-Regular.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
/* Sibbaldia Light */
@font-face {
  font-family: "Sibbaldia Light";
  src: url("/dist/fonts/Sibbaldia-Light.woff2") format("woff2"), url("/dist/fonts/Sibbaldia-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
/* Sibbaldia Medium */
@font-face {
  font-family: "Sibbaldia Medium";
  src: url("/dist/fonts/Sibbaldia-Medium.woff2") format("woff2"), url("/dist/fonts/Sibbaldia-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
/* Sibbaldia Thin */
@font-face {
  font-family: "Sibbaldia Thin";
  src: url("/dist/fonts/Sibbaldia-Thin.woff2") format("woff2"), url("/dist/fonts/Sibbaldia-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.99;
}

.hamburger-box {
  width: 20px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 0;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -7px;
}
.hamburger-inner::after {
  bottom: -7px;
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.breadcrumb__ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
}
.breadcrumb__li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0;
}
.breadcrumb__li:last-child {
  opacity: 0.7;
}
.breadcrumb__a {
  color: #FFFFF0;
  text-decoration: none;
}
.breadcrumb__a:hover {
  color: inherit;
  text-decoration: underline;
}
.breadcrumb__a:focus-visible {
  background-color: #FFFFF0 !important;
  color: #00382b !important;
}

/* ==========================================================================
   GRID
   ========================================================================== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  width: calc(100% - 2rem);
}
@media only screen and (min-width: 769px) {
  .container {
    width: calc(100% - 4rem);
  }
}
.container--ov {
  overflow: visible;
}
.container--sm {
  max-width: 39rem;
}
.container--md, .two-col-content .module:only-child {
  max-width: 52rem;
}
.container .inner {
  margin: 0 2.7777778%;
  padding: 7.5em 0;
}
.footer .container .inner {
  padding-top: 2.75em;
  padding-bottom: 2.75em;
}
.modal .container .inner {
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  .container .inner {
    margin: 0 2.6041667%;
  }
}
@media only screen and (max-width: 640px) {
  .container .inner {
    margin: 0;
    padding: 2.75em 0;
  }
}
.container .inner.flush {
  padding-top: 0;
}
.container .inner > * {
  margin-left: 2.9411765%;
  margin-right: 2.9411765%;
}
@media only screen and (max-width: 640px) {
  .container .inner > * {
    margin-left: 6.25%;
    margin-right: 6.25%;
  }
}
.modal .container .inner > * {
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (max-width: 640px) {
  .modal .container .inner > * {
    margin-left: 0;
    margin-right: 0;
  }
}
.container .inner > picture {
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (min-width: 641px) {
  .container .inner .umbraco-forms-form {
    width: 65.625%;
    margin: 0 auto;
  }
}
.container .inner .umbraco-forms-form .layout li, .container .inner .umbraco-forms-form #socialise-container ul li, #socialise-container .container .inner .umbraco-forms-form ul li {
  margin-bottom: 3.75em;
}
.container .inner.border {
  border: 12px solid #e8f1ef;
  margin-bottom: 7.5em;
}
@media only screen and (max-width: 640px) {
  .container .inner.border {
    margin-bottom: 2.75em;
  }
}
.container .inner.border.inner {
  padding-top: 2.75em;
  padding-bottom: 2.75em;
}
@media only screen and (min-width: 641px) {
  .footer .container .inner.border {
    margin-bottom: 3.75em;
  }
}
@media only screen and (max-width: 640px) {
  .container .inner.border {
    margin-left: 6.25%;
    margin-right: 6.25%;
  }
  .container .inner.border.m-no-border {
    border: none;
    background: #e8f1ef;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
  }
}
.container .inner.border > * {
  margin-left: 2.0958084%;
  margin-right: 2.0958084%;
}
@media only screen and (max-width: 640px) {
  .container .inner.border > * {
    margin-left: 7.5757576%;
    margin-right: 7.5757576%;
  }
}
.container .inner--curved-corners {
  border-radius: 10px;
}

.cta-panel {
  padding: 5.625rem 0;
}
@media only screen and (max-width: 768px) {
  .cta-panel {
    padding: 16px 0;
  }
}
.cta-panel .cards {
  padding: 2.875rem 2.375rem;
}
@media only screen and (max-width: 768px) {
  .cta-panel .cards {
    padding: 15px 15px 30px 15px;
  }
  .cta-panel .cards > * {
    margin: 0;
  }
}
.cta-panel .bg-off-white {
  border-radius: 10px;
}
.cta-panel .side-panel-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.cta-panel .side-panel-content > * {
  margin-bottom: 0;
}
.cta-panel .sub-stories {
  --gap-size: 28px;
}
.cta-panel .sub-stories a {
  position: relative;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .cta-panel .sub-stories a {
    display: flex !important;
  }
  .cta-panel .sub-stories a > div {
    align-content: center;
  }
  .cta-panel .sub-stories picture {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 0;
    max-width: 30%;
  }
}
.cta-panel.triple .cards {
  padding: 1.375rem;
  --gap-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .cta-panel.triple .cards {
    --gap-size: 0.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  .cta-panel.triple .cards {
    --gap-size: 2rem;
  }
}
@media only screen and (min-width: 1280px) {
  .cta-panel.triple .cards {
    --gap-size: 3.75rem;
  }
}
.cta-panel.triple .cards .md-col:first-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .cta-panel.triple .side-panel-content {
    margin: 1.875rem 0 0 0;
    gap: 15px;
  }
}
@media only screen and (min-width: 1024px) {
  .cta-panel.triple .side-panel-content {
    margin: 2.5rem 0;
  }
}
@media only screen and (min-width: 1280px) {
  .cta-panel.triple .side-panel-content {
    margin: 5rem 0;
  }
}

.video-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 0 1 726px;
  flex-wrap: wrap;
}
.video-flex--center {
  margin: 0 auto;
}

.video-container,
.video-description,
.video-flex .accordion {
  width: 100%;
}

.bg-white + .bg-white {
  padding-top: 0 !important;
}

.bg-light-green + .container .inner.flush,
.bg-img-section + .container .inner.flush {
  padding-top: 7.5em;
}
@media only screen and (max-width: 640px) {
  .bg-light-green + .container .inner.flush,
  .bg-img-section + .container .inner.flush {
    padding-top: 2.5em;
  }
}

.bg-img-section + .map-panel,
.map-panel + section > .border,
.map-panel + .bg-img-section,
.bg-img-section + section > .border {
  margin-top: 7.5em;
}
@media only screen and (max-width: 640px) {
  .bg-img-section + .map-panel,
  .map-panel + section > .border,
  .map-panel + .bg-img-section,
  .bg-img-section + section > .border {
    margin-top: 2.75em;
  }
}

.map-panel a:empty {
  display: block;
  position: relative;
  top: -150px;
  visibility: hidden;
}

.map-panel__copy {
  color: #FFFFF0;
  padding: 1rem;
}
@media only screen and (min-width: 769px) {
  .map-panel__copy {
    padding: 1.875rem;
  }
}
.map-panel__copy a {
  color: #FFFFF0;
}

.rounded {
  border-radius: 0.625rem;
}

.hero + section.container .inner {
  padding-top: 3.4375rem;
  padding-bottom: 4.5rem;
}
@media only screen and (max-height: 767px) {
  .hero + section.container .inner {
    padding-top: 2.5rem;
    padding-bottom: 2.625rem;
  }
}
.hero + section.container .inner.image-holder {
  padding-top: 0;
  padding-bottom: 2.75em;
}
.thank-you .hero + section.container .inner {
  min-height: 600px;
}

.one-col-bg-img {
  display: block;
}
.one-col-bg-img .one-col {
  width: 31.25%;
  margin: 3.75em 0 3.75em 5.46875%;
}
@media only screen and (max-width: 640px) {
  .one-col-bg-img .one-col {
    margin: 0;
    width: 100%;
  }
}

.multi-grid {
  display: flex;
  flex-direction: column;
  row-gap: 1.875em;
  list-style: none;
  padding: 0;
}

.two-col-half > * {
  width: 48.4375%;
  margin-left: 3.125%;
  margin-bottom: 3.75em;
}
@media only screen and (max-width: 640px) {
  .two-col-half > * {
    margin-bottom: 1.875em;
  }
}
.two-col-half > *:nth-child(2n+1) {
  margin-left: 0;
  clear: both;
}
@media only screen and (min-width: 641px) {
  .two-col-half > *:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}

.two-col-half-border {
  border-bottom: 2px solid #949c90;
  padding-bottom: 2.5em;
}
.two-col-half-border > * {
  width: 49.921875%;
  border-left: 2px solid #949c90;
  padding-left: 6.953125%;
}
@media only screen and (max-width: 768px) {
  .two-col-half-border > * {
    width: 100%;
    border-left: 0;
    padding-left: 0;
    border-top: 2px solid #949c90;
    padding-top: 2.5em;
    margin-top: 2.5em;
  }
}
.two-col-half-border > *:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}
.two-col-half-border > *:nth-child(2n+1) {
  border-left: 0;
  padding-left: 0;
  padding-right: 6.953125%;
  clear: both;
}
@media only screen and (max-width: 768px) {
  .two-col-half-border > *:nth-child(2n+1) {
    padding-right: 0;
  }
}

@media only screen and (min-width: 769px) {
  .two-col-third > * {
    width: 31.25%;
    margin-left: 3.125%;
  }
  .two-col-third > *:first-child {
    width: 65.625%;
  }
  .two-col-third > *:nth-child(2n+1) {
    margin-left: 0;
    clear: both;
  }
  .two-col-quarter > * {
    width: 22.65625%;
    margin-left: 3.125%;
  }
  .two-col-quarter > *:first-child {
    width: 74.21875%;
  }
  .two-col-quarter > *:nth-child(2n+1) {
    margin-left: 0;
    clear: both;
  }
  .two-col-quarter.inner > * {
    width: 32.3529412%;
    margin-left: 8.0882353%;
    margin-right: 0;
  }
  .two-col-quarter.inner > *:first-child {
    width: 56.6176471%;
    margin-left: 2.9411765%;
  }
}

[class^=bg-] + .container .colour-panel {
  margin-top: 7.5em;
}
@media only screen and (max-width: 640px) {
  [class^=bg-] + .container .colour-panel {
    margin-top: 0;
  }
}

.bg-img-section {
  padding-top: 7.5em;
  padding-bottom: 7.5em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bg-img-section.bg-light-green {
  padding-top: 5em;
  padding-bottom: 5em;
}
.bg-img-section.bg-light-green .inner {
  padding-top: 0 !important;
  padding-bottom: 0;
}
@media only screen and (max-width: 640px) {
  .bg-img-section.bg-light-green .inner {
    margin-left: 0%;
    margin-right: 0;
  }
  .bg-img-section {
    padding-top: 2.75em;
    padding-bottom: 2.75em;
  }
}
.bg-img-section .inner {
  padding-top: 2.75em !important;
  padding-bottom: 2.75em;
}
@media only screen and (max-width: 640px) {
  .bg-img-section .inner {
    margin-left: 6.25%;
    margin-right: 6.25%;
  }
}
@media only screen and (min-width: 769px) {
  .bg-img-section.single .inner {
    margin-left: 18.0555556%;
    margin-right: 18.0555556%;
  }
  .bg-img-section.single .inner > * {
    margin-left: 4.3478261%;
    margin-right: 4.3478261%;
  }
}
.bg-img-section + .has-border .inner {
  margin-top: 7.5em;
  padding-top: 2.75em !important;
}
.bg-img-section + .container .colour-panel {
  margin-top: 7.5em;
}
@media only screen and (max-width: 640px) {
  .bg-img-section + .container .colour-panel {
    margin-top: 0;
  }
}

.form + .has-border .inner {
  margin-top: 7.5em;
}

.container .inner.colour-panel {
  margin-bottom: 7.5em;
}
@media only screen and (max-width: 640px) {
  .container .inner.colour-panel {
    margin-bottom: 0;
  }
}

.colour-panel.inner {
  padding-top: 5em;
  padding-bottom: 5em;
}
@media only screen and (max-width: 640px) {
  .colour-panel.inner {
    padding-top: 2.75em;
    padding-bottom: 2.75em;
  }
}
.colour-panel.inner-search {
  padding-top: 2em;
  padding-bottom: 2em;
}
@media only screen and (max-width: 640px) {
  .colour-panel.inner-search {
    padding-top: 2.75em;
    padding-bottom: 2.75em;
  }
}

.content-block.full-width {
  width: 61.7647059%;
}
@media only screen and (max-width: 640px) {
  .content-block.full-width {
    width: 87.5%;
  }
}

.animate {
  position: relative;
  opacity: 0;
  top: 200px;
}

section.container .bg-white.inner.module a:empty {
  display: block;
  position: relative;
  top: -1.5em;
  visibility: hidden;
}

.md-row {
  --gap-size: 1.875rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-size);
  list-style: none;
}
.md-row--gap-sm {
  --gap-size: 1.25rem;
}
.md-row--gap-lg {
  --gap-size: 2.5rem;
}

@media only screen and (min-width: 769px) {
  .md-row {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .md-col--2 {
    width: calc(50% - var(--gap-size) / 2);
  }
  .md-col--2-3 {
    width: calc(50% - var(--gap-size) / 2);
  }
  .md-col--3 {
    width: calc(33.33333% - var(--gap-size) * 2 / 3);
  }
  .md-col--4 {
    width: calc(50% - var(--gap-size) / 2);
  }
}
@media only screen and (min-width: 1024px) {
  .md-col--2-3 {
    width: calc(33.33333% - var(--gap-size) * 2 / 3);
  }
  .md-col--4 {
    width: calc(25% - var(--gap-size) * 3 / 4);
  }
}
.btn, .BBFormSubmitbutton {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Sibbaldia", serif;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  color: #FFFFF0;
  background-color: #00382b;
  padding: 0.875rem;
  padding-bottom: 0.7rem;
  line-height: 1em;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  text-align: center;
  border-radius: 0.313rem;
  /*&:not(.custom-icon){
     .icon{
         width: .6875em;
         height: .6875em;
         vertical-align: baseline;
         margin-left: 0;
     }
   }*/
}
@media only screen and (max-width: 640px) {
  .btn, .BBFormSubmitbutton {
    width: 100%;
  }
}
.btn:hover, .BBFormSubmitbutton:hover {
  background-color: #0A604C;
  color: #FFFFF0;
}
.btn:focus-visible, .BBFormSubmitbutton:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #FFD13D, 0 0 0 4px #00382b;
}
.bg-light-yellow .btn:focus-visible, .bg-light-yellow .BBFormSubmitbutton:focus-visible {
  box-shadow: 0 0 0 2px #FFFFF0, 0 0 0 4px #00382b;
}
.btn--secondary, .aside .btn, .aside .BBFormSubmitbutton {
  background: #AFE650;
  color: #00382b;
}
.btn--secondary:hover, .aside .btn:hover, .aside .BBFormSubmitbutton:hover {
  background-color: #D9FD9A;
  color: #00382b;
}
.btn--secondary:focus-visible, .aside .btn:focus-visible, .aside .BBFormSubmitbutton:focus-visible {
  box-shadow: 0 0 0 2px #00382b, 0 0 0 4px #FFD13D;
}
.bg-forest-green .btn--secondary:focus-visible, .bg-forest-green .aside .btn:focus-visible, .bg-forest-green .aside .BBFormSubmitbutton:focus-visible, .aside .bg-forest-green .btn:focus-visible, .aside .bg-forest-green .BBFormSubmitbutton:focus-visible {
  box-shadow: 0 0 0 2px #00382b, 0 0 0 4px #FFD13D;
}
.btn--tertiary {
  background: #66CCB8;
  color: #00382b;
}
.btn--tertiary:hover {
  background-color: #D9FD9A;
}
.btn--donate {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .btn--donate {
    background: #66CCB8;
    color: #00382b;
  }
  .btn--donate:hover {
    background-color: #D9FD9A;
    color: #00382b;
  }
  .btn--donate:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 2px #00382b, 0 0 0 4px #FFD13D;
  }
}
.btn--small {
  padding: 0.6882rem;
  padding-bottom: 0.6rem;
  gap: 0.3rem;
}
.btn:disabled, .BBFormSubmitbutton:disabled, .btn.slick-disabled, .slick-disabled.BBFormSubmitbutton {
  cursor: not-allowed;
  box-shadow: none !important;
}
.btn .icon, .BBFormSubmitbutton .icon {
  fill: currentColor;
}
.btn.shadow, .shadow.BBFormSubmitbutton {
  box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.4);
}
.btn.block, .block.BBFormSubmitbutton {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.circle-btn, .gallery .slick-prev,
.gallery .slick-next {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background-color: #FFFFF0;
  color: #00382b;
  border: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.circle-btn:disabled, .gallery .slick-prev:disabled,
.gallery .slick-next:disabled, .circle-btn.slick-disabled, .gallery .slick-disabled.slick-prev,
.gallery .slick-disabled.slick-next {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none !important;
}
.circle-btn:hover, .gallery .slick-prev:hover,
.gallery .slick-next:hover {
  background-color: #00382b;
  color: #AFE650;
}
.circle-btn:focus-visible, .gallery .slick-prev:focus-visible,
.gallery .slick-next:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #00382b, 0 0 0 4px #FFD13D;
}
.circle-btn--secondary {
  background-color: #AFE650;
}
.circle-btn--tertiary {
  background-color: #00382b;
  color: #FFFFF0;
}
.circle-btn--tertiary:hover {
  background-color: #0A604C;
  color: #FFFFF0;
}
.circle-btn--tertiary:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #FFD13D, 0 0 0 4px #00382b;
}
.circle-btn svg, .gallery .slick-prev svg,
.gallery .slick-next svg {
  height: 1.0625rem;
  width: 1.125rem;
}

html.nav-open, html.search-open {
  overflow: hidden;
}

body {
  font-family: "Public Sans", serif;
  color: #00382b;
  background-color: #FFFFF0;
  font-weight: 300;
}

html, button, input, select, textarea {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Sibbaldia", serif;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 1rem;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong {
  font-weight: 500;
}

h1 {
  font-size: 3.125rem;
}
@media only screen and (min-width: 641px) {
  h1 {
    font-size: 4.25rem;
  }
}
@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 4.688rem;
  }
}
@media only screen and (min-width: 1280px) {
  h1 {
    font-size: 5rem;
  }
}

h2, .h2 {
  font-size: 2.5rem;
}
@media only screen and (min-width: 769px) {
  h2, .h2 {
    font-size: 3.5rem;
  }
}
h3, .h3, .story h2, .aside h2, .two-col-content h2, .two-col-content .h2 {
  font-size: 1.875rem;
}
@media only screen and (min-width: 769px) {
  h3, .h3, .story h2, .aside h2, .two-col-content h2, .two-col-content .h2 {
    font-size: 2.25rem;
  }
}

h4, .h4, .aside h3 {
  font-size: 1.5rem;
}
@media only screen and (min-width: 769px) {
  h4, .h4, .aside h3 {
    font-size: 1.875rem;
  }
}

h5, .h5, .aside h4 {
  font-size: 1.25rem;
}
@media only screen and (min-width: 769px) {
  h5, .h5, .aside h4 {
    font-size: 1.5rem;
  }
}

button {
  outline: none;
}

p, ul, form {
  font-size: 1.188rem;
}

a {
  color: #00382b;
  outline: none;
}
a:hover {
  text-decoration-thickness: 3px;
}
a:not(.main-nav a, .btn, .BBFormSubmitbutton, .link--inline, .cards, .cards a, .footer__logo, .header__logo):focus-visible {
  outline: 0;
  background-color: #00382b;
  color: #FFFFF0;
  text-decoration: underline;
}
.bg-forest-green a:not(.main-nav a, .btn, .BBFormSubmitbutton, .link--inline, .cards, .cards a, .footer__logo, .header__logo):focus-visible {
  background-color: #FFFFF0;
  color: #00382b;
}
nav a {
  text-decoration: none;
}
.reverse a {
  color: #FFFFF0;
}

.sr-only, .newsletter form label#lblemailaddress {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.unbuttonize {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  text-align: inherit;
  font: inherit;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.link {
  display: inline-flex;
  gap: 0.3rem;
  align-items: center;
  font-size: 1.188rem;
}
.link--inline {
  text-decoration: none;
  align-items: center;
  display: inline;
}
.link:focus-visible {
  background-color: #00382b;
  color: #FFFFF0;
  outline: none;
}
.link .story-tag {
  display: inline;
}
.link__text {
  display: inline;
}
.link:focus-visible .link__text, .link:hover .link__text {
  text-decoration: underline;
}
.link__icon {
  transition: transform 0.2s ease;
  height: 1.125rem;
  width: 1.125rem;
}
.link:hover .link__icon {
  transform: translateX(0.3rem);
}
.link--prev:hover .link__icon {
  transform: translateX(-0.3rem);
}

.animated-video {
  outline: none;
  border: none;
  pointer-events: none;
  display: none;
  height: auto;
}
@media only screen and (min-width: 769px) {
  .animated-video {
    display: block;
  }
}

.underlined-heading {
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(0, 56, 43, 0.3);
  font-weight: 500;
  font-family: "Sibbaldia", serif;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  display: block;
}

.bg-white {
  background-color: white;
}

.bg-off-white {
  background-color: #FFFFF0;
}

.bg-yellow {
  background-color: #ffbf00;
}

.bg-light-yellow {
  background-color: #FFD13D;
}

.bg-forest-green {
  background-color: #00382b;
}

.reverse {
  color: #FFFFF0;
}

.slick-disabled {
  pointer-events: none;
  opacity: 0.4;
}

.useful-links {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.useful-links li {
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.useful-links svg + a {
  color: inherit;
}
.useful-links svg + a:hover {
  text-decoration-thickness: 3px;
}
.useful-links svg + a:focus-visible {
  background-color: #00382b;
  color: #FFFFF0;
}
.useful-links svg + a[target=_blank]:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMyAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTYuNDk5NjEgNi4wMDAxTDEwLjk5OTYgMS41MDAxTTEwLjk5OTYgMS41MDAxTDEwLjk5OTYgNC44MDAxTTEwLjk5OTYgMS41MDAxTDcuNjk5NjEgMS41MDAxIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIwLjg0IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjwvcGF0aD4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTQuMyAxLjVIMlYxMC41SDExVjguMiIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIHN0cm9rZS13aWR0aD0iMC44NCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48L3BhdGg+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zdmc+");
  margin-left: 0.3rem;
}

.bg-white .useful-links a.bg-icon {
  background-color: #ffffff;
}

.bg-white .bg-dark-blue .useful-links a.bg-icon {
  background-color: #304151;
}

.video-container + p,
.video-container + ul,
.video-container + div,
.video-container + a {
  margin-top: 1em;
}

.controls {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 769px) {
  .controls {
    position: absolute;
    right: 0;
    top: 0;
  }
  .controls--mobile-only {
    display: none;
  }
}
.controls--desktop-only {
  display: none;
}
@media only screen and (min-width: 769px) {
  .controls--desktop-only {
    display: block;
  }
  .card-carousel .slick-track {
    display: flex !important;
    gap: 1.875rem;
  }
}
.card-carousel .slick-track * {
  min-height: 0;
  min-width: 0;
}
.card-carousel .slick-track div,
.card-carousel .slick-track li {
  display: block !important;
}
.card-carousel .slick-track:before, .card-carousel .slick-track:after {
  content: none !important;
}

.slick-slide {
  position: relative;
}

.sibling-back {
  display: inline-block;
  margin-top: 2.75em;
}
.sibling-back:hover {
  text-decoration-thickness: 3px;
}

/* Skip nav styles from Liam */
.skipnav {
  position: absolute;
  display: none;
  text-align: left;
  margin: 0;
  padding: 0;
} /*For all, including Opera. Display:none used to switch off the skip links for Opera users (it's redundant, Opera has excellent keyboard navigation)*/
* html .skipnav {
  display: block;
} /*Switch on for IE6 and below*/
* + html .skipnav {
  display: block;
} /*Switch on for IE7*/
:root .skipnav {
  display: block;
} /*Switch on for Moz, FF and Safari*/
.skipnav p {
  margin: 5px 0 0 0;
  padding: 0;
  position: absolute;
  font-size: 2em;
}

.skipnav a {
  width: 26em;
  display: block;
  color: #fff;
  background: #333;
  text-decoration: none;
  padding: 5px;
  position: absolute;
  left: -1000em;
  top: 0;
  font-weight: bold;
}

.skipnav a:visited {
  color: #fff;
}

.skipnav a:focus,
.skipnav a:active {
  z-index: 9999;
  top: 0;
  left: 0;
  border: solid #777 2px;
  color: #fff;
  background: #333 !important;
} /*Note IE bug that requires use of :active to mimic effect of :focus*/
.skipnav a:hover {
  cursor: default;
}

.imgPreload {
  position: absolute;
  opacity: 0;
  z-index: -1;
  width: 0;
  height: 0;
}

.reverse .useful-links a {
  border: none !important;
}

.player .vp-title .vp-title-header h1 a,
.player h1 a {
  color: #ffffff !important;
}

.player-7dfd8304-67ec-4395-948c-0db31c80df5e .vp-title a:hover,
player .vp-title a:hover {
  color: #ffffff !important;
}

.player-471a9dbd-0eb1-47e7-9917-a37171355764 .vp-title a,
player .vp-title a {
  color: #ffffff !important;
}

.video-container .player .vp-title .vp-title-header h1 a {
  color: #ffffff !important;
}

.grecaptcha-badge {
  position: static !important;
  margin-top: 2rem;
}

#onetrust-banner-sdk #onetrust-button-group button {
  transition: 0.3s ease background-color !important;
}
#onetrust-banner-sdk #onetrust-button-group button:hover, #onetrust-banner-sdk #onetrust-button-group button:focus {
  background-color: #000 !important;
  opacity: 1 !important;
  color: #fff !important;
}

h2 + .slick-initialized.carousel-buttons-above {
  margin-top: -0.83em;
}

:root {
  --space-sm: 2rem;
  --space-md: 4rem;
  --space-lg: 6rem;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.my-sm {
  margin-block: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-sm);
}
@media only screen and (min-width: 769px) {
  .mt-md {
    margin-top: var(--space-md);
  }
}

.mb-md {
  margin-bottom: var(--space-sm);
}
@media only screen and (min-width: 769px) {
  .mb-md {
    margin-bottom: var(--space-md);
  }
}

.my-md {
  margin-block: var(--space-sm);
}
@media only screen and (min-width: 769px) {
  .my-md {
    margin-block: var(--space-md);
  }
}

.mt-lg {
  margin-top: var(--space-md);
}
@media only screen and (min-width: 769px) {
  .mt-lg {
    margin-top: var(--space-lg);
  }
}

.mb-lg {
  margin-bottom: var(--space-md);
}
@media only screen and (min-width: 769px) {
  .mb-lg {
    margin-bottom: var(--space-lg);
  }
}

.my-lg {
  margin-block: var(--space-md);
}
@media only screen and (min-width: 769px) {
  .my-lg {
    margin-block: var(--space-lg);
  }
}

.collapsed {
  display: none;
}
.collapsed--open {
  display: flex;
}
.collapsed.cards.text-only {
  border: 0;
}

.show-more-nav {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Sibbaldia", serif;
  margin-top: 2rem;
  cursor: pointer;
}
.show-more-nav:hover {
  text-decoration: underline;
}
.show-more-nav.open + .collapsed {
  display: flex;
}
.show-more-nav.open svg {
  transform: scaleY(-100%);
}

.header {
  position: absolute;
  top: 1.875rem;
  inset-inline: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}
@media only screen and (min-width: 1024px) {
  .header__inner {
    gap: 3rem;
  }
}
.header__inner > * {
  margin: 0;
}
@media only screen and (max-width: 1023px) {
  .header__inner > * {
    margin-bottom: 1px;
  }
}
@media only screen and (max-width: 899px) {
  .header__inner > * {
    margin: 0;
  }
}
.header__inner > *.bottom-bar {
  margin-bottom: 0;
}
.header__logo {
  width: 134px;
  display: block;
  position: relative;
  flex-shrink: 0;
  z-index: 10;
  max-width: 50%;
}
@media only screen and (min-width: 769px) {
  .header__logo {
    display: block !important;
  }
}
@media only screen and (min-width: 1024px) {
  .header__logo {
    width: 180px;
  }
}
@media only screen and (min-width: 1440px) {
  .header__logo {
    width: 300px;
  }
}
.header__logo:focus-visible {
  outline: 2px solid #FFFFF0;
  border-radius: 0.313rem;
}
.header__logo svg {
  max-width: 100%;
  height: auto;
}
.nav-open .header__logo svg path {
  fill: #00382b;
}
.header__nav {
  display: none;
}
@media only screen and (min-width: 769px) {
  .header__nav {
    background-color: #00382b;
    border-radius: 0.625rem;
    padding-inline: 1rem;
    display: block;
    position: relative;
  }
}
.nav-open .header__nav {
  display: block;
  position: fixed;
  inset: 0;
  background-color: #AFE650;
  overflow-y: auto;
  padding-inline: 1rem;
}
.header__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-top: 11rem;
  position: relative;
  z-index: 10;
}
@media only screen and (min-width: 769px) {
  .header__top {
    flex-direction: row;
    padding-inline: 0;
    padding-top: 0;
    justify-content: end;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 1024px) {
  .header__top {
    gap: 1.25rem;
  }
}
@media only screen and (min-width: 1280px) {
  .header__top {
    gap: 1rem;
  }
}
.nav-open .header__top > * {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .header__top > .btn--donate {
    display: none;
  }
  .header__bottom {
    display: none;
  }
}
@media only screen and (min-width: 1280px) {
  .header__bottom {
    display: block;
    position: relative;
    z-index: 0;
  }
}
.header__search-icon {
  background-color: #AFE650;
  color: #00382b;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.313rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__utilities {
  display: flex;
  gap: 0.5rem;
}
@media only screen and (min-width: 1280px) {
  .header__utilities {
    gap: 1rem;
  }
}
.nav-open .header__utilities .site-search {
  display: none;
}
.header__utilities > .btn--donate {
  display: none;
}
@media only screen and (min-width: 769px) {
  .header__utilities > .btn--donate {
    display: flex;
  }
}

.main-nav__ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
}
@media only screen and (min-width: 769px) {
  .main-nav__ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}
@media only screen and (min-width: 1024px) {
  .main-nav__ul {
    gap: 1.125rem;
  }
}
.main-nav__li {
  position: relative;
}
ul .main-nav__li {
  list-style: none;
  margin: 0;
}
.nav-open .main-nav__li, .more-menu .main-nav__li {
  border-bottom: 1px solid #00382b;
}
@media only screen and (min-width: 769px) {
  .main-nav__li:not(.more-menu .main-nav__li).main-nav__li--active {
    background-color: #FFFFF0;
  }
  .main-nav__li:not(.more-menu .main-nav__li).main-nav__li--active:before, .main-nav__li:not(.more-menu .main-nav__li).main-nav__li--active:after {
    content: "";
    position: absolute;
    inset-block: 0;
    width: 50%;
    display: block;
    background-color: #00382b;
    z-index: 0;
  }
  .main-nav__li:not(.more-menu .main-nav__li).main-nav__li--active:before {
    left: 0;
    border-bottom-right-radius: 20px;
  }
  .main-nav__li:not(.more-menu .main-nav__li).main-nav__li--active:after {
    right: 0;
    border-bottom-left-radius: 20px;
  }
}
.main-nav__a {
  color: #FFFFF0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
  position: relative;
  z-index: 10;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  padding-inline: 0;
  font-size: 1rem;
  font-weight: 300;
}
@media only screen and (min-width: 769px) {
  .main-nav__a {
    height: 69px;
  }
}
.main-nav__a:focus-visible {
  outline: none !important;
  color: #AFE650;
  box-shadow: 0 0 0 2px #FFD13D;
  border-radius: 0.313rem;
}
.nav-open .main-nav__a, .more-menu .main-nav__a {
  color: #00382b;
  font-size: 1.2rem;
  font-family: "Sibbaldia", serif;
  font-weight: 500;
  padding-block: 1.2rem;
  padding-right: 0.5rem;
  text-decoration: none;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .main-nav__a:not(.more-menu .main-nav__a).current {
    color: #AFE650;
  }
  .main-nav__a:not(.more-menu .main-nav__a):hover {
    color: #AFE650;
  }
  .main-nav__li--active:not(.more-menu .main-nav__li) .main-nav__a {
    color: #AFE650;
  }
}
.main-nav__caret {
  width: 1.25rem;
  height: 1.25rem;
}
@media only screen and (min-width: 769px) {
  .main-nav__caret {
    width: 0.75rem;
    height: 0.75rem;
  }
  .more-menu .main-nav__caret {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.sub-nav {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sub-nav {
    max-width: none !important;
    transform: translateX(0) !important;
  }
}
@media only screen and (min-width: 769px) {
  .sub-nav:not(.more-menu .sub-nav) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    background-color: #FFFFF0;
    padding: 1.875rem;
    border-radius: 0.313rem;
    width: -moz-max-content;
    width: max-content;
    z-index: 11;
  }
}
.more-menu .sub-nav {
  padding-bottom: 1rem;
}
.sub-nav__header {
  font-size: 1.25rem;
  font-family: "Sibbaldia", serif;
  padding-bottom: 1rem;
  display: block;
}
.more-menu .sub-nav__header {
  text-decoration: none;
  padding-bottom: 0.5rem;
}
@media only screen and (min-width: 769px) {
  .sub-nav__header:not(.more-menu .sub-nav__header) {
    border-bottom: 1px solid rgba(0, 56, 43, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .sub-nav__header:hover {
    text-decoration: underline;
  }
}
.sub-nav__header:focus-visible span {
  background-color: #00382b;
  color: #FFFFF0;
  text-decoration: underline;
}
.sub-nav__wrapper {
  padding-bottom: 1.25rem;
}
@media only screen and (min-width: 769px) {
  .sub-nav__wrapper {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 0;
  }
}
.sub-nav__ul {
  margin: 0;
  list-style: none;
  font-size: 1rem;
}
@media only screen and (min-width: 769px) {
  .sub-nav__ul {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
  }
}
.more-menu .sub-nav__ul {
  margin-bottom: 0.5rem;
}
.sub-nav__li {
  margin: 0;
}
.sub-nav__a {
  padding-block: 0.3rem;
  display: block;
  text-decoration: none;
  font-size: 1rem;
}
@media only screen and (min-width: 769px) {
  .sub-nav__a {
    padding: 0;
    display: inline;
  }
}
.sub-nav__a:hover {
  text-decoration: underline;
}
.sub-nav__a.current {
  text-decoration: underline;
}
.sub-nav__a:focus-visible {
  background-color: #00382b;
  color: #FFFFF0;
  text-decoration: underline;
}
.more-menu .sub-nav {
  transform: translateX(0) !important;
}

.more-menu {
  display: none;
  position: absolute;
  top: 100%;
  inset-inline: -1rem;
  background-color: #FFFFF0;
  border-radius: 0.625rem;
  padding: 1rem 2rem 2rem 2rem;
}
.more-menu--open {
  display: none;
}
@media only screen and (min-width: 769px) {
  .more-menu--open {
    display: block;
  }
}
@media only screen and (min-width: 1280px) {
  .more-menu {
    display: none;
  }
}

#main-more-btn {
  display: none;
}
@media only screen and (min-width: 769px) {
  #main-more-btn {
    display: inline-flex;
  }
}
@media only screen and (min-width: 1280px) {
  #main-more-btn {
    display: none;
  }
}
#main-more-btn[aria-expanded=true] {
  background-color: #FFFFF0;
}

.nav-container {
  width: 79.4117647%;
}
@media only screen and (max-width: 899px) {
  .nav-container {
    display: none;
  }
}

@media only screen and (min-width: 1280px) {
  .site-search {
    padding: 0;
    background-color: transparent;
    color: #fff;
    transition: 0.2s ease;
  }
  .site-search:hover {
    background-color: transparent;
    transform: scale(1.3);
    color: #AFE650;
  }
  .site-search:focus-visible {
    outline: none !important;
    color: #AFE650;
    box-shadow: 0 0 0 2px #FFD13D;
    border-radius: 0.313rem;
  }
}

.toggles {
  display: flex;
  gap: 0.5rem;
  position: relative;
  max-width: 50%;
  z-index: 10;
}
@media only screen and (min-width: 769px) {
  .toggles {
    display: none !important;
  }
}
.toggles__btn {
  width: 5rem;
  border-radius: 0.75rem;
  background-color: #AFE650;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00382b;
  aspect-ratio: 1/1;
  max-width: 50%;
}
.nav-open .toggles__btn, .search-open .toggles__btn {
  background-color: #00382b;
  color: #AFE650;
}
.toggles__btn:focus-visible {
  outline: 2px solid #00382b;
  outline-offset: 2px;
}

.site-search-form label {
  display: block;
  font-family: "Sibbaldia", serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.site-search-form input {
  width: 100%;
  border: none;
  font-size: 1.25rem;
  border: 1.5px solid #4d534a;
  padding: 0.5rem;
  padding-right: 8rem;
  height: 3.75rem;
  border-radius: 0.313rem;
}
@media only screen and (max-width: 640px) {
  .site-search-form input {
    display: block;
    margin-bottom: 1em;
  }
}
.site-search-form .btn, .site-search-form .BBFormSubmitbutton {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
}
.site-search-form + p {
  margin-top: 1rem;
}

.site-search-inner {
  position: relative;
}

.common-terms li {
  margin-bottom: 0;
}

.hamburger {
  transition: all 0.3s ease-in-out;
}

.subnav-toggle {
  font-weight: 500;
  line-height: 21px;
  display: block;
  padding: 1.111111111em 2.9411765%;
  text-transform: uppercase;
  position: relative;
  z-index: unset !important;
  color: #3d4539;
  background: #e8f1ef;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 1px;
  border: none;
  width: 100%;
  text-align: left;
}
.subnav-toggle:hover {
  color: #006750;
}
@media only screen and (max-width: 640px) {
  .subnav-toggle {
    padding-left: 6.25%;
    padding-right: 6.25%;
  }
}
.subnav-toggle:after {
  transition: all 0.3s ease-in-out;
  content: "";
  width: 26px;
  height: 15px;
  background: url(/dist/assets/_legacy/website/img/icon-toggle-arrow.svg);
  background-size: cover;
  position: absolute;
  right: 2.9411765%;
  top: 50%;
  margin-top: -7px;
}
.subnav-toggle.active {
  z-index: 999999 !important;
}
.subnav-toggle.active:after {
  transform: rotate(180deg);
}

.site-search-container {
  margin-bottom: 4rem;
}

.search-overlay {
  display: none;
  position: fixed;
  z-index: 9999999;
  background: #00382b;
  padding: 1rem 2.9411765%;
  inset: 0;
  align-items: center;
  overflow-y: initial;
}
@media only screen and (max-width: 640px) {
  .search-overlay {
    background-color: #FFFFF0;
    padding-left: 6.25%;
    padding-right: 6.25%;
    align-items: start;
    overflow-y: auto;
  }
}
.search-open .search-overlay {
  display: flex;
}
.search-overlay .search-inner {
  background-color: #FFFFF0;
  flex-grow: 1;
  padding-block: 5rem;
}
@media only screen and (min-width: 641px) {
  .search-overlay .search-inner {
    position: relative;
    overflow-y: auto;
    max-height: 100%;
  }
  .search-overlay .search-content {
    max-width: 53rem;
    margin: 0 auto;
    width: calc(100% - 2rem);
  }
}
.search-overlay .search-header {
  display: flex;
  justify-content: space-between;
  flex: 1;
}
.search-overlay .close-btn {
  background-color: transparent !important;
  border: none;
  text-decoration: none;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.search-overlay .close-btn span {
  font-size: 64px;
  line-height: 0.5;
}
.search-overlay .close-btn:focus-visible {
  outline: 2px solid #00382b;
  outline-offset: 0.5rem;
  border-radius: 50%;
}
.search-overlay .search-title {
  font-weight: 500;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 56, 43, 0.3);
  font-size: 1.25rem;
}

:root {
  --h1-size-scale: 21.4vw;
  --h1-size-max: 19.1rem;
}

.hero {
  position: relative;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 1280px) {
  .hero {
    margin-bottom: 3.75rem;
  }
}
.hero--carousel {
  min-height: 100vh;
  min-height: 100dvh; /* Modern browsers */
}
@media only screen and (min-width: 769px) {
  .hero--carousel {
    min-height: 40rem;
  }
}
.hero--static {
  color: #FFFFF0;
  min-height: 100vh;
  min-height: 100dvh; /* Modern browsers */
  display: flex;
}
@media only screen and (min-width: 769px) {
  .hero--static {
    min-height: 40rem;
  }
}
.hero--static p {
  font-size: 1.25rem;
}
.hero--static:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(29.94deg, rgba(0, 0, 0, 0.6) 11.84%, transparent 57.19%), linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent 46.69%);
  z-index: 1;
}
.hero p {
  font-family: "Sibbaldia", serif;
  font-size: 1.5rem;
}
@media only screen and (min-width: 769px) {
  .hero--large {
    min-height: 50rem;
  }
  .hero--large .slick-slide {
    min-height: 50rem !important;
  }
}
.hero--large p {
  font-size: 1.5rem;
}
@media only screen and (min-width: 769px) {
  .hero--large p {
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 1024px) {
  .hero--large p {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1280px) {
  .hero--large p {
    font-size: 2.25rem;
  }
}
@media only screen and (max-height: 800px) and (min-width: 1280px) {
  .hero--large p {
    font-size: 1.875rem;
  }
}
.hero .tags {
  padding-top: 0;
  font-size: 1.25rem;
  display: flex;
  flex-wrap: wrap;
}
.hero .tags li:not(:last-child):after {
  content: ", ";
}
.hero .slick-slide {
  height: 100vh;
  height: 100dvh; /* Modern browsers */
  min-height: 40rem;
}
@media only screen and (max-height: 40rem) {
  .hero .slick-slide {
    min-height: 40rem;
  }
}
.hero .slick-slide:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(29.94deg, rgba(0, 0, 0, 0.6) 11.84%, transparent 57.19%), linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent 46.69%);
  z-index: 1;
}
.hero .slick-slide > div > div {
  display: block !important;
}
.hero__carousel {
  visibility: hidden;
}
.hero__carousel.slick-initialized {
  visibility: visible;
}
.hero__controls {
  position: absolute;
  bottom: 1.5rem;
  inset-inline: 0;
  display: flex;
  gap: 0.625rem;
}
@media only screen and (min-width: 769px) {
  .hero__controls {
    bottom: 4rem;
    justify-content: end;
  }
}
.hero__counter {
  height: 2.625rem;
  background-color: #FFFFF0;
  border-radius: 2rem;
  padding-inline: 1.25rem;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.hero__container {
  position: absolute;
  inset-inline: 0;
  bottom: 3rem;
  z-index: 10;
}
@media only screen and (min-width: 769px) {
  .hero__container {
    bottom: 4rem;
  }
}
.hero--carousel .hero__container {
  bottom: 5rem;
}
@media only screen and (min-width: 769px) {
  .hero--carousel .hero__container {
    bottom: 4rem;
  }
}
.hero--static .hero__container {
  position: relative;
  height: calc(100% - 3rem);
  display: flex;
  align-self: flex-end;
}
@media only screen and (min-width: 769px) {
  .hero--static .hero__container {
    position: absolute;
  }
}
.hero__content {
  color: #FFFFF0;
  font-family: "Sibbaldia", serif;
  font-size: 1.5rem;
}
@media only screen and (min-width: 769px) {
  .hero__content > p {
    max-width: calc(100% - 15rem);
    width: 75%;
    text-wrap: pretty;
  }
}
.hero__content > *:last-child {
  margin-bottom: 0;
}
.hero__content strong {
  font-weight: 500;
}
.hero--static .hero__content {
  margin-top: auto;
  padding-top: 15rem;
}
.hero__title {
  font-size: 3rem;
}
@media only screen and (min-width: 769px) {
  .hero__title {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 1024px) {
  .hero__title {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 769px) {
  .hero__title:last-child {
    max-width: calc(100% - 15rem);
    width: 75%;
  }
}
.hero--static .hero__title {
  font-size: 2.5rem;
}
@media only screen and (min-width: 769px) {
  .hero--static .hero__title {
    font-size: 3.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  .hero--static .hero__title {
    font-size: 4.5rem;
  }
}
.hero--large .hero__title {
  text-transform: uppercase;
  white-space: nowrap;
  font-size: var(--h1-size-scale);
  margin-left: -2.1%;
  font-family: "Sibbaldia Thin", serif;
  text-align: center;
  font-weight: 100;
  font-variant-ligatures: discretionary-ligatures;
  margin-bottom: 4rem;
}
@media only screen and (min-width: 641px) {
  .hero--large .hero__title {
    --h1-size-scale: 22.2vw;
  }
}
@media only screen and (min-width: 769px) {
  .hero--large .hero__title {
    margin-bottom: 3rem;
    --h1-size-scale: 21.7vw;
  }
}
@media only screen and (min-width: 1024px) {
  .hero--large .hero__title {
    margin-bottom: 0;
    --h1-size-scale: 22.1vw;
  }
}
@media only screen and (min-height: 860px) and (min-width: 1024px) {
  .hero--large .hero__title {
    margin-bottom: 5vh;
  }
}
@media only screen and (min-width: 1280px) {
  .hero--large .hero__title {
    --h1-size-scale: 22.3vw;
    font-size: min(var(--h1-size-scale), var(--h1-size-max));
    margin-bottom: 0;
  }
}
@media only screen and (max-height: 800px) and (min-width: 1280px) {
  .hero--large .hero__title {
    --h1-size-max: 19.1rem;
  }
}
@media only screen and (max-height: 800px) and (min-width: 1440px) {
  .hero--large .hero__title {
    margin-bottom: -1rem;
  }
}

.info {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
}
.info-toggle {
  transition: opacity 0.2s ease;
}
.info-toggle.empty {
  opacity: 0;
  pointer-events: none;
}
.info__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info__bubble {
  position: absolute;
  text-align: left;
  bottom: 0;
  right: 0;
  border-radius: 0.625rem;
  background-color: #AFE650;
  padding: 1.875rem;
  margin: 0;
  min-width: 18.75rem;
  visibility: hidden;
  transform: scale(0);
  transform-origin: right bottom;
  transition: 0.2s ease;
  opacity: 0;
}
.info__bubble--active {
  visibility: visible;
  transform: scale(1);
  opacity: 1;
}
.info__bubble p {
  font-size: 0.875rem;
}
.info__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-family: "Sibbaldia", serif;
  font-weight: 500;
}
.info__close {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  border-radius: 50%;
  padding: 0.375rem;
}
.info__close:focus-visible {
  outline: 2px solid #00382b;
}
.info__close svg {
  display: block;
}

.garden-links__ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding-block: 2rem;
  gap: 1rem;
}
@media only screen and (min-width: 769px) {
  .garden-links__ul {
    border-top: 1px solid rgba(255, 255, 240, 0.3);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 0.3rem;
  }
}
.garden-links__li {
  margin: 0;
}
.garden-links__a {
  display: flex;
}
@media only screen and (min-width: 769px) {
  .garden-links__a:hover:not(.current .garden-links__a) {
    background-color: #AFE650;
    color: #00382b;
  }
  .garden-links__a:active:not(.current .garden-links__a) {
    background-color: #D9FD9A;
  }
}
.current .garden-links__a {
  background-color: #0A604C;
}
@media only screen and (min-width: 769px) {
  .current .garden-links__a {
    background-color: transparent;
    color: #AFE650;
  }
  .garden-links__a svg {
    display: none;
  }
}

.garden-links-mobile {
  padding-block: 1rem;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 769px) {
  .garden-links-mobile {
    padding-block: 1.875rem;
  }
}
@media only screen and (min-width: 1280px) {
  .garden-links-mobile {
    display: none;
  }
}
.garden-links-mobile--hide {
  display: none;
}
@media only screen and (min-width: 641px) {
  .garden-links-mobile--hide {
    display: block;
  }
}
@media only screen and (min-width: 1280px) {
  .garden-links-mobile--hide {
    display: none;
  }
}
.hero + .garden-links-mobile {
  margin-top: -3rem;
}
.garden-links-mobile__ul {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  gap: 1rem;
}
@media only screen and (min-width: 641px) {
  .garden-links-mobile__ul {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.garden-links-mobile__li {
  margin: 0;
}
.current .garden-links-mobile__a {
  background-color: #FFFFF0;
}

@media only screen and (max-width: 640px) {
  #bgvid {
    display: none;
  }
}

.garden-select {
  display: none;
  width: 93.3333333%;
}
@media only screen and (max-width: 640px) {
  .garden-select {
    display: block;
    width: 100%;
    background: #e8f1ef !important;
  }
}
.garden-select:before {
  border-left: 2px solid white !important;
}

.hero-img__image {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  height: 100%;
  width: 100%;
}

.alert {
  position: relative;
  z-index: 100;
  margin-top: 2px;
  overflow: visible;
}
.alert__inner {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  display: flex;
  padding: 1rem !important;
  padding-right: 4rem !important;
  gap: 1rem;
  color: #000;
  background: rgba(197, 222, 43, 0.95);
  font-size: 1.625rem;
}
@media only screen and (min-width: 641px) {
  .alert__inner {
    padding: 2rem !important;
    padding-right: 4rem !important;
  }
}
.alert__inner > * {
  margin: 0 !important;
}
.alert__icon {
  width: 3rem;
  flex-shrink: 0;
}
.alert__link {
  color: #000;
  transition: 0.2s ease;
}
.alert__link:hover {
  color: #000;
  text-decoration-thickness: 4px;
}
.alert__close {
  background-color: transparent;
  border: 0;
  position: absolute;
  right: 1rem;
  top: 1rem;
  vertical-align: middle;
  padding: 0.25rem;
  font-size: 0;
  transition: transform 0.2s ease;
}
.alert__close:hover {
  transform: rotate(90deg);
}
.alert p {
  margin-bottom: 1rem;
}

.cards {
  list-style: none;
}
.cards--panels {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .cards--panels {
    display: block;
  }
}
.cards.text-only {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 56, 43, 0.3);
}
.cards h3 {
  align-self: flex-start;
  flex-grow: 0;
  color: #00382b;
  font-weight: 500;
  margin-top: 0.875rem;
  font-size: 1.5rem;
}
.cards h3 .link {
  font-size: inherit;
}
.cards img:not(.icon) {
  border-radius: 0.313rem;
  width: 100%;
}
.cards li {
  margin-bottom: 0;
  position: relative;
}
.cards.bg-forest-green a:not(.link):not(.btn):not(.BBFormSubmitbutton):focus-visible .link.link--inline,
.cards.bg-forest-green a:not(.link):not(.btn):not(.BBFormSubmitbutton):focus-visible .story-tag {
  color: #00382b !important;
  background-color: #FFFFF0 !important;
}
.cards a:not(.link):not(.btn):not(.BBFormSubmitbutton):not(.useful-links a) {
  display: block;
  position: relative;
  outline: 0;
  text-decoration: none;
}
.cards a:not(.link):not(.btn):not(.BBFormSubmitbutton):not(.useful-links a) picture {
  overflow: hidden;
  display: block;
  border-radius: 0.313rem;
}
.cards a:not(.link):not(.btn):not(.BBFormSubmitbutton):not(.useful-links a) img {
  transition: all 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
}
.cards a:not(.link):not(.btn):not(.BBFormSubmitbutton):not(.useful-links a):hover picture img {
  transform: scale(1.1);
}
@media only screen and (min-width: 641px) {
  .cards a:not(.link):not(.btn):not(.BBFormSubmitbutton):not(.useful-links a):hover .parentBgImg {
    transform: scale(1.1);
  }
}
.cards a:not(.link):not(.btn):not(.BBFormSubmitbutton):not(.useful-links a):hover .link {
  text-decoration: underline;
}
.cards a:not(.link):not(.btn):not(.BBFormSubmitbutton):not(.useful-links a):hover .link__icon {
  transform: translateX(0.3rem);
}
.cards a:not(.link):not(.btn):not(.BBFormSubmitbutton):not(.useful-links a):focus-visible .link.link--inline,
.cards a:not(.link):not(.btn):not(.BBFormSubmitbutton):not(.useful-links a):focus-visible .story-tag {
  color: #FFFFF0;
  background-color: #00382b;
}
.cards a:not(.link):not(.btn):not(.BBFormSubmitbutton):not(.useful-links a):focus-visible picture img {
  transform: scale(1.1);
}
.cards a:not(.link):not(.btn):not(.BBFormSubmitbutton):not(.useful-links a).main-story {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cards a:not(.link):not(.btn):not(.BBFormSubmitbutton):not(.useful-links a).main-story .story-container p {
  font-size: 1.25rem;
  font-family: "Public Sans", serif;
  font-weight: normal;
}
.cards .more {
  position: relative;
}
.cards .more:not(.story-container) {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.garden-links-mobile ~ .filter-panel .cards .more {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 56, 43, 0.3);
}
.garden-links-mobile ~ .filter-panel .cards .more h4 {
  font-family: inherit;
  font-size: inherit;
  font-weight: normal;
}
@media only screen and (min-width: 641px) {
  .cards .btn, .cards .BBFormSubmitbutton {
    display: inline-flex;
  }
}
@media only screen and (max-width: 640px) {
  .cards + .btn, .cards + .BBFormSubmitbutton {
    margin-top: 1.875em;
  }
}

.story-tag {
  font-size: 1.125em;
  color: #00382b;
  display: inline-block;
  margin-right: auto;
}
.story-tag:empty {
  display: none;
}
@media only screen and (max-width: 640px) {
  .story-tag {
    font-weight: 300;
    font-size: 1em;
  }
  .story-tag + h3 {
    margin-bottom: 0;
  }
}

picture + .story-tag,
img + .story-tag,
.parentBgImg + .one-col .story-tag {
  font-size: 1.125em;
  background-color: #FFFFF0;
  padding: 5px 18px;
  border-radius: 0.313rem;
  top: 16px;
  left: 16px;
  display: inline-block;
  position: absolute;
  max-width: 85%;
  z-index: 99;
}
picture + .story-tag:not(:last-child),
img + .story-tag:not(:last-child),
.parentBgImg + .one-col .story-tag:not(:last-child) {
  font-size: 0.875rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
  font-weight: 600;
}
picture + .story-tag:empty,
img + .story-tag:empty,
.parentBgImg + .one-col .story-tag:empty {
  background: transparent;
}
.one-col-bg-img picture + .story-tag,
.one-col-bg-img img + .story-tag,
.one-col-bg-img .parentBgImg + .one-col .story-tag {
  position: static;
  margin-bottom: 1rem;
}

.tags {
  padding-top: 1rem;
}

.card-info h4 {
  font-size: 1.125em;
  font-weight: 700;
  color: #3d4539;
  margin-bottom: 0.5em;
}
.card-info li > ul {
  position: relative;
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.card-info li > ul > * {
  list-style-type: none;
  margin-bottom: 0;
}

.main-story {
  position: relative;
}
@media only screen and (max-width: 640px) {
  .main-story {
    margin-bottom: 1em;
  }
}
.single .main-story {
  margin-bottom: 0;
}
.main-story.alt .story-container {
  width: 100%;
  padding-right: 0;
}
@media only screen and (max-width: 640px) {
  .main-story.alt .story-container {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.main-story.alt .icon.inline {
  width: 0.75em;
  height: 0.75em;
}
.main-story .parentBgImg {
  transition: all 0.3s ease-in-out;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 16/9;
  border-radius: 0.313rem;
}
@media only screen and (min-width: 769px) {
  .main-story .parentBgImg {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
}
.single .main-story .parentBgImg {
  height: auto;
}
.main-story.one-col-bg-img {
  position: relative;
  border-radius: 0.313rem;
}
.main-story.one-col-bg-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&1+0,0+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#00000000",GradientType=1 ); /* IE6-9 */
}
@media only screen and (max-width: 640px) {
  .main-story.one-col-bg-img:before {
    display: none;
  }
}
.main-story .one-col {
  z-index: 99;
}
@media only screen and (min-width: 641px) {
  .main-story .one-col {
    color: #FFFFF0;
  }
}
.main-story .one-col h2 {
  font-size: 2.25em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.main-story .one-col .icon {
  margin-top: 17.5em;
}
@media only screen and (min-width: 641px) {
  .main-story .one-col .icon {
    fill: #FFFFF0;
  }
}
@media only screen and (max-width: 640px) {
  .main-story .one-col .icon {
    margin-top: 0;
  }
}
.main-story .story-container {
  background: #FFFFF0;
  width: 84.2105263%;
  padding-top: 1.2em;
  padding-right: 2.5em;
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .main-story .story-container {
    padding-top: 1rem;
  }
}
@media only screen and (max-width: 640px) {
  .main-story .story-container {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-top: 1.875em;
    margin-bottom: 1.875em;
  }
}

.sub-stories li {
  margin-bottom: 1.25em;
}
.sub-stories li:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 769px) {
  .sub-stories a > div {
    padding-top: 0.5rem;
  }
}
.sub-stories.text-only li {
  border-bottom: 1px solid rgba(0, 56, 43, 0.3);
  padding-bottom: 1.875em;
}
@media only screen and (max-width: 640px) {
  .sub-stories.text-only li {
    padding-top: 1.875em;
  }
}
.sub-stories.text-only li:first-child {
  border-top: 1px solid rgba(0, 56, 43, 0.3);
  padding-top: 1.875em;
}
@media only screen and (max-width: 640px) {
  .sub-stories.text-only li:first-child {
    border-top: none;
  }
}
.sub-stories.text-only li.heightSet {
  padding-bottom: 0;
  padding-top: 0;
  margin-bottom: 0;
}
.sub-stories.text-only li a {
  display: block;
  position: relative;
  padding-right: 30px;
}
.sub-stories.text-only .icon {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
}

.highlight picture:before {
  content: "highlight";
  position: absolute;
  right: 0;
  top: 0;
  padding: 0.625em 1em;
  text-transform: uppercase;
  background: #4a7fe2;
  color: #FFFFF0;
  z-index: 9999;
  border-bottom-left-radius: 5px;
}

.story-container {
  margin: 22px 0;
  font-family: "Sibbaldia", serif;
}
.story-container p {
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.3;
}
@media only screen and (max-width: 640px) {
  .story-container {
    margin: 15px 0;
  }
  .story-container p {
    font-size: 1.1875rem;
  }
}

.cta-panel {
  background-color: #00382b;
  position: relative;
}
.cta-panel-dec {
  position: absolute;
  right: -1px;
  bottom: -1px;
  max-height: calc(100% - 3rem);
  width: auto;
}
.cta-panel .cards {
  border-radius: 0.625rem;
}
.cta-panel--alt {
  background-color: #AFE650;
}
.cta-panel--alt .cards {
  color: #FFFFF0;
}
.cta-panel--alt .cards a:not(.btn):not(.BBFormSubmitbutton) {
  color: #FFFFF0;
}
.cta-panel--alt .cards a:not(.btn):not(.BBFormSubmitbutton):focus-visible .link {
  background-color: #FFFFF0;
  color: #00382b;
}
.cta-panel--alt .cta-panel-dec path {
  fill: #AFE650;
}
.cta-panel__video {
  display: none;
}
@media only screen and (min-width: 769px) {
  .cta-panel--alt .cta-panel__video {
    display: block;
    position: absolute;
    top: -2.55rem;
    left: calc(50% + 10rem);
    width: 6.05rem;
  }
}
@media only screen and (min-width: 1280px) {
  .cta-panel--alt .cta-panel__video {
    left: calc(50% + 20rem);
  }
}
.single.cta-panel--alt .cta-panel__video {
  display: none;
}
.cta-panel .alternative .cards > * {
  position: relative;
}
.cta-panel .card-link-text {
  font-size: 1.25rem;
  line-height: 1.4;
  font-family: "Sibbaldia", serif;
  letter-spacing: -0.3px;
}
.cta-panel.single .container {
  position: relative;
  border-radius: 0.313rem;
}
@media only screen and (min-width: 641px) {
  .cta-panel.single .container {
    overflow: hidden;
  }
  .cta-panel.single .container:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000 8.13%, rgba(0, 0, 0, 0) 61.88%);
  }
}
.cta-panel.single img {
  width: 100%;
  max-height: 39rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 640px) {
  .cta-panel.single .btn--secondary, .cta-panel.single .aside .btn, .cta-panel.single .aside .BBFormSubmitbutton, .aside .cta-panel.single .btn, .aside .cta-panel.single .BBFormSubmitbutton {
    color: #FFFFF0;
    background-color: #00382b;
  }
  .cta-panel.single .btn--secondary:hover, .cta-panel.single .aside .btn:hover, .cta-panel.single .aside .BBFormSubmitbutton:hover, .aside .cta-panel.single .btn:hover, .aside .cta-panel.single .BBFormSubmitbutton:hover {
    background-color: #0A604C;
  }
}
.cta-panel.single p {
  font-family: "Public Sans", serif;
  font-size: 1.2rem;
  font-weight: normal;
}
@media only screen and (min-width: 641px) {
  .cta-panel.single .story-container {
    position: absolute;
    z-index: 10;
    left: 1.5rem;
    top: 1rem;
    max-width: 29rem;
    color: #FFFFF0;
  }
}
@media only screen and (min-width: 769px) {
  .cta-panel.single .story-container {
    left: 2.75rem;
    top: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .cta-panel.single .story-container {
    left: 3.75rem;
    top: 2.5rem;
  }
}
.cta-panel.triple .cards {
  font-family: "Sibbaldia", serif;
}
.cta-panel.triple .cards h2 {
  font-size: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .cta-panel.triple .cards h2 {
    font-size: 2.625rem;
  }
}
.cta-panel.triple .cards p {
  font-size: 1.5625rem;
}
.cta-panel.triple .btn, .cta-panel.triple .BBFormSubmitbutton {
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 768px) {
  .cta-panel.triple .btn, .cta-panel.triple .BBFormSubmitbutton {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.cta-panel.triple .image-overlay-container {
  height: 100%;
  width: 100%;
  position: relative;
}
.cta-panel.triple .image-overlay-container picture img {
  height: 90vw;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 769px) {
  .cta-panel.triple .image-overlay-container picture img {
    height: 100%;
  }
}

.image-overlay-dec {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 14rem;
  width: 40% !important;
  display: none;
}
@media only screen and (min-width: 769px) {
  .image-overlay-dec {
    width: auto;
  }
}
.cta-panel--alt .image-overlay-dec {
  display: block;
}

.gallery {
  position: relative;
  margin-bottom: 1rem;
  background: #FFFFF0;
}
@media only screen and (max-width: 640px) {
  .gallery {
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 769px) {
  .gallery-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
}
.gallery img {
  border-radius: 10px;
}
.gallery .slick-arrow svg {
  height: 0.968rem;
  width: 0.968rem;
}
.gallery .slick-prev,
.gallery .slick-next {
  position: absolute;
  bottom: 1rem;
}
.gallery .slick-prev {
  right: 9rem;
  z-index: 10;
  top: auto !important;
}
.gallery .slick-next {
  right: 1rem;
  top: auto !important;
}
.gallery .caption-container {
  text-align: left;
  background: #FFFFF0;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.25em 2.5em 1.25em 14.0625%;
  width: 82.8125%;
}
.gallery .caption-container p {
  margin-bottom: 0;
}
@media only screen and (max-width: 640px) {
  .gallery .caption-container {
    position: relative;
    width: 100%;
    padding-left: 6.5%;
    padding-right: 6.5%;
  }
}
.gallery .slide-counter {
  font-size: 0.875em;
  font-weight: 500;
}
.gallery .gallery-img {
  position: relative;
  display: block;
}
.gallery .gallery-img:focus .fullscreen {
  transform: scale(1.2);
}
.gallery .gallery-img img {
  width: 100%;
}
.gallery .fullscreen {
  position: absolute;
  top: 40px;
  right: 40px;
  background: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 640px) {
  .gallery .fullscreen {
    top: 10px;
    right: 10px;
    width: 3em;
    height: 3em;
  }
}
.gallery__counter {
  height: 2.625rem;
  background-color: #FFFFF0;
  border-radius: 2rem;
  padding-inline: 1.25rem;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.gallery-container {
  position: relative;
}
.gallery-container .gallery-pagination {
  position: absolute;
  height: 2.625rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  top: auto !important;
  bottom: 1.25rem;
  right: 1.25rem;
}
.gallery-container .gallery-pagination > *:not(:last-child) {
  margin-right: 0.5rem;
}
@media only screen and (max-width: 640px) {
  .gallery-container .gallery-pagination {
    position: relative;
    bottom: auto;
    right: auto;
  }
  .gallery-container .gallery-pagination .info-toggle {
    position: absolute;
    right: 0;
    top: 0;
  }
  .gallery-container .gallery-pagination .slick-arrow {
    background-color: #00382b;
    color: #FFFFF0;
  }
  .gallery-container .gallery-pagination .slick-arrow:hover {
    background-color: #0A604C;
  }
  .gallery-container .gallery-pagination .slide-counter {
    background-color: #00382b;
    color: #FFFFF0;
  }
}

.slick-list.focused {
  outline: 3px solid #4a7fe2;
}

button.featherlight-close,
.featherlight .featherlight-close-icon {
  color: #3d4539 !important;
  background: #FFFFF0 !important;
}
button.featherlight-close:hover, button.featherlight-close:focus,
.featherlight .featherlight-close-icon:hover,
.featherlight .featherlight-close-icon:focus {
  background: #FFFFF0 !important;
  color: #a5adaa !important;
}

.featherlight-next:hover,
.featherlight-previous:hover {
  background: transparent;
}
.featherlight-next:hover span,
.featherlight-previous:hover span {
  opacity: 1;
}
.featherlight-next span,
.featherlight-previous span {
  transition: all 0.3s ease-in-out;
  display: block;
  opacity: 0;
  left: 0;
  width: auto;
  background: #FFFFF0;
}

.featherlight-next span {
  left: auto;
  right: 0;
}

.image-credit {
  font-size: 0.75em !important;
  font-weight: normal !important;
}
.image-credit:empty {
  display: none;
}

.giftaid-form {
  background-color: #00382b;
  color: #FFFFF0;
  overflow: hidden;
  min-height: 100vh;
}
.giftaid-form .container {
  overflow: visible;
  padding: 0 20px 60px 20px;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .giftaid-form .container {
    padding: 0 60px 60px 60px;
  }
}
@media only screen and (min-width: 1280px) {
  .giftaid-form .container {
    padding: 0 80px 60px 80px;
  }
}
.giftaid-form header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  margin-bottom: 6.2625rem;
}
@media only screen and (max-width: 440px) {
  .giftaid-form header > div {
    width: 160px;
  }
  .giftaid-form header > div:last-child {
    width: 100px;
  }
}
.giftaid-form h1 {
  font-size: 2.25rem;
  text-transform: none;
}
.giftaid-form h2 {
  margin-bottom: 2rem;
}
.giftaid-form p {
  font-size: 1.25rem;
  font-family: "Sibbaldia", serif;
  margin-bottom: 2em;
}
.giftaid-form a {
  color: #FFFFF0;
}
.giftaid-form a:hover {
  text-decoration-thickness: 3px;
}
.giftaid-form fieldset {
  border-bottom: 1px rgba(242, 242, 242, 0.3) solid;
  margin-top: 0;
  margin-bottom: 2em;
  padding-bottom: 2em;
}
.giftaid-form fieldset p:last-child {
  margin-bottom: 0;
}
.giftaid-form fieldset .layout li:last-child, .giftaid-form fieldset #socialise-container ul li:last-child, #socialise-container .giftaid-form fieldset ul li:last-child {
  margin-bottom: 0;
}
.giftaid-form fieldset:last-child {
  border-bottom: 0;
}
.giftaid-form input ~ button {
  margin-top: 1em;
}
.giftaid-form button[type=submit] {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0;
}
.giftaid-form button[type=submit] .icon {
  display: none;
}
.giftaid-form button[type=submit]:hover, .giftaid-form button[type=submit]:focus {
  background-color: #0A604C;
  color: #FFFFF0;
}
.giftaid-form .md-row {
  --gap-size: 1rem;
}
.giftaid-form .btn, .giftaid-form .BBFormSubmitbutton {
  font-family: "Sibbaldia", serif;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  color: #00382b;
  background-color: #AFE650;
  padding: 0.875rem;
  line-height: 1em;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  text-align: center;
  border-radius: 0.313rem;
}
.giftaid-form .btn:hover, .giftaid-form .BBFormSubmitbutton:hover, .giftaid-form .btn:focus, .giftaid-form .BBFormSubmitbutton:focus {
  background-color: #D9FD9A;
  color: #00382b;
}
.giftaid-form .btn .link__icon, .giftaid-form .BBFormSubmitbutton .link__icon {
  height: 0.9375rem;
  width: 0.9375rem;
}
.giftaid-form .btn--start-over {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.1875rem;
}
.giftaid-form .btn--start-over .link__icon {
  height: 1.25rem;
  width: 1.25rem;
}
.giftaid-form .field-validation-error {
  color: #97f8ec;
}
@media only screen and (max-width: 768px) {
  .giftaid-form .logo-container {
    width: 157px;
    height: 114px;
  }
}
.giftaid-form .logo-container a {
  display: inline-block;
}
.giftaid-form .logo-container a:focus-visible {
  border-radius: 0.313rem;
  outline: 2px solid #FFFFF0;
}

.modal-open {
  overflow: hidden;
}

/* The Modal (background) */
.modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: auto;
  background-color: #00382b;
  /* The Close Button */
}
.modal--intro {
  color: #FFFFF0;
  background-color: #00382b;
}
.modal--info {
  background-color: #FFFFF0;
  color: #00382b;
  display: none;
  padding: 3em 0;
}
.modal--info a {
  color: #00382b;
}
.modal .close-info {
  width: 60px;
  height: 60px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: fixed !important;
  right: 0;
  top: 0;
  transition: background-color 0.3s ease-in-out !important;
  padding: 0 !important;
  z-index: 10;
}
.modal .close-intro {
  margin-right: 1em;
  margin-bottom: 1em;
  display: inline-block !important;
}
.modal .close:hover,
.modal .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal .thank-you {
  flex-grow: 1;
  display: none;
}
.modal .thank-you--active {
  display: flex;
  flex-direction: column;
}
.modal .thank-you__inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.modal .thank-you .btn, .modal .thank-you .BBFormSubmitbutton {
  margin-top: auto;
  width: 100%;
}

.contact-panel {
  border-radius: 3px;
  position: relative;
  overflow: visible;
}
.contact-panel.inner {
  margin-bottom: 7.5em;
}
@media only screen and (max-width: 640px) {
  .contact-panel.inner {
    margin-bottom: 4.75em !important;
  }
}
.contact-panel:after {
  content: "";
  display: inline-block;
  margin: 0 5px;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  border-bottom: solid 30px transparent;
  border-right: solid 30px #e8f1ef;
  border-left: solid 30px transparent;
  border-top: solid 30px #e8f1ef;
  border-radius: 6px;
  position: absolute;
  right: 75px;
  bottom: -50px;
}
.contact-panel .icon {
  fill: #FFFFF0;
}
@media only screen and (max-width: 640px) {
  .contact-panel .icon {
    display: none;
  }
}
.contact-panel h2 {
  color: #676e64;
  margin-bottom: 0.5em;
}
.contact-panel h2 span {
  display: block;
  color: #3d4539;
}
.contact-panel p {
  margin-bottom: 2em;
}

.container .contact-panel {
  margin-top: 80px;
}
@media only screen and (max-width: 640px) {
  .container .contact-panel {
    margin-top: 40px;
  }
}

.bg-img-section + .container .contact-panel {
  margin-top: 80px !important;
}
@media only screen and (max-width: 640px) {
  .bg-img-section + .container .contact-panel {
    margin-top: 40px !important;
  }
}

.two-col-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (min-width: 769px) {
  .two-col-content {
    flex-direction: row;
    align-items: start;
  }
}
.two-col-content .module:only-child {
  margin-inline: auto;
}
.two-col-content img {
  margin-bottom: 1.875em;
  border-radius: 0.313rem;
}
.two-col-content .content-block {
  margin-bottom: 3em;
}
.two-col-content .features {
  width: 37.6623377%;
}
.two-col-content .features:empty {
  display: none;
}
@media only screen and (max-width: 640px) {
  .two-col-content .features {
    margin-bottom: 0.333333333em;
    width: 100%;
  }
}
.two-col-content .features li:before {
  content: "—";
  padding-right: 1em;
  display: inline-block;
}
.two-col-content .feature-list {
  font-size: 1.5em;
  float: left;
  margin-right: 5.1948052%;
  margin-bottom: 1em;
}
@media only screen and (max-width: 640px) {
  .two-col-content .feature-list {
    margin-right: 0;
    float: none;
  }
}
.two-col-content .feature-list ul {
  margin: 0;
  padding: 0;
}
.two-col-content .feature-list li {
  margin-bottom: 0.333333333em;
  list-style-type: none;
}
.two-col-content .feature-list p {
  font-size: 1em;
  margin-bottom: 1em;
}

.intro-text {
  font-family: "Sibbaldia", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.aside {
  position: relative;
  padding: 1rem;
  border-radius: 0.625rem;
  overflow: hidden;
  flex-shrink: 0;
  color: #FFFFF0;
}
@media only screen and (min-width: 769px) {
  .aside {
    width: 20rem;
    padding: 1.875rem;
    padding-bottom: 8rem;
  }
}
@media only screen and (min-width: 1024px) {
  .aside {
    width: 28rem;
  }
}
@media only screen and (min-width: 1280px) {
  .aside {
    width: 32rem;
  }
}
.aside h3, .aside h4, .aside h5 {
  padding-top: 0.875rem;
  margin-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 240, 0.3);
}
.aside h3:not(:first-of-type), .aside h4:not(:first-of-type), .aside h5:not(:first-of-type) {
  margin-top: 2rem;
}
.aside h2:not(:first-child) {
  margin-top: 3rem;
}
.aside .btn, .aside .BBFormSubmitbutton {
  margin-bottom: 1rem;
}
.aside a:not(.btn):not(.BBFormSubmitbutton) {
  color: #FFFFF0;
}
.aside a:not(.btn):not(.BBFormSubmitbutton):hover {
  text-decoration-thickness: 3px;
}
.aside p .btn, .aside p .BBFormSubmitbutton {
  margin-bottom: 0;
}
.aside ul {
  margin-left: 0;
  padding-left: 0;
}
.aside ul:not(.useful-links) li {
  list-style-type: disc;
  margin-left: 1.5rem;
}
.aside__video {
  position: absolute;
  right: 0;
  bottom: 0;
}

.story .text-col {
  width: 45%;
  float: right;
}
.story .img-col {
  width: 43%;
}
.story .img-col img {
  margin-bottom: 1.875em;
  border-radius: 0.313rem;
}
@media only screen and (max-width: 768px) {
  .story .img-col img {
    margin-bottom: 1em;
  }
}
.story > li {
  margin-bottom: 3.75em;
}
.story > li:nth-child(2n+1) .img-col {
  float: right;
}
.story > li:nth-child(2n+1) .text-col {
  float: left;
}

.hero + section.container.article-container .inner.image-holder {
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 3.75em;
}
@media only screen and (max-width: 640px) {
  .hero + section.container.article-container .inner.image-holder {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.article-container .two-col-content {
  width: 56.6176471%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 640px) {
  .article-container .two-col-content {
    width: 100%;
  }
}
.article-container .two-col-content > *:first-child {
  width: 100%;
  margin-left: 0;
}

.map-container {
  border: 20px solid white;
}
@media only screen and (max-width: 640px) {
  .map-container {
    margin-bottom: 2.5em;
  }
}

#locationMap {
  background: #f7f7f7;
  height: 100%;
}
@media only screen and (max-width: 640px) {
  #locationMap {
    height: 300px;
  }
}

.accordion {
  position: relative;
  border-bottom: 1px solid rgba(0, 56, 43, 0.3);
}
.bg-forest-green .accordion {
  border-color: rgba(255, 255, 240, 0.3);
}
.accordion h4 {
  font-weight: 700;
  margin-bottom: 0.611111111em;
}
.accordion__btn {
  padding: 1rem 0;
  padding-right: 1rem;
  position: relative;
  border: 0;
  border-top: 1px solid rgba(0, 56, 43, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: transparent;
  color: inherit;
  text-align: left;
  font-size: 1.25rem;
  font-family: "Sibbaldia", serif;
}
.accordion__btn:focus-visible {
  outline: 2px solid #00382b;
  border-radius: 0.313rem;
}
.bg-forest-green .accordion__btn {
  border-color: rgba(255, 255, 240, 0.3);
}
.bg-forest-green .accordion__btn:focus-visible {
  outline: 2px solid #FFD13D;
  border-radius: 0.313rem;
}
.accordion__btn h3 {
  font-size: 1.125em;
  font-weight: 700;
}
.accordion__icon {
  transition: 0.2s ease;
}
.active .accordion__icon {
  transform: scaleY(-1);
}
.accordion > div {
  display: none;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1.875em;
}
.accordion .active {
  margin-bottom: 0;
}
.accordion .active:after {
  transform: rotate(45deg);
}
.accordion .table-header {
  text-align: center;
  font-weight: bold;
}

.accordion + * {
  margin-top: 2.5em;
}

.one-col-content > *:not(.btn):not(.BBFormSubmitbutton):not(img) {
  width: calc(100% - 40px);
}
.one-col-content h3 {
  font-weight: 700;
  margin-bottom: 0.611111111em;
}
.one-col-content img {
  margin-bottom: 1.875em;
}
@media only screen and (max-width: 640px) {
  .one-col-content img {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.trip-advisor {
  text-align: center;
}
.trip-advisor img {
  margin-bottom: 1.875em;
}
.trip-advisor .cdsROW {
  background: transparent;
  font-size: 1em;
}
.trip-advisor .cdsROW .cdsRating {
  color: #3d4539;
}
.trip-advisor .ui_bubble_rating:after {
  color: #3d4539;
}
.trip-advisor .cdsROW .cdsRating {
  font-size: 1.5em;
  margin-bottom: 1.25em;
}
.trip-advisor .cdsROW .cdsRating .ui_bubble_rating {
  font-size: 1.25em;
}
@media only screen and (max-width: 640px) {
  .trip-advisor .cdsROW .cdsRating .ui_bubble_rating {
    margin-bottom: 0.333333333em;
  }
}
.trip-advisor #CDSROWRATING306 br {
  display: none;
}
@media only screen and (max-width: 640px) {
  .trip-advisor #CDSROWRATING306 br {
    display: block;
  }
}
.trip-advisor #CDSRATINGWIDGET306 {
  width: auto;
  padding: 0;
}
.trip-advisor #CDSROWLOC306, .trip-advisor #CDSROWLOGO306 {
  display: none;
}
@media only screen and (max-width: 640px) {
  .trip-advisor .btn, .trip-advisor .BBFormSubmitbutton {
    margin-bottom: 1em;
  }
}
.trip-advisor .excellence {
  display: block;
  font-size: 1.5em;
  margin-bottom: 1.25em;
}
.trip-advisor .excellence .icon {
  fill: #00b188;
}

form li {
  margin-bottom: 1.75rem;
}

legend {
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 28px;
  font-family: "Sibbaldia", serif;
}

label {
  display: inline-block;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  font-family: "Sibbaldia", serif;
}
label em {
  font-weight: 300;
  font-family: "Public Sans", serif;
}

input[type=text],
input[type=email],
textarea {
  border: 1px solid #4d534a;
  width: 100%;
  border-radius: 0.375rem;
  padding: 1.25rem;
}
input[type=text]:hover, input[type=text]:active,
input[type=email]:hover,
input[type=email]:active,
textarea:hover,
textarea:active {
  box-shadow: inset 0 0 0 1px #4d534a;
}

input[type=file] {
  width: 100%;
}

textarea {
  min-height: 250px;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #3d4539;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #3d4539;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #3d4539;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #3d4539;
}

/* selects */
.select {
  position: relative;
  vertical-align: middle;
  padding: 0;
  text-shadow: none;
  background-color: white;
}
.select select {
  border: 1px solid #00382b !important;
  max-width: 100%;
  border-radius: 0.375rem;
}
.select:before {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  padding-top: 17px;
}
.select > * {
  color: #3d4539;
  border-radius: 0;
  cursor: pointer;
  display: block;
  font-weight: 700;
  padding: 1.25em;
  width: 100%;
  border: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}
.select > *::-ms-expand {
  display: none;
}
.select:is(button):focus-visible {
  outline: 1px solid #00382b;
}
.select.calendar:before {
  content: none;
}

.select:before {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  height: 100%;
  width: 4rem;
  color: white;
}

.icon--down:before, .select:before {
  content: "";
  background: url(/dist/assets/_legacy/website/img/icon-arrow-down.svg) no-repeat center;
  background-size: 14px;
}

/* CHECKBOXES */
/* Base for label styling */
[type=checkbox]:not(:checked),
[type=checkbox]:checked {
  position: absolute;
  opacity: 0;
}

[type=checkbox]:focus-visible + label:before,
[type=checkbox]:focus-visible + label:after {
  border: 2px solid #FFD13D !important;
  outline: 2px solid #00382b;
}

[type=checkbox]:not(:checked) + label,
[type=checkbox]:checked + label {
  position: relative;
  cursor: pointer;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  width: auto !important;
  line-height: 1.2 !important;
  background: transparent;
  border-radius: 0;
  text-decoration: none;
  text-transform: none;
  padding: 0 0 0 36px !important;
  margin-bottom: 0;
}
[type=checkbox]:not(:checked) + label label,
[type=checkbox]:checked + label label {
  font-family: "Public Sans", serif;
  font-weight: 300;
  font-size: 1.1875rem;
}

[type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: white;
  border: 1px solid #3d4539;
  border-radius: 6px;
}

[type=checkbox]:checked + label:before {
  border: 0;
}

/* checked mark aspect */
[type=checkbox]:not(:checked) + label:after,
[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #00382b url(/dist/assets/_legacy/website/img/icon-tick-white.svg) no-repeat center;
  background-size: 10px 6.5px;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 6px;
  box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.16);
}

/* checked mark aspect changes */
[type=checkbox]:not(:checked) + label:after {
  opacity: 0;
}

[type=checkbox]:checked + label:after {
  opacity: 1;
}

/* disabled radio */
[type=checkbox]:disabled:not(:checked) + label:before,
[type=checkbox]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}

[type=checkbox]:disabled:checked + label:after {
  color: #999;
}

[type=checkbox]:disabled + label {
  color: #aaa;
  pointer-events: none;
}

/* hover style just for information */
/* ERRORS */
.field-validation-error,
.error {
  margin-top: 0.7em;
  display: block;
  color: #6b0e00;
  font-weight: bold;
}

.help-block {
  display: block;
  margin-top: 1em;
  font-family: "Public Sans", serif;
  font-size: 1rem;
  font-weight: normal;
}

.maxlength {
  margin-top: 1em;
}

#locationLink.disabled {
  display: none;
}

.BBFormTextbox,
.BBFormSelectList,
.BBFormTextArea {
  border-radius: 0px !important;
  border-shadow: none !important;
  border: 1.5px solid #4d534a !important;
  font-size: 1em !important;
  line-height: 1.2em;
  min-height: 30px;
  padding: 1.25em !important;
  margin-bottom: 1em !important;
}

.newsletter .BBFormTextbox:focus {
  outline: solid var(#4a7fe2) 2px !important;
}

.BBFormTextbox.BBFormSortCodeTextbox {
  padding: 2px !important;
}

.BBFormSelectList {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background: url(../img/icon-arrow-down-select.svg) 100% 50% no-repeat white !important;
  border-radius: 3px !important;
}

.BBFormSelectQuantity {
  width: auto;
  -webkit-appearance: menulist !important;
  -moz-appearance: menulist !important;
  appearance: menulist !important;
  background: none !important;
  border: 1px solid #d0d0d0 !important;
}

.BBThreeFields .BBFormSelectList,
.BBThreeFields .BBFormTextbox {
  width: 100% !important;
}

.BBFieldExpiration .BBFormSelectList {
  width: 140px !important;
}

.BBFormContainer[data-bbox-part-id=a2de3d22-83c7-463a-aa40-92ae4fa11685] .BBFormCheckboxLabel {
  display: inline-block !important;
  line-height: 1.3em !important;
  width: auto !important;
}

.BBFormContainer .BBFormFieldContainer input[type=checkbox] {
  opacity: 1 !important;
}

.BBFormContainer[data-bbox-part-id=a2de3d22-83c7-463a-aa40-92ae4fa11685] .BBFormFieldUKGiftAidTermsLabel {
  font-size: 0.875em !important;
  line-height: 1.428571429em !important;
  margin-bottom: 1em !important;
}

.BBFormRadioButton.BBFormRadioGivingLevel:focus, .BBFormRadioButton.BBFormRadioGivingLevel:active {
  border: 2px solid #4d534a !important;
}
.BBFormRadioButton.BBFormRadioGivingLevel:focus ~ .BBFormRadioLabelGivingLevel, .BBFormRadioButton.BBFormRadioGivingLevel:active ~ .BBFormRadioLabelGivingLevel {
  border: 2px solid #4d534a !important;
}

.BBFormRadioLabelGivingLevel {
  font-size: 1.8em;
  min-width: 90px;
  border: 1.5px solid #4d534a;
  border-radius: 0 !important;
  padding: 12px;
  text-align: center;
  line-height: 1em;
}
.BBFormRadioLabelGivingLevel:focus, .BBFormRadioLabelGivingLevel:active {
  border: 2px solid #4d534a !important;
}

.BBFormRadioLabelGivingLevelNotSelected:hover {
  background: #191e17 !important;
  color: #ffffff !important;
}
.BBFormRadioLabelGivingLevelNotSelected:hover:focus, .BBFormRadioLabelGivingLevelNotSelected:hover:active {
  border: 1.5px solid #4d534a !important;
}
.BBFormRadioLabelGivingLevelNotSelected:hover .BBFormRadioDescriptionOther:focus, .BBFormRadioLabelGivingLevelNotSelected:hover .BBFormRadioDescriptionOther:active {
  color: #fff;
}

.BBFormRadioGivingLevel:focus, .BBFormRadioGivingLevel:active {
  border: 2px solid #4d534a !important;
}

.BBFormRadioLabelGivingLevelSelected {
  background: #3d4539 !important;
  border: 1.5px solid #4d534a;
  color: #fff !important;
}
.BBFormRadioLabelGivingLevelSelected:focus, .BBFormRadioLabelGivingLevelSelected:active {
  border: 1.5px solid #4d534a !important;
}
.BBFormRadioLabelGivingLevelSelected .BBFormRadioDescriptionOther:focus, .BBFormRadioLabelGivingLevelSelected .BBFormRadioDescriptionOther:active {
  color: #fff;
}

.BBFormContainer .BBFormRadioLabel.BBFormRadioLabelGivingLevel.BBFormRadioLabelGivingLevelNotSelected,
.BBFormContainer .BBFormRadioLabel.BBFormRadioLabelGivingLevel {
  border: none;
  background: transparent;
  display: inline-block;
}

.BBFormSection {
  margin: 0 !important;
  max-width: 100% !important;
}
.BBFormSection .BBFormFieldContainer a:hover {
  text-decoration-thickness: 3px;
}

.BBFormGiftOtherAmount {
  min-width: 130px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  color: #FFFFF0 !important;
}

.BBFormTextbox:focus {
  box-shadow: none !important;
}

.BBFormFieldLabel {
  width: auto !important;
  padding-right: 0 !important;
  float: none !important;
  text-align: left !important;
  font-size: 1.125em !important;
  line-height: 1.388888889em !important;
  margin-left: 0 !important;
  margin-bottom: 1em !important;
  font-weight: bold !important;
}

.BBFormTextbox:not(:focus),
.BBFormTextArea:not(:focus),
.BBFormSelectList:not(:focus) {
  opacity: 1 !important;
}

.BBFormContainer {
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-radius: 0 !important;
}
.BBFormContainer legend {
  font-size: 1em !important;
}
.BBFormContainer input.placeholder,
.BBFormContainer textarea.placeholder {
  color: #3d4539 !important;
}
.BBFormContainer input:-moz-placeholder,
.BBFormContainer textarea:-moz-placeholder {
  color: #3d4539 !important;
}
.BBFormContainer input::-webkit-input-placeholder,
.BBFormContainer textarea::-webkit-input-placeholder {
  color: #3d4539 !important;
}

.BBFormSectionHeading {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 1.5em !important;
  border: none !important;
}
.BBFormSectionHeading label {
  margin-bottom: 1.25em !important;
  font-weight: 700 !important;
}

.BBFormFieldContainer {
  margin: 0 0 1.5em 0 !important;
  color: #3d4539 !important;
}

.BBFormRadioItem {
  margin-bottom: 0 !important;
}

.BBFormRadioList {
  margin-bottom: 1.875em !important;
}

.BBFormTextArea {
  margin-left: 0 !important;
  height: auto !important;
}

.BBFormGrid.BBFormGridChannel {
  margin: 0 !important;
  padding: 0 !important;
}
.BBFormGrid.BBFormGridChannel li {
  margin-left: 0 !important;
}

.BBFormCheckboxLabel {
  display: inline;
  text-align: left;
  width: 210px;
  margin-bottom: 1em !important;
  font-size: 1.125em;
  line-height: 1.388888889em;
}

.BBFormFieldUKGiftAidLabel {
  padding-right: 0 !important;
  float: none !important;
  white-space: normal !important;
  text-align: left !important;
}

.BBLinkSecureInfo {
  border-bottom: none !important;
  margin-left: 0 !important;
}

.BBFormContainer .BBFormErrorBlock {
  border-color: transparent !important;
  background-image: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  margin: 0 !important;
  color: inherit !important;
  margin-bottom: 3rem !important;
}
.BBFormContainer .BBFormErrorBlock .BBFormErrorItem {
  margin: 0 !important;
  padding-left: 0 !important;
  margin-bottom: 0.5rem !important;
}

#divClientError > * {
  margin: 0 !important;
  padding: 0 !important;
  color: #cf2908 !important;
  margin-bottom: 1rem !important;
}
#divClientError > * li {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}
#divClientError > div {
  font-weight: bold !important;
  font-size: 1.3125rem !important;
}

.BBFormErrorItem.BBFormInlineErrorItem {
  padding: 0 !important;
  margin: 0 0 2rem !important;
  color: red !important;
  text-transform: uppercase !important;
  font-weight: bold !important;
  font-size: 11px !important;
  font-style: normal !important;
}
.BBFormErrorItem.BBFormInlineErrorItem + .BBFormErrorItem.BBFormInlineErrorItem {
  margin-top: -1.8rem !important;
}

.BBTwoFields .BBFormTextbox,
.BBTwoFields .BBFormSelectList {
  width: 48% !important;
  margin-right: 2% !important;
}
@media only screen and (max-width: 768px) {
  .BBTwoFields .BBFormTextbox,
  .BBTwoFields .BBFormSelectList {
    width: 98% !important;
    margin-right: 0 !important;
  }
}

.BBThreeFields,
.BBTwoFields,
.BBTwoFields .BBFormFieldContainer {
  font-size: 0 !important;
}
.BBThreeFields > *,
.BBTwoFields > *,
.BBTwoFields .BBFormFieldContainer > * {
  font-size: 14px !important;
}
.BBThreeFields label,
.BBTwoFields label,
.BBTwoFields .BBFormFieldContainer label {
  font-size: 16px !important;
}

.BBFormContainer .BBMembershipForm .BBFormDirectDebitDetails .BBFormSortCodeTextbox,
.BBFormContainer .BBMembershipForm .BBDFormSectionPaymentInfo .BBFormSortCodeTextbox {
  width: 55px !important;
}

.BBFormContainer .BBFormSectionPriceSelect .BBFormPricingTable .BBFormSelectList.BBFormSelectQuantity {
  width: auto !important;
}

.BBThreeFields .BBFormSelectList {
  width: 160px !important;
  display: block !important;
}
@media only screen and (max-width: 768px) {
  .BBThreeFields .BBFormSelectList {
    width: 98% !important;
    margin-right: 0 !important;
  }
}

.BBThreeFields .BBFormTextbox {
  width: 48% !important;
  margin-right: 2% !important;
}
@media only screen and (max-width: 768px) {
  .BBThreeFields .BBFormTextbox {
    width: 98% !important;
    margin-right: 0 !important;
  }
}

#bboxdonation_payment_lblHeadingPayment,
#bboxmembership_payment_lblHeadingPayment {
  margin-bottom: 0 !important;
}

#bboxsecure {
  font-size: 12px !important;
  margin-bottom: 0 !important;
  display: inline-block !important;
}

#bboxdonation_payment_lblCCType,
#bboxmembership_payment_lblCCType {
  display: none !important;
}

.BBCardImageContainer {
  margin-bottom: 1em !important;
}
.BBCardImageContainer > * {
  margin-bottom: 5px !important;
}

.BBFormRadioLabel {
  margin-bottom: 10px !important;
}
.BBFormRadioLabel:focus, .BBFormRadioLabel:active {
  border: 2px solid #fff;
}

#bboxdonation_payment_txtCSC {
  width: 70px !important;
}

.BBMembershipForm {
  max-width: 100% !important;
}

#bbox-root-d5920f92-c86f-42c3-a119-a92830e6a7fd {
  width: 65.625% !important;
  margin: 0 auto !important;
}
@media only screen and (max-width: 640px) {
  #bbox-root-d5920f92-c86f-42c3-a119-a92830e6a7fd {
    width: 87.5% !important;
  }
}

#bboxdonation_billing_divOptInIntro {
  margin-bottom: 0 !important;
}

.BBFormCheckbox svg {
  display: none !important;
}

.BBFormFieldLabel.BBSVGSupport {
  left: 0 !important;
  padding: 3em !important;
}

.BBFormSectionMembershipDetailsHeading {
  padding: 0 !important;
}

.BBFormSectionMembershipDetails {
  background-image: none !important;
  border-radius: 0 !important;
  border: 2px #3d4539 solid !important;
  background-color: transparent !important;
  padding: 30px 30px 15px 30px !important;
  margin-bottom: 2em !important;
}

.BBFormChangeMembershipLink {
  color: #3d4539 !important;
  text-decoration: underline !important;
}

.BBMembershipListing {
  margin-bottom: 40px !important;
}

.container.form {
  margin-bottom: 6rem;
}

#bboxevent_billing_Email input,
#bboxevent_billing_Mail input,
#bboxevent_billing_Phone input {
  position: relative !important;
  left: 0 !important;
}

.inline-site-search-form {
  background: #FFFFF0;
  padding: 52px 0 80px 14.0625%;
  margin-bottom: 0;
}
@media only screen and (max-width: 640px) {
  .inline-site-search-form {
    padding-top: 3.333333333em;
    padding-bottom: 3.333333333em;
  }
}
.inline-site-search-form button {
  box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.4);
}
.inline-site-search-form label {
  display: block;
}
.inline-site-search-form input {
  width: 70%;
  border: 1.5px solid #4d534a;
  font-size: 1.6em;
  padding: 0.55em 0;
  margin-right: 1.8181818%;
}
@media only screen and (max-width: 640px) {
  .inline-site-search-form input {
    display: block;
    width: 83.6363636%;
    margin-bottom: 1em;
  }
}

.forceUpdate {
  padding: 0;
}

.BBFieldSecurityCode > a {
  width: 40px;
  height: 40px;
  background-color: #3d4539;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}
.BBFieldSecurityCode > a:hover {
  opacity: 0.85;
}
.BBFieldSecurityCode > a:after {
  content: "?";
  color: #fff;
  display: block;
  text-align: center;
  line-height: 40px;
  font-size: 1.8em;
  font-weight: bold;
}
.BBFieldSecurityCode > a img {
  display: none !important;
}

.news-article-panel .filter-toggles label {
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.container.filter-panel .inner {
  padding-bottom: 2.75em;
  font-weight: 700;
}

.filter-panel > *:first-child {
  margin-bottom: 3rem;
}
.filter-panel h2 span {
  font-size: 0.666666667em;
  font-weight: normal;
}

.filter-toggles li {
  margin-bottom: 0;
}
@media only screen and (max-width: 640px) {
  .filter-toggles li {
    margin-top: 2em;
  }
}
.filter-toggles li:first-child {
  margin-top: 0;
}
.filter-toggles li > span {
  display: block;
  padding-bottom: 0.5rem;
  font-size: 1.25rem;
  font-family: "Sibbaldia", serif;
  font-weight: 500;
}
.filter-toggles li .select {
  overflow: visible;
  display: block;
  text-decoration: none;
  border: 1px solid #00382b;
  border-radius: 0.313rem;
  width: 100%;
}
.filter-toggles li .select > div,
.filter-toggles li .select > span {
  width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1875em;
  text-align: left;
}
.filter-toggles li .select > input {
  line-height: 1em;
  font-size: inherit;
}

.filter-dd {
  background: #FFFFF0;
  margin-bottom: 2rem;
  /* RADIO CHECKBOXES */
  /* Base for label styling */
  /* checked mark aspect */
  /* checked mark aspect changes */
  /* disabled radio */
}
.filter-dd fieldset > * {
  display: none;
}
@media only screen and (max-width: 640px) {
  .filter-dd fieldset .md-row {
    --gap-size: 0;
  }
}
.filter-dd li {
  padding-left: 1em;
  margin-bottom: 0;
}
.filter-dd [type=radio]:not(:checked) + label,
.filter-dd [type=radio]:checked + label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  background: transparent;
  border-radius: 0;
  text-decoration: none;
  text-transform: none;
  margin-bottom: 0;
}
@media only screen and (max-width: 640px) {
  .filter-dd [type=radio]:not(:checked) + label:nth-child(2),
  .filter-dd [type=radio]:checked + label:nth-child(2) {
    margin-left: 0;
  }
}
.filter-dd [type=radio]:not(:checked) + label:before {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -16px;
  width: 32px;
  height: 32px;
  background: #FFFFF0;
  border: 2px solid #3d4539;
}
.filter-dd [type=radio]:checked + label:before {
  border: 0;
}
.filter-dd [type=radio]:not(:checked) + label:after,
.filter-dd [type=radio]:checked + label:after {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  left: 0;
  background: #FFFFF0 url(/dist/assets/_legacy/website/img/icon-checkbox-tick-small.svg) no-repeat center;
  width: 32px;
  height: 32px;
  border: 2px solid #3d4539;
}
.filter-dd [type=radio]:not(:checked) + label:after {
  opacity: 0;
}
.filter-dd [type=radio]:checked + label:after {
  opacity: 1;
}
.filter-dd [type=radio]:disabled:not(:checked) + label:before,
.filter-dd [type=radio]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
.filter-dd [type=radio]:disabled:checked + label:after {
  color: #999;
}
.filter-dd [type=radio]:disabled + label {
  color: #aaa;
}

.filterDate {
  text-align: center;
  padding-bottom: 1.25em;
}
.filterDate .options {
  font-size: 0;
}
@media only screen and (max-width: 640px) {
  .filterDate .divider {
    padding: 0 10px;
  }
  .filterDate .divider.dateFilterSpan_Month {
    display: none;
  }
}
.filterDate .divider:last-child {
  display: none;
}
.filterDate li {
  font-size: 1rem;
  line-height: 2.2em;
  min-width: 3.75rem;
  padding-left: 0;
  padding-right: 1.875rem;
}
@media only screen and (max-width: 640px) {
  .filterDate li {
    padding-right: 0.625rem;
  }
}
.filterDate li:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1rem;
  background: #00382b;
  margin-left: 1.875rem;
}
@media only screen and (max-width: 640px) {
  .filterDate li:after {
    margin-left: 0.625rem;
  }
  .filterDate li {
    border-bottom: none;
    min-width: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.filterDate li:first-child {
  text-align: left;
}
.filterDate li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.filterDate li:last-child:after {
  display: none;
}
@media only screen and (max-width: 640px) {
  .filterDate .specific-day {
    display: block;
  }
}
.filterDate .period-nav {
  font-size: 1.5rem;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-weight: normal;
}
.filterDate .period-nav .prev,
.filterDate .period-nav .next {
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  padding: 0.4rem;
  transition: transform 0.2s ease;
}
.filterDate .period-nav .prev:hover,
.filterDate .period-nav .next:hover {
  transform: scale(1.05);
}
.filterDate .period-nav span {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.filterDate .picker__input {
  border: none;
  cursor: pointer;
  text-align: center;
  margin-right: 10px;
}
@media only screen and (max-width: 640px) {
  .filterDate .picker__input {
    margin-right: 0;
  }
}
.filterDate input[type=radio]:checked + label {
  font-weight: bold;
}
.filterDate label {
  cursor: pointer;
  font-weight: normal;
}

.events-container {
  margin-bottom: 3.75em;
}
.events-container h2 span {
  display: block;
}

/* accessible date picker */
.specific-day {
  position: relative;
}
.specific-day #date {
  border: 2px solid #3d4539;
  padding: 5px;
}

a.accCalendar {
  display: inline-block;
  background: transparent;
}

table.calendar {
  border-collapse: separate;
  border-spacing: 1px;
}

table.calendar td,
table.calendar th {
  padding: 0.3em 0.5em;
  border-radius: 0.15rem;
}

td.empty {
  background: rgba(255, 255, 255, 0.07);
}

td.nav,
td.day {
  cursor: pointer;
}

td.day {
  color: #000;
}

td.dayToday {
  color: #FFFFF0;
  background: #006750;
}

td.dayInPrevMonth,
td.dayInNextMonth {
  color: #000;
  background: #e6e6e6;
}

td.day:hover {
  color: #FFFFF0;
  background: #006750;
}

td[aria-current=date] {
  color: #FFFFF0;
  background: #006750;
}

td.month {
  font-weight: 600;
}

td.comment {
  position: relative;
}

td.comment span::after {
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  top: 0.2rem;
  right: 0.2rem;
  content: "";
  background: #49182e;
  border-radius: 7px;
}

td.comment.selected {
  background: #006750;
}

td.disabled,
td.disabled:hover {
  color: #ccc;
  background: #bdbdbd;
  cursor: auto;
}

td.disabled.selected {
  background: #c2c2c2;
}

div.commentTooltip {
  width: 271px;
  padding: 0.5rem;
  color: #FFFFF0;
  background: #3d4043;
  font-size: 0.8em;
  font-weight: bold;
  max-height: 50px;
  overflow-x: hidden;
  overflow-y: auto;
  word-wrap: break-word;
  text-align: left;
}

div.commentAdd {
  background: #2e3135;
  border-radius: 0.3rem;
}

div.commentAdd button {
  font-size: 100%;
  text-transform: uppercase;
  color: #FFFFF0;
  background: #2e3135;
  padding: 0.5rem;
  margin-top: -5px;
  border: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
  box-shadow: 0 10px 6px -6px #777;
}

div.commentAdd textarea {
  width: 270px;
  height: 2em;
  overflow: auto;
  word-wrap: break-word;
  text-align: left;
  padding: 0.2em;
  margin: 0.5rem 0.5rem 0;
}

div.monthMessage {
  margin: 20px 10px 10px 10px;
  padding: 10px;
}
div.monthMessage p {
  margin-bottom: 0;
}

@media only screen and (min-width: 769px) {
  .container .inner .ezsearch-results,
  .container .inner .ezsearch-summary,
  .container .inner .ezsearch-form,
  .container .inner .ezsearch-result-count,
  .container .inner .ezsearch-pager {
    margin-left: 19.1176471%;
    margin-right: 19.1176471%;
  }
}
.container .inner.results-container {
  padding-bottom: 0;
}
.container .inner.search-pagination {
  padding-bottom: 2.5em;
}

.ezsearch-summary {
  font-size: 1.5em;
  line-height: 1.166666667em;
}
.ezsearch-summary .search-shop-text {
  font-size: 1.125rem;
}

.ezsearch-no-results .search-shop-text {
  font-weight: 700;
  font-size: 1.125rem;
}

.ezsearch-form {
  margin-bottom: 2.5em;
}
.ezsearch-form input {
  width: 100%;
  height: 3.75rem;
}
.ezsearch-form .btn, .ezsearch-form .BBFormSubmitbutton {
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
  width: auto;
}

.ezsearch-result {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 56, 43, 0.3);
}
.ezsearch-result p:last-child {
  margin-bottom: 0;
}
.ezsearch-result h2 a:hover {
  text-decoration-thickness: 4px;
}

.social-links {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}
.social-links__a {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.313rem;
  background-color: #00382b;
  color: #FFFFF0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-links__a:hover {
  background-color: #0A604C;
}
.social-links__a:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #FFD13D, 0 0 0 4px #00382b;
}
.social-links__a svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

#socialise-container {
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
}
#socialise-container .close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
}
#socialise-container #socialise-inner {
  position: absolute;
  width: 60%;
  top: 100px;
  left: 0;
  right: 0;
  background: #FFFFF0;
  padding: 40px;
  margin: 0 auto;
  text-align: center;
}
#socialise-container #socialise-inner h2 {
  font-size: 1.3rem;
}
#socialise-container ul li {
  margin: 0 10px;
}
#socialise-container .icon {
  width: 2em;
  height: 2em;
}

.find-us {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .find-us {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1024px) {
  .find-us {
    gap: 2rem;
  }
}
.find-us__aside {
  border-radius: 0.625rem;
  color: #FFFFF0;
  padding: 1rem;
  padding-bottom: 7rem;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .find-us__aside {
    width: 18rem;
    flex-shrink: 0;
    padding: 1.875rem;
    padding-bottom: 7rem;
  }
}
@media only screen and (min-width: 1024px) {
  .find-us__aside {
    width: 25rem;
  }
}
.find-us__aside .btn, .find-us__aside .BBFormSubmitbutton {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .find-us__aside .btn, .find-us__aside .BBFormSubmitbutton {
    width: auto;
  }
}
.find-us__graphic {
  position: absolute;
  left: -1px;
  bottom: -1px;
}
.find-us__map {
  border-radius: 0.625rem;
  overflow: hidden;
}
.find-us__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (min-width: 769px) {
  .book-page {
    display: flex;
  }
  .book-page > * {
    width: 50%;
  }
  .book-page .gallery {
    margin-bottom: 0;
  }
}
.book-page .gallery img {
  border-radius: 0;
  width: 100%;
}

.book-inner .gallery-container {
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 769px) {
  .book-inner .gallery-container {
    padding-right: 2rem;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .book-inner .gallery-container {
    padding-right: 4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .book-inner .gallery-container {
    padding-right: 6rem;
  }
}
@media only screen and (min-width: 769px) {
  .book-inner .gallery-pagination {
    margin-right: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .book-inner .gallery-pagination {
    margin-right: 4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .book-inner .gallery-pagination {
    margin-right: 6rem;
  }
}

.book-pagination {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}

.newsletter {
  background-color: #00382b;
  padding-top: 5rem;
  padding-bottom: 7rem;
  position: relative;
}
.newsletter__video {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .newsletter__video {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(-90deg) translateY(-100%);
    transform-origin: top right;
    width: 15%;
    max-width: 12.5rem;
  }
}
.newsletter .container > h2 {
  color: #AFE650;
  font-size: 1.688rem;
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 769px) {
  .newsletter .container > h2 {
    font-size: 2.25rem;
  }
}
.newsletter .BBFormSignupPrivacyLabelWide {
  font-size: 1rem !important;
}
.newsletter .BBFormSignupPrivacyLabelWide + * {
  font-size: 1rem !important;
}
.newsletter #bbox-root-1fc538ae-2427-4adf-ab1d-5d709520303d .BBFormFieldContainer.BBFormFieldRequired.BBFormSignupFieldWide {
  width: 100%;
  float: none;
}
.newsletter #bbox-root-1fc538ae-2427-4adf-ab1d-5d709520303d .BBFormFieldContainer.BBFormFieldRequired.BBFormSignupFieldWide input[type=email].BBFormTextBox {
  max-width: 100% !important;
  width: 100% !important;
}
.newsletter #bbox-root-1fc538ae-2427-4adf-ab1d-5d709520303d .BBFormSectionHeading label.BBFormFieldLabelEdit {
  font-size: 1.25rem !important;
  text-align: center;
}
.newsletter .BBFormContainer,
.newsletter .BBFormFieldContainer {
  color: #FFFFF0 !important;
}
.newsletter .BBFormContainer a,
.newsletter .BBFormFieldContainer a {
  color: #FFFFF0 !important;
}
.newsletter .BBFormContainer a:focus-within,
.newsletter .BBFormFieldContainer a:focus-within {
  outline: 2px solid #FFFFF0;
  outline-offset: 5px;
}
.newsletter .BBFormFieldContainer {
  margin-bottom: 0.3rem !important;
  float: none !important;
}
.newsletter form label#lblemailaddress {
  display: block !important;
  font-size: 1.2rem !important;
  position: absolute;
  bottom: calc(100% + 0.3rem);
  color: #FFFFF0 !important;
}
.newsletter form legend + .BBFormFieldContainer {
  display: none !important;
}
.newsletter form fieldset {
  position: relative !important;
}
.newsletter form legend {
  display: none !important;
}
.newsletter form input[type=email] {
  width: 100% !important;
  font-size: 1.25rem !important;
  border: 1.5px solid #4d534a !important;
  padding-block: 0.5rem !important;
  padding-left: 1rem !important;
  padding-right: 8rem !important;
  height: 3.75rem !important;
  border-radius: 0.313rem !important;
  margin-bottom: 0 !important;
}
.newsletter form input.BBFormSubmitbutton {
  position: absolute !important;
  right: 0.5rem !important;
  top: 0.5rem !important;
  padding: 0.875em !important;
  border-radius: 0.313rem !important;
  box-shadow: none !important;
  border: 0 !important;
  background-color: #00382b !important;
  width: auto !important;
  font-size: 1rem !important;
}
.newsletter form input.BBFormSubmitbutton:hover {
  background-color: #0A604C !important;
}
.newsletter form input.BBFormSubmitbutton:focus-visible {
  outline: 0 !important;
  box-shadow: 0 0 0 2px #FFD13D, 0 0 0 4px #00382b !important;
}
.newsletter #reCAPTCHASection {
  display: none !important;
}

.footer ul, .footer p {
  font-size: 1rem;
}
.footer__main {
  background-color: #AFE650;
  padding: 1rem;
}
@media only screen and (min-width: 769px) {
  .footer__main {
    padding: 2rem;
  }
}
.footer__inner {
  background-color: #FFFFF0;
  border-radius: 0.75rem;
  padding-block: 4rem;
  position: relative;
}
.footer__logo {
  margin-bottom: 3rem;
  display: inline-block;
  width: 13.75rem;
}
@media only screen and (min-width: 769px) {
  .footer__logo {
    width: 18.75rem;
  }
}
.footer__logo:focus-visible {
  outline: 2px solid #00382b;
  border-radius: 0.313rem;
}
@media only screen and (min-width: 641px) {
  .footer__video {
    border-top-right-radius: 0.75rem;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.footer a {
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .inline-focus {
  display: inline-block;
  padding-block: 0.3rem;
}
@media only screen and (min-width: 769px) {
  .footer .inline-focus {
    padding-block: 0;
  }
}

.back-to-top {
  text-align: center;
  position: absolute;
  bottom: 100%;
  margin: 0 auto;
  inset-inline: 0;
}
.back-to-top a.btn, .back-to-top a.BBFormSubmitbutton {
  border: 4px solid transparent;
  border-bottom: 0;
  padding-inline: 3rem;
  padding-bottom: 1rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.back-to-top a.btn:hover, .back-to-top a.BBFormSubmitbutton:hover {
  background-color: #FFFFF0;
  border-color: #AFE650;
  text-decoration: none;
}
.back-to-top a.btn:focus-visible, .back-to-top a.BBFormSubmitbutton:focus-visible {
  box-shadow: 0 0 0 2px #FFFFF0, 0 0 0 4px #00382b;
}

.footer-nav {
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 56, 43, 0.3);
}
.footer-nav__ul {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
@media only screen and (min-width: 769px) {
  .footer-nav__ul {
    gap: 0.5rem;
  }
}
.footer-nav__ul li {
  margin-bottom: 0;
}
.footer-nav h2 {
  line-height: 1.4;
}

@media only screen and (min-width: 1024px) {
  .footer-bottom-nav ul {
    display: flex;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    row-gap: 0.5rem;
    flex-wrap: wrap;
  }
}
.footer-bottom-nav li {
  margin-bottom: 0;
}

.opening-times ul {
  position: relative;
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.opening-times ul > * {
  list-style-type: none;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .opening-times li {
    margin-bottom: 2.5em;
  }
}
.mobile-nav .opening-times li {
  display: block;
  float: none;
  width: 100%;
  margin-left: 0;
  margin-bottom: 2.5em;
}
.opening-times li ul {
  position: relative;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 1.25em;
}
.opening-times li ul li {
  color: #949c90;
  font-weight: 700;
  margin-bottom: 0.5em;
  list-style-type: none;
}
.opening-times li p {
  color: #949c90;
  font-weight: 700;
}
.opening-times a {
  font-weight: 700;
  text-decoration: none;
  position: relative;
  display: block;
  padding-left: 2em;
  line-height: 1.2em;
  margin-top: 4.0625em;
}
.opening-times a:before {
  content: "";
  width: 1.5em;
  height: 2em;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1em;
  background: url(/dist/assets/_legacy/website/img/icon-pin.svg) no-repeat center;
  background-size: contain;
}
.opening-times a:after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #949c90;
  display: block;
  position: absolute;
  top: -2.375em;
  left: 0;
}
.opening-times a .icon {
  width: 2em;
  height: 2em;
  vertical-align: middle;
  fill: #006750;
}

.social {
  text-align: center;
}
.social > * {
  display: inline-block;
  margin: 0.5em;
}

.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.picker__input {
  cursor: default;
}

.picker__input.picker__input--active {
  border-color: #0089ec;
}

.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  transition: background 0.15s ease-out, transform 0s 0.15s;
  -webkit-backface-visibility: hidden;
} /*!
* Default mobile-first, responsive styling for pickadate.js
* Demo: http://amsul.github.io/pickadate.js
*/
.picker__frame, .picker__holder {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

.picker__frame {
  position: absolute;
  margin: 0 auto;
  min-width: 256px;
  max-width: 666px;
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  transition: all 0.15s ease-out;
}

.picker__wrap {
  display: table;
  width: 100%;
  height: 100%;
}

@media (min-height: 33.875em) {
  .picker__frame {
    overflow: visible;
    top: auto;
    bottom: -100%;
    max-height: 80%;
  }
  .picker__wrap {
    display: block;
  }
}
.picker__box {
  background: #fff;
  display: table-cell;
  vertical-align: middle;
}

@media (min-height: 26.5em) {
  .picker__box {
    font-size: 1.25em;
  }
}
@media (min-height: 33.875em) {
  .picker__box {
    display: block;
    font-size: 1.33em;
    border: 1px solid #777;
    border-top-color: #898989;
    border-bottom-width: 0;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
  }
}
@media (min-height: 40.125em) {
  .picker__frame {
    margin-bottom: 7.5%;
  }
  .picker__box {
    font-size: 1.5em;
    border-bottom-width: 1px;
    border-radius: 5px;
  }
}
.picker--opened .picker__holder {
  transform: translateY(0);
  zoom: 1;
  background: rgba(0, 0, 0, 0.32);
  transition: background 0.15s ease-out;
}

.picker--opened .picker__frame {
  transform: translateY(0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}

@media (min-height: 33.875em) {
  .picker--opened .picker__frame {
    top: auto;
    bottom: 0;
  }
}
.picker__footer, .picker__header, .picker__table {
  text-align: center;
}

.picker__day--highlighted, .picker__select--month:focus, .picker__select--year:focus {
  border-color: #0089ec;
}

.picker__box {
  padding: 0 1em;
}

.picker__header {
  position: relative;
  margin-top: 0.75em;
}

.picker__month, .picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: 0.25em;
  margin-right: 0.25em;
}

.picker__year {
  color: #999;
  font-size: 0.8em;
  font-style: italic;
}

.picker__select--month, .picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: 0.5em;
  margin-left: 0.25em;
  margin-right: 0.25em;
}

.picker__select--month {
  width: 35%;
}

.picker__select--year {
  width: 22.5%;
}

.picker__nav--next, .picker__nav--prev {
  position: absolute;
  padding: 0.5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em;
}

.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em;
}

.picker__nav--next {
  right: -1em;
  padding-left: 1.25em;
}

@media (min-width: 24.5em) {
  .picker__select--month, .picker__select--year {
    margin-top: -0.5em;
  }
  .picker__nav--next, .picker__nav--prev {
    top: -0.33em;
  }
  .picker__nav--prev {
    padding-right: 1.5em;
  }
  .picker__nav--next {
    padding-left: 1.5em;
  }
}
.picker__nav--next:before, .picker__nav--prev:before {
  content: " ";
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
  border-right: 0.75em solid #000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
}

.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000;
}

.picker__nav--next:hover, .picker__nav--prev:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
}

.picker__nav--disabled, .picker__nav--disabled:before, .picker__nav--disabled:before:hover, .picker__nav--disabled:hover {
  cursor: default;
  background: 0 0;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
}

.picker--focused .picker__day--highlighted, .picker__day--highlighted:hover, .picker__day--infocus:hover, .picker__day--outfocus:hover {
  color: #000;
  cursor: pointer;
  background: #b1dcfb;
}

.picker__table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: 0.75em;
  margin-bottom: 0.5em;
}

@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: 0.75em;
  }
}
.picker__table td {
  margin: 0;
  padding: 0;
}

.picker__weekday {
  width: 14.285714286%;
  font-size: 0.75em;
  padding-bottom: 0.25em;
  color: #999;
  font-weight: 500;
}

@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: 0.5em;
  }
}
.picker__day {
  padding: 0.3125em 0;
  font-weight: 200;
  border: 1px solid transparent;
}

.picker__day--today {
  position: relative;
}

.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #0059bc;
  border-left: 0.5em solid transparent;
}

.picker__day--disabled:before {
  border-top-color: #aaa;
}

.picker__day--outfocus {
  color: #ddd;
}

.picker--focused .picker__day--selected, .picker__day--selected, .picker__day--selected:hover {
  background: #0089ec;
  color: #fff;
}

.picker--focused .picker__day--disabled, .picker__day--disabled, .picker__day--disabled:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #ddd;
  cursor: default;
}

.picker__day--highlighted.picker__day--disabled, .picker__day--highlighted.picker__day--disabled:hover {
  background: #bbb;
}

.picker__button--clear, .picker__button--close, .picker__button--today {
  border: 1px solid #fff;
  background: #fff;
  font-size: 0.8em;
  padding: 0.66em 0;
  font-weight: 700;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
}

.picker__button--clear:hover, .picker__button--close:hover, .picker__button--today:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb;
}

.picker__button--clear:focus, .picker__button--close:focus, .picker__button--today:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: 0;
}

.picker__button--clear:before, .picker__button--close:before, .picker__button--today:before {
  position: relative;
  display: inline-block;
  height: 0;
}

.picker__button--clear:before, .picker__button--today:before {
  content: " ";
  margin-right: 0.45em;
}

.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: 0.66em solid transparent;
}

.picker__button--clear:before {
  top: -0.25em;
  width: 0.66em;
  border-top: 3px solid #e20;
}

.picker__button--close:before {
  content: "×";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: 0.35em;
  color: #777;
}

.picker__button--today[disabled], .picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #ddd;
  cursor: default;
}

.picker__button--today[disabled]:before {
  border-top-color: #aaa;
}

.player .vp-title .vp-title-header h1 a {
  color: #ffffff !important;
}

#onetrust-pc-sdk .ot-pc-footer {
  overflow-y: auto;
}
#onetrust-pc-sdk #ot-pc-title {
  font-size: 1.2rem !important;
}
#onetrust-pc-sdk #ot-pc-desc,
#onetrust-pc-sdk button,
#onetrust-pc-sdk .ot-cat-header,
#onetrust-pc-sdk .ot-btn-container button,
#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc {
  font-size: 1rem !important;
}
#onetrust-pc-sdk button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn):hover,
#onetrust-pc-sdk .ot-leg-btn-container .ot-active-leg-btn:hover {
  background: #0a604c !important;
  opacity: 1 !important;
}
#onetrust-pc-sdk .ot-acc-hdr .ot-chkbox {
  min-height: 20px;
  min-width: 20px;
}
#onetrust-pc-sdk .ot-acc-hdr .ot-chkbox input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#onetrust-pc-sdk .ot-acc-hdr .ot-chkbox label {
  padding: 0 !important;
}
#onetrust-pc-sdk .ot-acc-hdr .ot-chkbox label::before {
  position: absolute !important;
  top: 0 !important;
  margin-top: 0;
}
#onetrust-pc-sdk .ot-acc-hdr .ot-chkbox label::after {
  height: 20px;
  width: 20px;
  top: 0;
  left: 0;
  background-color: transparent;
  border: none;
  margin-top: 0;
  transform: rotate(0deg);
}

#onetrust-banner-sdk #onetrust-policy-text,
#onetrust-banner-sdk .ot-dpd-desc,
#onetrust-banner-sdk .ot-b-addl-desc,
#onetrust-banner-sdk #onetrust-accept-btn-handler,
#onetrust-banner-sdk #onetrust-reject-all-handler,
#onetrust-banner-sdk #onetrust-pc-btn-handler {
  font-size: 1rem !important;
}

#onetrust-banner-sdk #onetrust-button-group-parent {
  flex-shrink: 1 !important;
}

@media only screen and (min-width: 1024px) {
  #onetrust-banner-sdk #onetrust-group-container {
    flex: 1;
    min-width: 50%;
  }
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
.marc {
  border: 1px solid red;
}

.uppercase {
  text-transform: uppercase;
}

.show-overflow {
  overflow: visible;
}

.m-inline {
  float: none;
  display: inline-block;
}

@media only screen and (max-width: 640px) {
  .m-block-100 {
    width: 100% !important;
    display: block;
    margin-left: 0 !important;
  }
  .m-block-100.floated, .m-block-100.floated-right {
    float: none;
  }
  .m-block-100.page-margin {
    width: 87.5%;
    margin-left: 0;
  }
  .page-margin .m-block-100 {
    width: 100%;
    margin-left: 0;
  }
  .m-block-100.m-page-margin {
    padding-left: 6.25%;
    padding-right: 6.25%;
    width: 87.5%;
  }
}

@media only screen and (max-width: 768px) {
  .t-block-100 {
    width: 100% !important;
    display: block;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0 !important;
  }
  .t-block-100.floated {
    float: none;
  }
  .t-block-100.page-margin {
    width: 87.5%;
    margin-left: 0;
  }
  .page-margin .t-block-100 {
    width: 100%;
    margin-left: 0;
  }
  .t-block-100.m-page-margin {
    padding-left: 6.25%;
    padding-right: 6.25%;
    width: 87.5%;
  }
}

@media only screen and (max-width: 640px) {
  .m-block-list > * {
    float: none;
    display: block;
    margin-left: 0 !important;
    margin-right: 0;
    width: 100% !important;
  }
}

@media only screen and (max-width: 768px) {
  .t-block-list > * {
    float: none !important;
    display: block;
    margin-left: 0 !important;
    margin-right: 0;
    width: 100% !important;
  }
}

@media only screen and (max-width: 1023px) {
  .bd-block-list > * {
    float: none !important;
    display: block;
    margin-left: 0 !important;
    margin-right: 0;
    width: 100% !important;
  }
}

@media only screen and (max-width: 899px) {
  .nav-break-block-list > * {
    float: none !important;
    display: block;
    margin-left: 0 !important;
    margin-right: 0;
    width: 100% !important;
  }
}

/*
 * Image replacement
 */
.image-replace {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
}
.image-replace:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}

@media only screen and (max-width: 768px) {
  .t-hidden {
    display: none !important;
    visibility: hidden;
  }
}

@media only screen and (max-width: 640px) {
  .m-hidden {
    display: none !important;
    visibility: hidden;
  }
}

.lt-ie9 .mobile-only {
  display: none;
  visibility: hidden;
}
@media only screen and (min-width: 641px) {
  .mobile-only {
    display: none;
    visibility: hidden;
  }
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}

.m-block-list.list-bg > li.vertical-center-parent {
  display: table !important;
}

.two-col-content .content-block .video-description {
  margin-top: 30px;
}
.two-col-content .content-block .video-description p {
  font-weight: 400;
}

.one-col-content table.video-transcript {
  width: 100%;
}
.one-col-content table.video-transcript td {
  padding: 10px;
  vertical-align: top;
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important; /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.feature-collection .wrapper {
  padding: 1.875rem 0.9375rem 1rem;
}
@media only screen and (min-width: 641px) {
  .feature-collection .wrapper {
    padding: 2.84rem 1.625rem;
  }
}
.feature-collection .wrapper .wrapper {
  margin-bottom: 2rem;
  border-bottom: 1px solid #969696;
}
.feature-collection .shared-buttons {
  display: block;
  padding: 0.9375rem;
}
@media only screen and (min-width: 769px) {
  .feature-collection .shared-buttons {
    margin-left: 21%;
  }
}
.feature-collection .shared-buttons .btn, .feature-collection .shared-buttons .BBFormSubmitbutton {
  background: #fff !important;
  color: #3D4539 !important;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border: 1px solid #3D4539 !important;
  font-weight: 400 !important;
  padding: 0.75rem 1rem !important;
  order: 1;
  text-transform: none !important;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.feature-collection .sub-options {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 2rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 640px) {
  .feature-collection .sub-options {
    row-gap: 0.75rem;
  }
}
@media only screen and (min-width: 641px) {
  .feature-collection .sub-options {
    margin-left: 21%;
  }
}
.feature-collection .sub-options .btn, .feature-collection .sub-options .BBFormSubmitbutton {
  order: 1;
}
.feature-collection .sub-options .feature-option {
  display: block;
  border-top: none;
  padding: 0;
  margin-top: 0;
}
.feature-collection .sub-options .child-panel {
  display: none;
}
.feature-collection .sub-options .child-panel .option-content {
  border-top: 1px solid #969696;
  border-bottom: 1px solid #969696;
  padding-top: 5%;
}
.feature-collection .sub-options .child-panel.active {
  display: block;
  order: 2;
  width: 100%;
}
.feature-collection .sub-options .child-panel.active .sub-options {
  display: flex;
  gap: 1rem;
  margin: 0;
  flex-wrap: wrap;
}
.feature-collection .sub-options .child-panel.active h4 {
  width: 100%;
  display: block;
  margin: 0 0 0.5rem 0;
}
.feature-collection .sub-options .child-panel.active .option-description {
  width: 100%;
  display: block;
}
.feature-collection .sub-options .btn, .feature-collection .sub-options .BBFormSubmitbutton {
  background: #fff !important;
  color: #00382b;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  order: 1;
  outline-offset: 2px;
}
.feature-collection .sub-options .btn:hover, .feature-collection .sub-options .BBFormSubmitbutton:hover {
  border-color: #286e65 !important;
  background: #286e65 !important;
  color: #fff !important;
}
.feature-collection .sub-options .btn.active, .feature-collection .sub-options .active.BBFormSubmitbutton {
  background: #286e65 !important;
  color: #fff !important;
}
.feature-collection .sub-options .sub-options {
  display: none;
}
.feature-collection .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
}
@media only screen and (min-width: 641px) {
  .feature-collection .tabs {
    max-width: 100%;
    width: 59.375rem;
    gap: 0;
  }
}
.feature-collection label {
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all ease 0.2s;
  text-align: center;
  height: 4.25rem;
  flex-shrink: 0;
  width: auto;
  max-width: 33%;
  flex: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  outline: 2px solid transparent;
  outline-offset: 2px;
  background-color: #00382b;
  color: #FFFFF0;
  font-family: "Sibbaldia", serif;
}
@media only screen and (min-width: 641px) {
  .feature-collection label {
    height: 120px;
  }
  .feature-collection label:not(:last-of-type) {
    margin-right: 1.875rem;
  }
}
.feature-collection label:not(input[type=radio]:checked + label):hover, .feature-collection label:not(input[type=radio]:checked + label):focus {
  background-color: #AFE650;
  color: #00382b;
}
.feature-collection label:focus-visible {
  outline: 2px solid #3D4539;
}
.feature-collection label .option-text {
  display: block;
  font-weight: 500;
  font-size: 1.25rem;
}
@media only screen and (max-width: 640px) {
  .feature-collection label .option-text {
    font-size: 0.9375rem;
  }
}
.feature-collection label img {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1.5rem;
}
.feature-collection .tab {
  padding-bottom: 1rem;
  background-color: #00382b;
  order: 99;
  flex-grow: 1;
  width: 100%;
  display: none;
  flex: 0 0 100%;
}
@media only screen and (min-width: 641px) {
  .feature-collection .tab {
    margin-top: 35px;
  }
}
.feature-collection .tab .introduction {
  background-color: #AFE650;
  color: #00382b;
  padding: 1.625rem;
}
.feature-collection .tab .introduction h3 {
  margin-bottom: 0;
}
@media only screen and (max-width: 640px) {
  .feature-collection .tab .introduction h3 {
    font-size: 1rem;
  }
}
.feature-collection .tab .introduction p {
  margin-bottom: 0;
}
@media only screen and (max-width: 640px) {
  .feature-collection .tab .introduction {
    padding: 0.9375rem;
  }
}
.feature-collection .tab .options-parent-panel {
  background-color: #00382b;
  color: #FFFFF0;
}
.feature-collection .tab h4 {
  font-weight: 500;
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
@media only screen and (max-width: 640px) {
  .feature-collection .tab h4 {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 641px) {
  .feature-collection .tab h4 {
    width: 20%;
  }
}
.feature-collection .tab .option-logo {
  max-width: 10rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.feature-collection .tab h4 + .option-logo {
  margin-top: 0;
}
@media only screen and (min-width: 641px) {
  .feature-collection .tab .sub-options .option-description {
    margin-left: 0;
  }
  .feature-collection .tab .option-description {
    margin-left: 21%;
    margin-top: 0;
    width: 79%;
    display: inline-block;
  }
}
@media only screen and (max-width: 640px) {
  .feature-collection .tab .option-description {
    font-size: 0.9375rem;
  }
}
.feature-collection .tab h4 + .option-description {
  margin-left: 0;
}
.feature-collection .tab .btn.primary, .feature-collection .tab .primary.BBFormSubmitbutton {
  margin-bottom: 0.75rem;
}
.feature-collection .tab .btn.primary:hover, .feature-collection .tab .primary.BBFormSubmitbutton:hover {
  background: #286e65 !important;
}
.feature-collection .tab .btn.primary + .secondary, .feature-collection .tab .primary.BBFormSubmitbutton + .secondary {
  margin: 1rem 0 0 0;
}
@media only screen and (min-width: 641px) {
  .feature-collection .tab .btn.primary + .secondary, .feature-collection .tab .primary.BBFormSubmitbutton + .secondary {
    margin-left: 1rem;
    margin: 0 0 0 1rem;
  }
}
.feature-collection .tab .btn.primary:disabled, .feature-collection .tab .primary.BBFormSubmitbutton:disabled {
  opacity: 0.5;
}
@media only screen and (min-width: 641px) {
  .feature-collection .tab .btn.primary, .feature-collection .tab .primary.BBFormSubmitbutton {
    margin-right: 0.5rem;
  }
}
.feature-collection .tab .btn.secondary, .feature-collection .tab .secondary.BBFormSubmitbutton {
  border: 1px solid transparent !important;
  font-weight: 400 !important;
  text-transform: none !important;
  box-shadow: none;
}
.feature-collection .tab .btn.secondary:hover, .feature-collection .tab .secondary.BBFormSubmitbutton:hover, .feature-collection .tab .btn.secondary:focus, .feature-collection .tab .secondary.BBFormSubmitbutton:focus, .feature-collection .tab .btn.secondary:focus-within, .feature-collection .tab .secondary.BBFormSubmitbutton:focus-within, .feature-collection .tab .btn.secondary:focus-visible, .feature-collection .tab .secondary.BBFormSubmitbutton:focus-visible {
  color: #3d4539 !important;
  background: #FFF !important;
  border-color: #3d4539 !important;
}
.feature-collection input[type=radio] {
  display: none;
}
.feature-collection input[type=radio]:checked + label {
  background: #AFE650;
  color: #00382b;
}
.feature-collection input[type=radio]:checked + label img {
  filter: brightness(0) invert(1);
}
.feature-collection input[type=radio]:checked + label:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 26px solid #AFE650;
  position: absolute;
  top: calc(100% + 9px);
}
.feature-collection input[type=radio]:checked + label + .tab {
  display: block;
}

.bulletin {
  border-radius: 0.625rem;
  padding: 1rem;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .bulletin {
    padding: 1.875rem;
    padding-right: 12rem;
  }
}
@media only screen and (min-width: 1024px) {
  .bulletin {
    padding-right: 17rem;
  }
}
.bulletin__close {
  position: absolute;
  right: 0.625rem;
  top: 0.625rem;
  transition: 0.2s ease;
  padding: 0.375rem;
  border-radius: 50%;
}
.bulletin__close:hover {
  transform: scale(1.3);
}
.bulletin__close:focus-visible {
  outline: 2px solid #00382b;
}
.bulletin__close svg {
  display: block;
}
.bulletin__graphic {
  display: none;
}
@media only screen and (min-width: 769px) {
  .bulletin__graphic {
    position: absolute;
    right: 0;
    bottom: -1px;
    display: block;
    max-height: calc(100% - 2rem);
    width: auto;
  }
}
.bulletin h2 {
  padding-right: 1.5rem;
}
.bulletin p:last-child {
  margin-bottom: 0;
}
.bulletin a:not(.btn):not(.BBFormSubmitbutton):hover {
  text-decoration-thickness: 3px;
}
.bulletin a:not(.btn):not(.BBFormSubmitbutton):focus-visible {
  background-color: #00382b;
  color: #FFFFF0;
}

.product-panel-container .product-list {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  list-style: none;
  overflow: visible;
}
@media only screen and (min-width: 641px) {
  .product-panel-container .product-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 769px) {
  .product-panel-container .product-list {
    gap: 2rem;
  }
}
.product-panel-container .product-list .product-card {
  margin: 0;
  flex-grow: 1;
  flex-shrink: 0;
  list-style: none;
}
@media only screen and (min-width: 641px) {
  .product-panel-container .product-list .product-card {
    width: calc(50% - 0.5rem);
    max-width: calc(50% - 10px);
  }
}
@media only screen and (min-width: 769px) {
  .product-panel-container .product-list .product-card {
    width: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}
@media screen and (min-width: 990px) {
  .product-panel-container .product-list .product-card {
    max-width: calc(25% - 1.5rem);
    width: calc(25% - 1.5rem);
  }
  .product-panel-container .product-list .product-card img {
    transition: opacity 0.3s linear, transform 0.4s linear;
  }
  .product-panel-container .product-list .product-card a:hover .product-image-container img,
  .product-panel-container .product-list .product-card a:focus .product-image-container img {
    transform: scale(1.03);
  }
  .product-panel-container .product-list .product-card a:hover .product-image-container img:first-child:not(:only-child),
  .product-panel-container .product-list .product-card a:focus .product-image-container img:first-child:not(:only-child) {
    opacity: 0;
  }
  .product-panel-container .product-list .product-card a:hover .product-image-container img:nth-child(2),
  .product-panel-container .product-list .product-card a:focus .product-image-container img:nth-child(2) {
    opacity: 1;
  }
}
.product-panel-container .product-list .product-card > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-panel-container .product-list .product-card a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-panel-container .product-list .product-card a:hover .product-title {
  text-decoration: underline;
}
.product-panel-container .product-list .product-info {
  text-align: center;
  padding: 1rem;
  margin-top: auto;
}
@media only screen and (min-width: 769px) {
  .product-panel-container .product-list .product-info {
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
  }
}
.product-panel-container .product-list .product-info .product-title {
  text-decoration: none;
  font-weight: 400;
  line-height: 1.2rem;
  font-size: 0.9375rem;
  margin-bottom: 0.55rem;
}
.product-panel-container .product-list .product-info .product-price {
  display: inline-block;
  font-size: 1.1rem;
}
.product-panel-container .btn, .product-panel-container .BBFormSubmitbutton {
  margin-top: 0.75rem;
}
.product-panel-container .product-image-container {
  position: relative;
  overflow: hidden;
}
.product-panel-container .product-image-container > img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-panel-container .product-image-container img:nth-child(2) {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
}