@font-face {
  font-family: BigSexySans;
  src: url(../../fonts/BigSexySansRegular.ttf);
}
@font-face {
  font-family: SpaceGrotesk;
  src: url(../../fonts/SharpGrotesk-Medium20.otf);
}
:root {
  --size-1: clamp(3em, 10vw, 9rem);
  --size-2: clamp(2em, 5vw, 6rem);
  --size-3: 3rem;
  --size-4: 1.5rem;
  --size-5: 1.25rem;
  --size-6: 1rem;
  --size-7: 0.8rem;
  --size-8: 0.7rem;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.title-filled {
  font-family: var(--font-sexy);
  font-size: 6rem;
  background-color: var(--c-black);
  color: var(--c-white);
  text-transform: uppercase;
  line-height: 80%;
  font-weight: 400;
  padding: 2rem;
}

.home-banner {
  position: relative;
}
.home-banner__button {
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 100;
  background: white;
  padding: 10px 20px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  border-radius: 5px;
  font-size: 80%;
  box-shadow: 0px 0px 21px 2px rgba(0, 0, 0, 0.25);
}

.page-intro__image {
  height: 400px;
}
.page-intro__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.page-intro__image img.color-image {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
@media screen and (max-width: 1279px) {
  .page-intro__image {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .page-intro {
    display: flex;
  }
  .page-intro > * {
    flex: 50%;
  }
  .page-intro__text {
    padding: 3rem 0;
    align-self: center;
  }
  .page-intro__image {
    position: relative;
    overflow: hidden;
  }
  .page-intro__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-intro__image::after {
    display: block;
    position: absolute;
    content: "";
    top: 0;
    aspect-ratio: 1/2;
    height: calc(100% + 1px);
    background-color: white;
    z-index: 2;
    -webkit-clip-path: polygon(0 0, 0% 100%, calc(100% - 15px) 100%);
            clip-path: polygon(0 0, 0% 100%, calc(100% - 15px) 100%);
    -webkit-transform: translateX(-0.5px);
            transform: translateX(-0.5px);
  }
  @supports not (aspect-ratio: auto) {
    .page-intro__image::after {
      width: calc(var(--height-helper) / 2);
    }
  }
  .page-intro__image::before {
    display: block;
    position: absolute;
    content: "";
    top: 0;
    aspect-ratio: 1/2;
    height: calc(100% + 1px);
    background-color: var(--c-purple);
    z-index: 1;
    -webkit-clip-path: polygon(15px 0, 100% 100%, 0 100%, 0 0);
            clip-path: polygon(15px 0, 100% 100%, 0 100%, 0 0);
    -webkit-transform: translateX(-0.5px);
            transform: translateX(-0.5px);
  }
  @supports not (aspect-ratio: auto) {
    .page-intro__image::before {
      width: calc(var(--height-helper) / 2);
    }
  }
}

.icon-group {
  display: flex;
  flex-direction: column;
}

.icon-text {
  display: flex;
  align-items: center;
}
.icon-text--inline {
  display: inline-flex;
}
@media screen and (max-width: 639px) {
  .icon-text--break {
    flex-direction: column;
  }
  .icon-text--break strong:not(:first-of-type):before {
    content: "";
    display: block;
  }
}
.icon-text i {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 4px;
}

.form-group {
  margin-top: var(--size-6);
}
.form-group p {
  line-height: 33px;
}
@media screen and (min-width: 1024px) {
  .form-group p {
    padding-right: 10px;
  }
}
.form-group .form-row {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.form-group .form-row label {
  border: none;
  clip: rect(0, 0, 0, 0);
  height: 0.01em;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 0.01em;
}
.form-group .form-row input {
  width: 100%;
  padding: 0.2rem 0.5rem;
}
@media screen and (min-width: 768px), print {
  .form-group .form-row {
    justify-content: right;
  }
  .form-group .form-row input {
    flex-basis: 100%;
    flex-grow: 0;
  }
}
.form-group--inline {
  align-items: center;
}
.form-group--inline > * + * {
  margin-top: 7px;
}
.form-group--inline > * {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .form-group--inline > * {
    text-align: right;
  }
}
@media screen and (min-width: 1280px) {
  .form-group--inline {
    display: flex;
    justify-content: flex-end;
  }
  .form-group--inline > * + * {
    margin-top: 0;
    margin-left: 7px;
  }
}
.form-group input {
  border: 0;
}

#mc_embed_signup div.mce_inline_error {
  margin: 0 !important;
}

.newsletter-support {
  text-align: left;
}
@media screen and (min-width: 768px), print {
  .newsletter-support {
    text-align: right;
  }
}

.single-whats_on .wysiwyg > * + * {
  margin-top: 4rem;
}
.single-whats_on h1 {
  margin-top: 3rem;
}
.single-whats_on h1 + * {
  margin-top: 0.5rem !important;
}
.single-whats_on .wp-block-group__inner-container * + * {
  margin-top: 1rem;
}

.hamburger {
  --bar: 8px;
  --gap: 4px;
  width: calc(var(--bar) * 3 + var(--gap) * 2 + 5px);
  height: calc(var(--bar) * 3 + var(--gap) * 2);
  position: relative;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  flex: 0 0 auto;
}
.hamburger span {
  display: block;
  position: absolute;
  height: var(--bar);
  width: 100%;
  background: var(--c-white);
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
  top: calc(var(--bar) + var(--gap));
}
.hamburger span:nth-child(4) {
  top: calc(var(--bar) + var(--gap) * 2 + var(--bar));
}

.main-menu-button {
  position: absolute;
  top: 65px;
  right: 30px;
  z-index: 11;
}
.main-menu-button__text {
  border: none;
  clip: rect(0, 0, 0, 0);
  height: 0.01em;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 0.01em;
}
.main-menu-button .hamburger span {
  background: var(--wp--preset--color--black);
}
@media screen and (min-width: 1280px) {
  .main-menu-button {
    display: none;
  }
}

body:has(input[data-toggle]:checked) {
  overflow: hidden;
}
body:has(input[data-toggle]:checked) .main-menu-button {
  top: 30px;
}

input[data-toggle]:checked + label .hamburger span:nth-child(1), input[data-toggle]:checked + label .hamburger span:nth-child(4) {
  top: 10.5px;
  width: 0%;
  left: 50%;
}
input[data-toggle]:checked + label .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
input[data-toggle]:checked + label .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.page-header {
  position: fixed;
  width: 100%;
  z-index: 50;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  font-size: 55%;
}
@media screen and (min-width: 1280px) {
  .page-header {
    font-size: 75%;
  }
}
.page-header__intro {
  background-color: var(--wp--preset--color--blue-sky-blue);
}
.page-header__intro .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 15px;
}
@media screen and (min-width: 1280px) {
  .page-header__intro .row {
    justify-content: flex-end;
    gap: 30px;
  }
}
.page-header__intro ul.info {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  flex: 100% 1 0;
}
@media screen and (min-width: 1280px) {
  .page-header__intro ul.info {
    flex: 0 0 auto;
    gap: 10px;
  }
}
.page-header__intro nav {
  text-transform: uppercase;
  justify-self: center;
  display: none;
}
@media screen and (min-width: 1280px) {
  .page-header__intro nav {
    display: block;
  }
}
.page-header__intro nav ul {
  gap: 10px;
  display: flex;
}
.page-header__intro .sm-icons {
  display: none;
}
@media screen and (min-width: 1280px) {
  .page-header__intro .sm-icons {
    display: flex;
  }
}
.page-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--size-4) 15px !important;
}
.page-header a {
  color: var(--c-black);
}
.page-header .sat-nav .icon-text {
  justify-content: center;
}
@media screen and (min-width: 1280px) {
  .page-header .sat-nav .icon-text {
    justify-content: flex-end;
  }
}
.page-header .opening-times .icon-text {
  justify-content: center;
}
.page-header input[type=checkbox] {
  display: none;
}
@media screen and (max-width: 1279px) {
  .page-header .logo-wrapper {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 1279px) {
  .page-header #main-menu-toggle:checked ~ .header-support {
    display: flex;
    width: calc(100% - 30px);
    padding: 30px;
    opacity: 1;
  }
  .page-header #main-menu-toggle:checked ~ .header-support > * {
    opacity: 1;
  }
}
.page-header #explore:checked ~ .explore-desktop {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .page-header.sticky {
    position: fixed;
  }
}
@media screen and (min-width: 1280px) {
  .page-header .header-support {
    grid-column: 2/3;
    grid-row: 1/3;
  }
  .page-header nav ul {
    display: flex;
    justify-content: flex-end;
  }
  .page-header ul.header-menu {
    display: none;
  }
  .page-header .logo-wrapper {
    padding: 0;
  }
}
.page-header .header-logo {
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .page-header .header-logo {
    justify-content: flex-start;
  }
}
.page-header .header-logo svg {
  display: none;
  transition: all 0.2s;
}
.page-header .header-logo .logo-desktop {
  width: 200px;
  height: auto;
  display: block;
}
@media screen and (min-width: 1024px) {
  .page-header .header-logo .logo-desktop {
    width: 280px;
  }
}
.page-header .header-support {
  display: flex;
  background-color: var(--wp--preset--color--not-so-white);
  position: absolute;
  top: 0;
  right: 0;
  height: var(--app-height);
  width: 0;
  z-index: 1;
  flex-direction: column;
  gap: 30px;
  overflow-Y: scroll;
  z-index: 10;
  opacity: 1;
  transition: all 0.5s;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox, Safari 18.2+, Chromium 121+ */
}
.page-header .header-support::-webkit-scrollbar {
  display: none; /* Older Safari and Chromium */
}
.page-header .header-support > * {
  opacity: 0;
  transition: opacity 0.5s;
}
@media screen and (max-height: 800px) {
  .page-header .header-support {
    font-size: 80%;
  }
}
.page-header .header-support .sm-icons svg {
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 1280px) {
  .page-header .header-support {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    right: auto;
    opacity: 1;
    border: 0;
    min-width: auto;
    max-width: 100%;
    width: auto;
    min-height: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    background-color: transparent;
  }
  .page-header .header-support .sm-icons {
    display: none;
  }
  .page-header .header-support > * {
    opacity: 1;
    transition: opacity 0.5s;
  }
}
.page-header .header-support nav {
  order: 0;
  text-transform: uppercase;
}
@media screen and (min-width: 1280px) {
  .page-header .header-support nav {
    padding-top: 0;
    font-size: 100%;
  }
}
.page-header .header-support nav ul.header-menu {
  font-size: 180%;
}
.page-header .header-support nav ul.main-menu {
  font-size: clamp(2rem, 5rem - 6vw, 5rem);
  font-weight: 900;
}
.page-header .header-support nav ul.main-menu li {
  color: var(--wp--preset--color--why-so-serious-blue);
}
@media screen and (max-width: 1279px) {
  .page-header .header-support nav ul.main-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-header .header-support nav ul.main-menu > * + * {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .page-header .header-support nav ul.main-menu > * + * {
    margin-left: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .page-header .header-support nav ul.main-menu > * + * {
    margin-left: 40px;
  }
}
@media screen and (max-height: 800px) {
  .page-header .header-support nav ul.main-menu > * + * {
    margin-top: 0.5rem;
  }
}
.page-header .header-support nav ul.main-menu li {
  font-weight: 700;
  flex-shrink: 0;
}
@media screen and (min-width: 1280px) {
  .page-header .header-support nav ul.main-menu li {
    font-size: 80%;
  }
}
@media screen and (min-width: 1536px) {
  .page-header .header-support nav ul.main-menu li {
    font-size: 100%;
  }
}
.page-header .header-support nav ul.main-menu li a {
  color: var(--wp--preset--color--black);
}
.page-header .header-support nav ul.main-menu li a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.page-header .header-support nav ul.main-menu li a:after {
  content: "";
  display: block;
  height: 3px;
  background-color: var(--c-black);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.page-header .header-support nav ul.main-menu li.current-menu-item a:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.page-header .header-support__explore {
  order: 1;
  flex: 1 0 auto;
  margin-top: var(--size-5);
}
@media screen and (min-width: 1024px) {
  .page-header .header-support__explore {
    display: none;
  }
}
.page-header .header-support__explore .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
}
.page-header .header-support__explore .grid > * {
  background-color: #0a4b78;
  color: white;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (min-width: 768px), print {
  .page-header .header-support__explore .grid > * {
    height: 160px;
  }
}
.page-header .header-support__explore .grid > *:nth-child(odd) {
  background-color: orange;
}
.page-header .header-support__explore .grid a {
  background-size: cover;
}
.page-header .header-support__explore .text-angled {
  width: 100%;
}
.page-header .header-support__content {
  order: 2;
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .page-header .header-support__content {
    flex-direction: row;
    justify-content: flex-end;
    order: 0;
  }
}
@media screen and (max-width: 1279px) {
  .page-header .header-support .helper-text > * + * {
    margin-top: var(--size-4);
  }
}
@media screen and (min-width: 1280px) {
  .page-header .header-support .helper-text {
    text-align: right;
  }
  .page-header .header-support .helper-text span:not(:first-of-type) {
    margin-left: 10px;
  }
  .page-header .header-support .helper-text br {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  .page-header .header-support .sm-icons {
    margin: var(--size-5) 0;
  }
}
@media screen and (min-width: 1024px) {
  .page-header .header-support .sm-icons {
    align-self: center;
    margin-left: 30px;
  }
}
.page-header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 1279px) {
  body.menu-active {
    overflow: hidden;
    position: fixed;
  }
  body.menu-active .page-header {
    top: 0;
  }
}
.sm-icons {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.sm-icons > * + * {
  margin-left: 7px;
}
.sm-icons li span {
  border: none;
  clip: rect(0, 0, 0, 0);
  height: 0.01em;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 0.01em;
}

.text-angled {
  position: relative;
  display: flex;
  width: 100%;
}
.text-angled--stretch {
  width: 100%;
}
.text-angled--stretch .text-angled__inner {
  flex: 1;
}
.text-angled--multi-line .text-angled__inner {
  white-space: unset;
}
.text-angled__inner {
  padding: 0.5rem 0.8rem;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 140%;
  text-transform: uppercase;
  font-family: var(--font-heading);
  white-space: nowrap;
}
@media screen and (max-width: 639px) {
  .text-angled__inner {
    min-height: 40px;
  }
}
.text-angled--break {
  white-space: normal;
}
.text-angled--blue .text-angled__inner {
  background-color: var(--c-blue);
  color: white;
}
.text-angled--blue:after {
  background-color: var(--c-blue);
}

.button {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  background-color: var(--c-black);
  color: var(--c-white);
  cursor: pointer;
  line-height: normal;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: var(--font-heading);
  align-self: flex-start;
  border: 0;
}

.basic-grid {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
}
.basic-grid__item {
  border: 1px solid var(--c-blue);
  padding: var(--size-3);
}

.article-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 639px) {
  .article-grid {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  }
}

.article-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  background-color: var(--wp--preset--color--not-so-white);
}
.article-tile:has(a):hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.article-tile:has(a) .button {
  background-color: var(--wp--preset--color--everyones-invited-pink);
}
.article-tile__title {
  font-size: var(--size-4);
  line-height: 130%;
  font-weight: 700;
}
.article-tile__text {
  background-color: var(--c-white);
  padding: 20px var(--size-6);
  color: var(--c-black);
}
.article-tile__intro {
  overflow: hidden;
  display: grid;
}
.article-tile__intro .text-angled {
  z-index: 10;
  max-height: 50px;
  align-self: end;
}
.article-tile__intro > * {
  grid-area: 1/1;
}
.article-tile img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  overflow: hidden;
}
.article-tile > * {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.carousel {
  background-color: grey;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 767px) {
  .carousel {
    height: 400px;
  }
}
.carousel__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.carousel__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
}

.glide__slides {
  margin: 0;
}
.glide__bullet {
  width: 15px !important;
  height: 15px !important;
}
@media screen and (min-width: 768px), print {
  .glide__bullet {
    width: 20px !important;
    height: 20px !important;
  }
}
.glide .glide__arrow {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: var(--wp--preset--color--not-so-white);
}
@media screen and (min-width: 768px), print {
  .glide .glide__arrow {
    width: 70px;
    height: 70px;
  }
}
.glide .glide__arrow span {
  display: none;
}
.glide .glide__arrow svg {
  width: 15px;
  height: 15px;
}
@media screen and (min-width: 768px), print {
  .glide .glide__arrow svg {
    width: 30px;
    height: 30px;
  }
}
.glide .glide__arrow--left svg {
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
}
.glide .glide__arrow--right svg {
  -webkit-transform: rotate(180deg) translateX(-1px);
          transform: rotate(180deg) translateX(-1px);
}
.glide .glide__slide picture, .glide .glide__slide img {
  width: 100%;
  height: 100%;
}

.hero {
  height: 400px;
  margin-bottom: var(--size-1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
}
.hero img.is-greyscale {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
@media screen and (min-width: 1280px) {
  .hero {
    height: 750px;
  }
}
.hero .hero__text {
  position: relative;
  z-index: 10;
  font-family: var(--wp--preset--font-family--big-sexy-sans);
  font-size: var(--size-1);
  line-height: 80%;
  color: var(--wp--preset--color--white);
  position: absolute;
  top: 0;
  height: 0;
  width: 100%;
  height: 100%;
  display: flex;
  padding-left: 20px;
  justify-content: flex-start;
  align-items: flex-end;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 212, 255, 0) 100%);
}
.hero picture {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.hero--no-support picture img {
  -o-object-fit: cover;
     object-fit: cover;
}
.hero--support-count-1 .hero__layers div {
  max-height: 400px;
}
@media screen and (min-width: 1280px) {
  .hero--support-count-1 .hero__layers div {
    max-height: 750px;
  }
}

.hero .text-angled span {
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 90%;
  padding: 1rem 0 1rem 1rem;
  flex: 0;
}

.directory--grey img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.directory--grey .directory-grid__item:hover img {
  -webkit-filter: none;
          filter: none;
}

.directory-list {
  display: grid;
  grid-template-columns: 100px 1fr;
}
.directory-list:not(:last-of-type):after {
  display: block;
  grid-column: 1/3;
  content: "";
  height: 1px;
  border-bottom: 2px solid var(--wp--preset--color--not-so-white);
  margin: var(--size-3) 0;
}
.directory-list__letter {
  font-size: var(--size-2);
  color: var(--wp--preset--color--blue-sky-blue);
}

.directory-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.directory-grid > * {
  flex: calc(50% - 10px) 0 0;
}
@media screen and (min-width: 639px) {
  .directory-grid > * {
    flex: calc(33.3333333333% - 10px) 0 0;
  }
}
@media screen and (min-width: 768px), print {
  .directory-grid > * {
    flex-basis: calc(25% - 10px);
  }
}
@media screen and (min-width: 1024px) {
  .directory-grid > * {
    flex-basis: calc(20% - 10px);
  }
}
@media screen and (min-width: 1280px) {
  .directory-grid > * {
    flex-basis: calc(16.6666666667% - 10px);
  }
}
@media screen and (min-width: 2300px) {
  .directory-grid > * {
    flex-basis: calc(14.2857142857% - 10px);
  }
}
.directory-grid__item {
  aspect-ratio: 1/1;
  border: 1px solid #e3e3e3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--c-black);
  font-family: var(--font-heading);
  text-transform: uppercase;
  padding: var(--size-6);
}
.directory-grid__item:hover {
  border-color: var(--c-blue);
  border-width: 1px;
}
.directory-grid__reveal {
  color: var(--c-black);
  padding: var(--size-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  line-height: 100%;
}
.directory-grid span {
  display: block;
}
.directory-grid img {
  width: auto;
}

.directory-content > h3 + * {
  margin-top: var(--size-6);
}
.directory-content h1 {
  font-size: var(--size-3);
  color: var(--wp--preset--color--blue-sky-blue);
  line-height: 80%;
}
.directory-content__header {
  background-color: var(--wp--preset--color--why-so-serious-blue);
  display: flex;
  flex-direction: column-reverse;
  color: var(--wp--preset--color--not-so-white);
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px), print {
  .directory-content__header {
    flex-direction: row;
  }
  .directory-content__header > div {
    flex: 50% 0 0;
  }
}
.directory-content__text {
  padding: var(--size-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.directory-content__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--size-4);
}
@media screen and (min-width: 768px), print {
  .directory-content__logo {
    justify-content: flex-end;
  }
}
.directory-content__description {
  border-bottom: 1px solid var(--c-light-grey);
  padding-bottom: var(--size-4);
}
.directory-content__support {
  display: grid;
  grid-gap: 30px;
}
@media screen and (min-width: 768px), print {
  .directory-content__support {
    grid-gap: 90px;
    grid-template-columns: 60% 1fr;
  }
}
.directory-content__support > div {
  position: relative;
}
.directory-content__support > div:nth-child(1):after {
  display: block;
  content: "";
  width: 1px;
  background-color: var(--c-light-grey);
  position: absolute;
  top: 0;
  right: -45px;
  height: 100%;
}
.directory-content__support > div:nth-child(2) h3:not(:first-of-type) {
  margin-top: var(--size-1);
}

.directory-letters-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: var(--size-3);
  justify-content: flex-start;
}
.directory-letters-nav li {
  font-weight: 600;
}
.directory-letters-nav li a {
  padding: 0 10px;
  color: var(--c-black);
}

.reveal-list > *:not(:last-child) {
  border-bottom: 4px dotted var(--c-light-grey);
  padding-bottom: var(--size-4);
  margin-bottom: var(--size-4);
}

.content-reveal__content {
  max-height: 0;
  overflow: hidden;
  transition: all 1s;
  opacity: 0;
  margin-top: 1rem;
}
.content-reveal__content > * + * {
  margin-top: 1rem;
}
.content-reveal label {
  cursor: pointer;
}
.content-reveal label:after {
  content: "";
  display: inline-block;
  border: 2px solid red;
  margin-left: 7px;
  border-width: 10px 5px 0 5px;
  border-color: var(--wp--preset--color--blue-sky-blue) transparent transparent transparent;
  transition: 0.5s;
}
.content-reveal input[type=checkbox] {
  display: none;
}
.content-reveal input[type=checkbox]:checked ~ .content-reveal__content {
  max-height: 5000px;
  opacity: 1;
}
.content-reveal input[type=checkbox]:checked ~ label:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.scroller-controls {
  display: none;
}
.scroller-controls.visible {
  display: flex;
  justify-content: flex-end;
}
.scroller-controls > * + * {
  margin-left: 5px;
}
.scroller-controls button {
  border-radius: 0;
  border: 0;
  width: 40px;
  height: 40px;
}
.scroller-controls button:before {
  display: block;
  content: "";
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.scroller-controls button:nth-child(1):before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.scroller-controls button span {
  border: none;
  clip: rect(0, 0, 0, 0);
  height: 0.01em;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 0.01em;
}

.scroll-content {
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox, Safari 18.2+, Chromium 121+ */
}
.scroll-content::-webkit-scrollbar {
  display: none; /* Older Safari and Chromium */
}
.scroll-content--double .scroll-content__inner > * {
  flex: 0 0 100%;
}
@media screen and (min-width: 1024px) {
  .scroll-content--double .scroll-content__inner > * {
    flex: 0 0 50%;
  }
}
.scroll-content--thirds .scroll-content__inner > * {
  flex: 0 0 100%;
}
@media screen and (min-width: 1024px) {
  .scroll-content--thirds .scroll-content__inner > * {
    flex: 0 0 33.33%;
  }
}
.scroll-content__inner {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  scroll-snap-align: center;
}
.scroll-content__inner > * {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.map-wrapper {
  margin-top: 3rem;
}

.map-navigation {
  display: flex;
}

.map-container {
  position: relative;
}

.map-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  font-size: var(--size-5);
  margin-bottom: 7px;
}
@media screen and (min-width: 1024px) {
  .map-list {
    font-size: var(--size-4);
  }
}
.map-list > * + * {
  margin-left: 5px;
}
.map-list li {
  cursor: pointer;
  background-color: var(--c-blue);
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--c-white);
  padding: 0 15px;
}

.map-container {
  width: 100%;
  height: 500px;
  border: 1px solid var(--c-light-grey);
}

.map-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: flex-end;
  z-index: 1;
}
.map-controls > * + * {
  margin-left: 5px;
}
.map-controls button {
  border: 0;
  padding: 7px 15px;
  text-transform: uppercase;
  font-size: 75%;
  background-color: var(--c-white);
  border: 1px solid var(--c-black);
  cursor: pointer;
}
.map-controls button[data-control=in]:before {
  display: block;
  content: "+";
}
.map-controls button[data-control=out]:before {
  display: block;
  content: "-";
}
.map-controls button.sr-only {
  font-weight: 600;
  font-size: 1.1rem;
  aspect-ratio: 1/1;
}
.map-controls button.sr-only span {
  border: none;
  clip: rect(0, 0, 0, 0);
  height: 0.01em;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 0.01em;
}

.text-size-1 {
  font-size: clamp(3em, 10vw, 9rem);
}

.text-size-2 {
  font-size: clamp(2em, 5vw, 6rem);
}

.text-size-3 {
  font-size: 3rem;
}

.text-size-4 {
  font-size: 1.5rem;
}

.text-size-5 {
  font-size: 1.25rem;
}

.text-size-6 {
  font-size: 1rem;
}

.text-size-7 {
  font-size: 0.8rem;
}

.text-size-8 {
  font-size: 0.7rem;
}

.text-style-heading {
  line-height: 110%;
}

.text-style-heading {
  font-family: "SpaceGrotesk", sans-serif;
}

.text-style-body {
  font-family: "SpaceGrotesk", sans-serif;
}

.text-style-bigSexy {
  font-family: "BigSexySans", sans-serif;
}

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

.text-align-justified {
  text-align: justify;
}

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

.is-capitalized {
  text-transform: capitalize;
}

.is-lowercase {
  text-transform: lowercase;
}

.is-uppercase {
  text-transform: uppercase;
}

.is-italic {
  font-style: italic;
}

.is-style-normal {
  font-style: normal;
}

.is-underlined {
  text-decoration: underline;
}

.text-weight-400 {
  font-weight: 400;
}

.text-weight-600 {
  font-weight: 600;
}

.is-marginless {
  margin: 0 !important;
}

.is-paddingless {
  padding: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

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

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-5 {
  margin: 1.5rem !important;
}

.mt-5 {
  margin-top: 1.5rem !important;
}

.mr-5 {
  margin-right: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 1.5rem !important;
}

.ml-5 {
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-5 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-6 {
  margin: 3rem !important;
}

.mt-6 {
  margin-top: 3rem !important;
}

.mr-6 {
  margin-right: 3rem !important;
}

.mb-6 {
  margin-bottom: 3rem !important;
}

.ml-6 {
  margin-left: 3rem !important;
}

.mx-6 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.m-wide {
  margin: 100px !important;
}

.mt-wide {
  margin-top: 100px !important;
}

.mr-wide {
  margin-right: 100px !important;
}

.mb-wide {
  margin-bottom: 100px !important;
}

.ml-wide {
  margin-left: 100px !important;
}

.mx-wide {
  margin-left: 100px !important;
  margin-right: 100px !important;
}

.my-wide {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-5 {
  padding: 1.5rem !important;
}

.pt-5 {
  padding-top: 1.5rem !important;
}

.pr-5 {
  padding-right: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 1.5rem !important;
}

.pl-5 {
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-6 {
  padding: 3rem !important;
}

.pt-6 {
  padding-top: 3rem !important;
}

.pr-6 {
  padding-right: 3rem !important;
}

.pb-6 {
  padding-bottom: 3rem !important;
}

.pl-6 {
  padding-left: 3rem !important;
}

.px-6 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.p-auto {
  padding: auto !important;
}

.pt-auto {
  padding-top: auto !important;
}

.pr-auto {
  padding-right: auto !important;
}

.pb-auto {
  padding-bottom: auto !important;
}

.pl-auto {
  padding-left: auto !important;
}

.px-auto {
  padding-left: auto !important;
  padding-right: auto !important;
}

.py-auto {
  padding-top: auto !important;
  padding-bottom: auto !important;
}

.p-wide {
  padding: 100px !important;
}

.pt-wide {
  padding-top: 100px !important;
}

.pr-wide {
  padding-right: 100px !important;
}

.pb-wide {
  padding-bottom: 100px !important;
}

.pl-wide {
  padding-left: 100px !important;
}

.px-wide {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

.py-wide {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.whatson-table {
  display: grid;
  grid-gap: 60px;
  grid-template-columns: 1fr;
  padding: 3rem;
}
@media screen and (min-width: 768px), print {
  .whatson-table {
    grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  }
}

.article-header {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.article-header h1 {
  font-size: var(--size-2);
  font-family: var(--wp--preset--font-family--sharp-grotesk);
}
.article-header img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.hero-post-loop {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1rem;
}

.hero-post {
  background-color: var(--wp--preset--color--not-so-white);
}
.hero-post .wysiwyg a:not([class]) {
  color: var(--c-white);
}
.hero-post__header {
  color: var(--c-white);
  display: flex;
  flex-direction: column-reverse;
}
.hero-post__header svg path {
  fill: var(--c-white);
}
.hero-post__header > div {
  flex: 50% 0 0;
}
.hero-post__header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}
.hero-post__text {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-post__text a {
  color: var(--c-white);
}
.hero-post__text .button--white {
  color: var(--c-black);
}
.hero-post__image {
  position: relative;
  min-height: 250px;
}

.inline-list dt::before {
  content: "\a";
  white-space: pre-wrap;
  display: block;
  height: 0.5em;
}
.inline-list dt {
  font-weight: 600;
}
.inline-list dt, .inline-list dd {
  display: inline;
  margin: 0;
}

.pagination {
  margin-top: 3rem;
}
.pagination .page-numbers {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--c-black);
  text-align: center;
  color: var(--c-white);
}
.pagination .page-numbers.current {
  background-color: var(--c-blue);
}

.annoucement {
  padding: 1rem;
}
.annoucement > * + * {
  margin-top: 1rem;
}

.wysiwyg > * + * {
  margin-top: 1rem;
}
.wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5 {
  margin-top: 2rem;
}
.wysiwyg h2 + *, .wysiwyg h3 + *, .wysiwyg h4 + * {
  margin-top: 0.75rem;
}
.wysiwyg p + ul, .wysiwyg h2 + ul, .wysiwyg h3 + ul, .wysiwyg h4 + ul {
  margin-top: 0.75rem;
}
.wysiwyg a:not([class]) {
  color: var(--c-black);
  font-weight: 600;
}
.wysiwyg .nf-form-cont {
  margin-top: 3rem;
  background-color: var(--c-light-grey);
  padding: 1rem;
}
.wysiwyg .nf-form-content {
  max-width: 100%;
}
.wysiwyg .wp-block-columns {
  gap: 90px;
}
.wysiwyg .wp-block-columns:only-child {
  margin-bottom: 0;
}
.wysiwyg .wp-block-column:not(:first-child) {
  margin-left: 0;
}
.wysiwyg table td, .wysiwyg table th {
  border: 1px solid gray;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .wysiwyg .wp-block-group.wrap-mobile > .wp-block-group {
    flex-direction: column-reverse;
    gap: 10px;
  }
}

.wp-block-column > * + * {
  margin-top: 1rem;
}

.wysiwyg > *:not(.alignfull) {
  width: 100%;
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
}

.wysiwyg > *:not(.alignfull).alignwide {
  max-width: var(--wp--style--global--wide-size);
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--wp--preset--font-family--sharp-grotesk);
  font-weight: 400;
  font-size: 1.2rem;
  position: relative;
  width: 100%;
  margin-top: var(--header-height);
}

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

h1, h2, h3, h4, h5 {
  line-height: 100%;
}

hr {
  border-top: 1px solid var(--c-light-grey);
  border-bottom: 0;
}

.site {
  min-width: 320px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.flex-fill {
  flex: 1 0 auto;
}

.row {
  padding: 0 15px;
}
@media screen and (min-width: 639px) {
  .row {
    padding: 0 60px;
  }
}
@media screen and (min-width: 1280px) {
  .row {
    max-width: var(--wp--style--global--wide-size);
    margin: 0 auto;
  }
}
.row--full {
  padding: 0;
}
.row--full-wide {
  max-width: 100%;
  padding: 0;
}
@media screen and (min-width: 1536px) {
  .row--slim {
    width: 60%;
  }
}

body:has(.row--full-wide) footer {
  margin-top: 0;
}

.home main {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .home main .page-intro {
    order: 2;
  }
  .home main .explore-mh {
    margin: var(--size-1) 0;
  }
}

footer {
  margin-top: var(--size-1);
  background-color: var(--wp--preset--color--blue-sky-blue);
  color: var(--c-white);
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 75%;
}
footer .sm-icons svg path {
  fill: black;
}
footer .wifi-icon .icon-text {
  justify-content: left;
}
@media screen and (min-width: 1280px) {
  footer .wifi-icon .icon-text {
    justify-content: flex-end;
  }
}
footer .form-group--inline > * {
  text-align: left;
}
footer i svg path {
  fill: black;
}
footer a {
  color: var(--c-white);
}
footer .footer-navigation {
  margin-top: 1rem;
}
@media screen and (min-width: 1280px) {
  footer .footer-navigation {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  footer .footer-navigation .footer-navigation-form {
    text-align: right;
  }
}
footer .footer-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 1280px) {
  footer .footer-navigation ul > * + * {
    margin-left: 1rem;
  }
}
footer .footer-navigation ul li {
  text-transform: uppercase;
}
@media screen and (min-width: 1280px) {
  footer .footer-navigation ul li {
    display: inline-block;
  }
}
footer .footer-navigation ul:nth-child(1) {
  font-size: 100%;
}
@media screen and (min-width: 1024px) {
  footer .footer-navigation ul:nth-child(1) {
    font-size: 120%;
  }
}
footer .footer-signoff {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 80%;
  padding-top: var(--size-5);
  margin-top: var(--size-5);
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  footer .footer-signoff .footer-columns > * + * {
    margin-top: 25px;
  }
}
footer .footer-signoff ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-signoff ul > * + * {
  margin-left: 15px;
}
footer .footer-signoff ul li {
  display: inline-block;
}
footer .footer-info {
  text-align: center;
  margin-bottom: var(--size-6);
}
footer .footer-info > * + * {
  margin-top: 12px;
}
footer .footer-info .opening-times {
  display: block;
}
@media screen and (max-width: 767px) {
  footer .footer-info .opening-times .icon-text {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-info .sat-nav .icon-text {
    justify-content: center;
  }
}
@media screen and (min-width: 768px), print {
  footer .footer-info {
    text-align: left;
    margin-bottom: 0;
  }
  footer .footer-info br {
    display: none;
  }
  footer .footer-info strong:not(:first-of-type) {
    margin-left: 12px;
  }
}
@media screen and (min-width: 768px), print {
  footer .sm-icons {
    justify-content: flex-start;
    margin-top: var(--size-6);
  }
}
footer .logo-wrapper svg path {
  fill: black;
}
footer .logo-wrapper .logo-mobile {
  width: 100px;
}
@media screen and (min-width: 768px), print {
  footer .logo-wrapper .logo-mobile {
    display: none;
  }
}
footer .logo-wrapper .logo-desktop {
  display: none;
  width: 160px;
}
@media screen and (min-width: 768px), print {
  footer .logo-wrapper .logo-desktop {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  footer .footer-columns {
    display: flex;
    justify-content: space-between;
  }
}

body.home main > * + * {
  margin-top: 3rem;
}

.button {
  background-color: var(--wp--preset--color--why-so-serious-blue);
  color: var(--wp--preset--color--white) !important;
}

/*# sourceMappingURL=site.css.map */