@font-face {
  font-family: "Lohengrin";
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: local("Lohengrin"), url("/assets/fonts/Lohengrin.ttf") format("truetype");
}
@font-face {
  font-family: "Hentimps Circlet";
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: local("Hentimps_Circlet"), url("/assets/fonts/Hentimps_Circlet.ttf") format("truetype");
}
@font-face {
  font-family: "Bridgnorth";
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: local("Bridgnorth-Regular"), url("/assets/fonts/Bridgnorth-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Bridgnorth";
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: local("Bridgnorth-Bold"), url("/assets/fonts/Bridgnorth-Bold.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --section-max-width: 45rem;
  --padding: 1.5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-cream: #f0fffc;
  --color-cream-extralight: #f8fffe;
  --color-cream-extralight-rgb: 248, 255, 254;
  --color-cream-light: #f3fffd;
  --color-cream-light-rgb: 243, 255, 253;
  --color-cream-medium: #d8e6e3;
  --color-cream-medium-rgb: 216, 230, 227;
  --color-cream-rare: #c0ccca;
  --color-cream-rare-rgb: 192, 204, 202;
  --color-cream-dark: #606665;
  --color-cream-dark-rgb: 96, 102, 101;
  --color-cream-midnight: #181919;
  --color-cream-midnight-rgb: 24, 25, 25;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-white);
  --color-text-grey: var(--color-grey);
  --color-text-cream-rare: var(--color-cream-rare);
  --color-text-cream-dark: var(--color-cream-dark);
  --color-text-cream-midnight: var(--color-cream-midnight);
  --color-background: var(--color-cream-midnight);
  --color-code-light-grey: #cacbd1;
  --color-code-comment: #a9aaad;
  --color-code-white: #c5c9c6;
  --color-code-red: #d16464;
  --color-code-orange: #de935f;
  --color-code-yellow: #f0c674;
  --color-code-green: #a7bd68;
  --color-code-aqua: #8abeb7;
  --color-code-blue: #7e9abf;
  --color-code-purple: #b294bb;
  --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

.margin-s {
  margin-bottom: 0.75rem;
}

.margin-m {
  margin-bottom: 1.5rem;
}

.margin-l {
  margin-bottom: 3rem;
}

.margin-xl {
  margin-bottom: 4.5rem;
}

.margin-xxl {
  margin-bottom: 6rem;
}

.bg-light {
  background-color: var(--color-light, #efefef);
}

.color-grey {
  color: var(--color-text-grey, #777);
}

.color-cream-dark {
  color: var(--color-text-cream-dark, #606665);
}

/*


  Default settings for html elements


 */
html {
  height: 100vh;
  overflow: hidden;
}

body {
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
  font-family: var(--font-family-mono, Consolas), sans-serif;
  color: var(--color-text, black);
  background-color: var(--color-background, #c7c0a4);
  overflow: hidden;
}

article {
  width: 100%;
  max-width: var(--section-max-width, 100%);
  margin: 0 auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-cream-dark, #4e4932) var(--color-cream-medium, #9d967b);
}
article::-webkit-scrollbar {
  width: 5px;
}
article::-webkit-scrollbar-track {
  background: var(--color-cream-dark, #4e4932);
}
article::-webkit-scrollbar-thumb {
  background: var(--color-cream-medium, #9d967b);
}
article::-webkit-scrollbar-thumb:hover {
  background: var(--color-cream-light, #faf1ca);
}

ul {
  padding: 0;
  margin-bottom: 0;
}

li {
  list-style: none;
}

img {
  width: 100%;
}

h1,
.h1,
.intro {
  font-size: 2rem;
  margin-bottom: 3rem;
  line-height: 1.25em;
}

.title {
  font-family: "Hentimps Circlet", sans-serif;
  color: var(--color-text-cream-midnight, #181919);
}

h2,
.h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

h3,
.h3 {
  font-weight: 600;
}

figure {
  margin-bottom: 0;
}

a {
  color: currentColor;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}

strong,
b {
  font-weight: 600;
}

small {
  font-size: inherit;
  color: var(--color-text-grey, #777);
}

.page-wrapper {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100vh;
}
.page-wrapper main,
.page-wrapper #MainAttraction,
.page-wrapper .page__row-group {
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
}

.header,
.footer {
  position: absolute;
  width: 100%;
  padding: 0 var(--padding, 1.5rem);
  z-index: 9999;
}
.header .inner,
.footer .inner {
  width: 100%;
  max-width: var(--section-max-width, 100%);
  margin: 0 auto;
  padding: 0.5rem 0;
}
.header .menu,
.footer .menu {
  margin: 0;
  padding: 0;
  font-size: 0;
  vertical-align: middle;
}
.header .menu .menu-item,
.footer .menu .menu-item {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.65rem 0;
  font-size: 13px;
  cursor: pointer;
}
.header .menu .menu-item:last-child,
.footer .menu .menu-item:last-child {
  margin-right: 0;
}
.header .menu a,
.footer .menu a {
  display: block;
}
.header .menu a[aria-current],
.footer .menu a[aria-current] {
  text-decoration: underline;
}

main {
  position: relative;
  min-height: 0;
  max-height: 100vh;
  padding: 0 var(--padding, 1.5rem);
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: y mandatory;
}

main::-webkit-scrollbar {
  display: none;
}

.section {
  padding: 0;
  scroll-snap-align: start;
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

.intro {
  max-width: 40rem;
}
.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black, black);
  color: var(--color-white, white);
  display: -moz-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 4px solid var(--color-white, white);
  outline: 2px solid var(--color-black, black);
}

.box {
  background: var(--color-light, #efefef);
  padding: 1.5rem;
  border: 4px solid var(--color-white, white);
  outline: 2px solid var(--color-light, #efefef);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black, black);
}

.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0;
}

.img[data-contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.img-caption,
.video-caption {
  padding-top: 0.75rem;
  line-height: 1.5em;
}

.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black, black);
}
.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (min-width: 35em) {
  .header .menu .menu-item,
  .footer .menu .menu-item {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    font-size: 15px;
  }
}
@media screen and (min-height: 45em) and (min-width: 55em) {
  :root {
    --section-max-width: 40rem;
  }
  .header .menu .menu-item,
  .footer .menu .menu-item {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 15px;
  }
  .page-wrapper .page__footer-group {
    height: 67px;
  }
}
@media screen and (min-height: 50em) and (min-width: 70em) {
  :root {
    --section-max-width: 45rem;
  }
  .page-wrapper .page__footer-group {
    height: 72px;
  }
}
@media screen and (min-height: 60em) and (min-width: 100em) {
  :root {
    --section-max-width: 55rem;
  }
}
.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}
.header .logo-item-wrapper {
  padding: 0;
}
.header .social {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  padding: 0 0.5rem;
}
.header .social a {
  padding: 1rem 0.5rem;
}

.logo {
  font-family: "Lohengrin", sans-serif;
  font-size: 27px;
  text-transform: uppercase;
}

@media screen and (min-height: 45em) and (min-width: 55em) {
  .header .menu .menu-item {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.footer {
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 1.5em;
}
.footer h2 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer ul,
.footer p {
  font-family: var(--font-family-mono, Consolas), sans-serif;
  color: var(--color-text-cream-rare, #746f55);
}
.footer ul {
  margin: 0;
  padding: 0;
}
.footer p {
  max-width: 15rem;
}
.footer a:hover {
  color: var(--color-text, black);
}
.footer .important-pages ul {
  text-align: right;
  font-size: 0;
}
.footer .important-pages ul li {
  display: -moz-inline-block;
  display: inline-block;
  padding: 0 5px;
  font-size: 16px;
}
/*# sourceMappingURL=index.css.map */
