.alterState[data-state=hidden] {
  display: none;
}

.searchable[data-search=hidden] {
  display: none;
}

.scrollable {
  max-height: 33vh;
  overflow-y: auto;
}
.scrollable.small {
  max-height: 20vh;
  overflow-y: auto;
}
.scrollable.large {
  max-height: 70vh;
  overflow-y: auto;
}

.bg {
  background: linear-gradient(125deg, var(--black-700), var(--black-800));
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid var(--grey-800);
  margin-top: 0.5rem;
}
.bg:nth-of-type(2n) {
  background: linear-gradient(125deg, var(--black-600), var(--black-700));
}

.mt-S {
  margin-top: 0.5rem;
}

.mt-M {
  margin-top: 1rem;
}

.mt-L {
  margin-top: 2rem;
}

.mt-A {
  margin-top: auto;
}

.mt-A {
  margin-top: auto;
}

.ml-S {
  margin-left: 0.5rem;
}

.ml-M {
  margin-left: 1rem;
}

.ml-L {
  margin-left: 2rem;
}

.ml-A {
  margin-left: auto;
}

.mr-S {
  margin-right: 0.5rem;
}

.mr-M {
  margin-right: 1rem;
}

.mr-L {
  margin-right: 2rem;
}

.mr-A {
  margin-right: auto;
}

.mb-S {
  margin-bottom: 0.5rem;
}

.mb-M {
  margin-bottom: 1rem;
}

.mb-L {
  margin-bottom: 2rem;
}

.mb-A {
  margin-bottom: auto;
}

.p-M {
  padding: 1rem;
}

.p-L {
  padding: 2rem;
}

.pb-L {
  padding-bottom: 2rem;
}

.pb-XL {
  padding-bottom: 5rem;
}

.ta-C {
  text-align: center;
}

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

.warning[data-state=hidden] {
  display: none;
}
.warning {
  color: var(--orange-200);
  text-align: center;
  margin: 0.5rem auto;
  font-weight: bold;
  max-width: 60ch;
  text-wrap: balance;
}

.placeholder[data-state=hidden] {
  display: none;
}
.placeholder {
  color: var(--gold-200);
  font-style: italic;
  font-weight: bold;
  margin: 1.5rem;
}

.info {
  margin: 0.5rem;
  color: var(--grey-200);
  font-style: italic;
  font-size: 0.8rem;
  text-align: center;
}
.info.ta-R {
  text-align: right;
}

.error[data-state=hidden] {
  display: none;
}
.error {
  font-weight: bold;
  color: var(--red-400);
}

.important {
  color: var(--green-100);
  font-weight: bold;
  line-height: 1.3rem;
}

[data-textcolour=red] {
  color: var(--red-400);
  font-weight: bold;
  text-wrap: balance;
}

[data-textcolour=green] {
  color: var(--green-100);
  font-weight: bold;
  text-wrap: balance;
}

[data-textcolour=orange] {
  color: var(--orange-400);
  font-weight: bold;
  text-wrap: balance;
}

.phoneOnly {
  display: none;
}
@media screen and (max-width: 767px) {
  .phoneOnly {
    display: block;
  }
}

.stickyTop {
  position: sticky;
  top: calc(var(--headerHeight) + 0.5rem);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-400);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-200);
}

body {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: none;
}
body[data-overflow=hidden] {
  overflow: hidden;
}
body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("/img/images/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  width: 100%;
  padding: 0.5rem 1.5rem;
  background: black;
  z-index: 99;
  box-shadow: 0px 0px 3px var(--grey-500);
}
header img {
  max-width: 8vw;
  min-width: 100px;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 1rem 2rem;
  list-style: none;
}
header nav ul a, header nav ul .button {
  font-weight: bold;
  text-decoration: none;
  color: var(--grey-100);
  text-align: right;
  font-size: 0.9rem;
}
header nav ul a.button, header nav ul .button.button {
  padding: 1rem 3rem;
}
header nav ul a:hover, header nav ul a:focus, header nav ul a:focus-visible, header nav ul .button:hover, header nav ul .button:focus, header nav ul .button:focus-visible {
  color: var(--gold-300);
}
@media screen and (max-width: 767px) {
  header nav ul a, header nav ul .button {
    font-size: 0.8rem;
  }
  header nav ul a.button, header nav ul .button.button {
    padding: 0.5rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  header nav ul {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
  }
}
header::before {
  content: "";
  position: absolute;
  background: url("/img/images/bg.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  header {
    padding: 0.5rem;
  }
}

button, .button {
  padding: 1rem 2rem;
  position: relative;
  background: transparent;
  border: none;
  color: white;
  aspect-ratio: 283/100;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: 0.15s;
  isolation: isolate;
}
button::after, .button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/img/images/button.png");
  background-position: center;
  background-size: cover;
  z-index: -1;
  filter: brightness(0.7);
}
button.mainButton::before, .button.mainButton::before {
  content: "";
  inset: 0;
  position: absolute;
  background: #00958a;
  filter: blur(45px);
  opacity: 0.5;
  z-index: -1;
  border-radius: 15px;
}
button[data-colour=blue]::after, .button[data-colour=blue]::after {
  filter: brightness(0.7) hue-rotate(180deg);
}
button:hover, button:focus, button:focus-visible, .button:hover, .button:focus, .button:focus-visible {
  background: transparent;
  transform: translateY(3px) scale(0.97);
}

main {
  max-width: 90%;
  padding: 0;
}
@media screen and (max-width: 767px) {
  main {
    max-width: 100%;
    padding: 0 1rem;
  }
}

.hero {
  display: grid;
  padding: 0 3rem;
}
.hero .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: flex-start;
  padding-top: 8rem;
  max-width: 75%;
}
.hero .content .subTitle {
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: bold;
  font-size: 0.9rem;
}
.hero .content h1 {
  font-size: 5rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.05em;
  letter-spacing: 1.25px;
  text-wrap: balance;
  text-shadow: 1px 1px 1px black;
  padding-top: 0.5rem;
}
.hero .content p {
  max-width: 70ch;
  text-wrap: balance;
  font-size: 1.1rem;
  line-height: 1.5em;
  text-shadow: 1px 1px 1px black;
}
.hero .content .ctaButtons {
  display: flex;
  padding: 2rem;
  gap: 2rem;
}
.hero .content .ctaButtons .button {
  font-size: 1.25rem;
  max-width: 100px;
}
.hero .graphic {
  perspective: 1300px;
  perspective-origin: 45% 40%;
  position: absolute;
  z-index: -1;
  right: 10%;
  bottom: 0;
  overflow: hidden;
  height: 100vh;
}
.hero .graphic img {
  transform-origin: center bottom;
  transform: rotateX(11deg) rotateY(-10deg) rotateZ(4deg) translateY(0) translateX(-30px);
  backface-visibility: hidden;
  box-shadow: 3px 3px 10px rgba(170, 170, 170, 0.1333333333);
  filter: brightness(0.8);
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .hero .content {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    padding: 0;
  }
  .hero .content {
    max-width: 100%;
    gap: 3rem;
    justify-content: center;
    padding: 3rem 0.5rem 1rem;
  }
  .hero .content h1 {
    font-size: 2rem;
    margin: 0;
  }
  .hero .content .ctaButtons {
    padding: 0;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .hero .content .ctaButtons .button {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  .hero .graphic img {
    transform: rotateX(11deg) rotateY(-10deg) rotateZ(4deg) translateY(15vh) translateX(10px);
    opacity: 0.4;
  }
}

h1 {
  font-size: 1;
}

.buttonSelect {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  position: sticky;
  top: 150px;
  padding: 0.5rem;
}
.buttonSelect button {
  min-width: 120px;
  font-size: 0.6rem;
  padding: 0.5rem 1rem;
}
.buttonSelect button[selected] {
  filter: hue-rotate(45deg);
}

.infoSection {
  margin-top: 3rem;
  width: 1000px;
  max-width: 90vw;
  margin-inline: auto;
}

#backToTop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.85rem;
  padding: 0.25rem 1rem;
  filter: hue-rotate(90deg);
}
@media screen and (max-width: 767px) {
  #backToTop {
    font-size: 0.65rem;
  }
}/*# sourceMappingURL=website.css.map */