@font-face {
  font-family: 'NixieOne';
  src: url('../fonts/NixieOne/NixieOne-Regular.ttf');
  font-weight: normal;
}
html, body, div {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 14pt;
  font-family: NixieOne;
  font-weight: bold;
}
body {
  background-color: rgb(18, 18, 23);
  background-image: url('../images/background_image.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
h1 {
  padding-top: 30px;
  padding-bottom: 4px;
  font-size: 32pt;
  text-shadow: 3px 2px 6px rgba(35, 35, 45, 0.5);
  color: rgb(70, 70, 90);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(
    to right,
    rgba(70, 70, 90, 0) 0%,
    rgba(70, 70, 90, 0.013) 4%,
    rgba(70, 70, 90, 0.049) 7.7%,
    rgba(70, 70, 90, 0.104) 11.2%,
    rgba(70, 70, 90, 0.175) 14.5%,
    rgba(70, 70, 90, 0.259) 17.6%,
    rgba(70, 70, 90, 0.352) 20.6%,
    rgba(70, 70, 90, 0.45) 23.5%,
    rgba(70, 70, 90, 0.55) 26.4%,
    rgba(70, 70, 90, 0.648) 29.6%,
    rgba(70, 70, 90, 0.741) 32.3%,
    rgba(70, 70, 90, 0.825) 35.5%,
    rgba(70, 70, 90, 0.896) 38.7%,
    rgba(70, 70, 90, 0.951) 42.2%,
    rgba(70, 70, 90, 0.987) 45.9%,
    rgba(70, 70, 90, 1) 50%,
    rgba(70, 70, 90, 0.987) 54.1%,
    rgba(70, 70, 90, 0.951) 57.8%,
    rgba(70, 70, 90, 0.896) 61.3%,
    rgba(70, 70, 90, 0.825) 64.5%,
    rgba(70, 70, 90, 0.741) 67.7%,
    rgba(70, 70, 90, 0.648) 70.4%,
    rgba(70, 70, 90, 0.55) 73.6%,
    rgba(70, 70, 90, 0.45) 76.5%,
    rgba(70, 70, 90, 0.352) 79.4%,
    rgba(70, 70, 90, 0.259) 82.4%,
    rgba(70, 70, 90, 0.175) 85.5%,
    rgba(70, 70, 90, 0.104) 88.8%,
    rgba(70, 70, 90, 0.049) 92.3%,
    rgba(70, 70, 90, 0.013) 96%,
    rgba(70, 70, 90, 0) 100%
  ) 1;
}
h1::before, h1::after {
  content: url('../images/icon_heading_decoration.png');
  position: absolute;
  opacity: 0.7;
}
h1::before {
  margin-left: -60px;
  transform: scale(-1, 1);
}
.no-decoration::before, .no-decoration::after {
  content: none;
}
h2 {
  font-size: 20pt;
}
h3 {
  font-size: 16pt;
  text-wrap: balance;
}
small {
  font-size: 11pt;
}
img {
  vertical-align: bottom;
}
#outer-container {
  width: 1344px;
  max-width: 1344px;
  min-height: 100vh;
  margin-inline: auto;
  display: flex;
  box-shadow: 0 16px 32px black;
}
#inner-container {
  width: 100%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}
#splash {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2;
  background-color: rgb(18, 18, 23);
  margin: 0 auto;
  overflow: hidden;
}
#splash .logo {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0;
  animation: fadeInLogo 2s 1s ease-out forwards;
  z-index: 1;
}
@keyframes fadeInLogo {
  from {
    transform: translate(0%, 60%);
  }
  to {
    opacity: 1;
  }
}
#splash .bgslider {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0;
  animation: fadeInImage 3s ease-out forwards;
}
@keyframes fadeInImage {
  0% {
  }
  100% {
    opacity: 1;
    transform: translate(0%, -12%);
  }
}
#main-content {
  padding-left: 5%;
  padding-right: 5%;
  text-align: center;
  color: rgb(35, 35, 45);
}
#main-content a {
  color: inherit;
}
#main-content p {
  margin: 0 12px;
  padding-top: 6px;
  padding-bottom: 16px;
  text-align: justify;
}
#main-content li {
  padding-bottom: 12px;
  text-align: justify;
}
.list-head {
  text-shadow: 3px 2px 6px rgba(35, 35, 45, 0.3);
  margin-bottom: 6px;
}
#slideshow-container {
  display: grid;
  width: fit-content;
  height: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
  overflow: hidden;
}
#slideshow-container img {
  grid-area: 1 / 1 / 1 / 1;
  width: 100%;
  max-width: 400px;
  height: auto;
}
#menu-toggle img, input, span {
  visibility: hidden;
  position: absolute;
}
#anchor-container {
  background-color: rgba(0, 0, 0, 0.7);
  width: 200px;
  flex: 0 0 200px;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  top: 0;
  text-align: center;
  align-self: flex-start;
  color: rgb(191, 191, 237);
  z-index: 10;
}
#anchor-container:-webkit-scrollbar {
  display: none;
}
#anchor-container ul {
  padding: 0;
  padding-top: 20px;
  justify-content: center;
  list-style-type: none;
}
#anchor-list li:last-child a {
  border-bottom: none;
}
#anchor-list {
  margin: 0;
}
#anchor-list a {
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18pt;
  color: inherit;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, rgba(191, 191, 237, 0) 10%, rgba(191, 191, 237, 0.5) 50%, rgba(191, 191, 237, 0) 90%) 1;
  display: block;
}
#anchor-list a:hover {
  color: white;
}
#anchor-list .menu-active {
  color: white;
  background-image: linear-gradient(
    to bottom,
    rgba(70, 70, 90, 0) 0%,
    rgba(70, 70, 90, 0.013) 4%,
    rgba(70, 70, 90, 0.049) 7.7%,
    rgba(70, 70, 90, 0.104) 11.2%,
    rgba(70, 70, 90, 0.175) 14.5%,
    rgba(70, 70, 90, 0.259) 17.6%,
    rgba(70, 70, 90, 0.352) 20.6%,
    rgba(70, 70, 90, 0.45) 23.5%,
    rgba(70, 70, 90, 0.55) 26.4%,
    rgba(70, 70, 90, 0.648) 29.6%,
    rgba(70, 70, 90, 0.741) 32.3%,
    rgba(70, 70, 90, 0.825) 35.5%,
    rgba(70, 70, 90, 0.896) 38.7%,
    rgba(70, 70, 90, 0.951) 42.2%,
    rgba(70, 70, 90, 0.987) 45.9%,
    rgba(70, 70, 90, 1) 50%,
    rgba(70, 70, 90, 0.987) 54.1%,
    rgba(70, 70, 90, 0.951) 57.8%,
    rgba(70, 70, 90, 0.896) 61.3%,
    rgba(70, 70, 90, 0.825) 64.5%,
    rgba(70, 70, 90, 0.741) 67.7%,
    rgba(70, 70, 90, 0.648) 70.4%,
    rgba(70, 70, 90, 0.55) 73.6%,
    rgba(70, 70, 90, 0.45) 76.5%,
    rgba(70, 70, 90, 0.352) 79.4%,
    rgba(70, 70, 90, 0.259) 82.4%,
    rgba(70, 70, 90, 0.175) 85.5%,
    rgba(70, 70, 90, 0.104) 88.8%,
    rgba(70, 70, 90, 0.049) 92.3%,
    rgba(70, 70, 90, 0.013) 96%,
    rgba(70, 70, 90, 0) 100%
  );
}
#anchor-container .side-bar-content {
  padding-top: 8px;
  padding-bottom: 16px;
}
.content-two-to-one, .content-one-to-one {
  display: grid;
  width: 100%;
  column-gap: 20px;
}
.content-two-to-one {
  grid-template-columns: 2fr 1fr;
}
.content-one-to-one {
  grid-template-columns: auto 1fr;
}
.price-table {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  border-spacing: 8px;
}
#gallery-content {
  display: grid;
  width: 100%;
  grid-gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
#gallery-content img {
  width: 100%;
  aspect-ratio: calc(4 / 3);
  object-fit: cover;
}
#gallery-content div::after {
  content: url('../images/icon_expand_image.png');
  position: absolute;
  margin-top: 5px;
  margin-left: -41px;
  opacity: 0.8;
}
#bottom-bar-mobile {
  display: none;
}
.content-img {
  border-radius: 14px;
  box-shadow: 3px 2px 12px 0px rgba(35, 35, 45, 0.7);
}
#footer {
  width: 90%;
  margin: auto auto 0;
  padding-top: 8px;
  border-top: 1px solid rgba(70, 70, 90, 0.7);
  text-align: center;
}
#footer a {
  color: inherit;
}
.loading * {
  animation: none !important;
  transform: none !important;
}
.no-scroll {
  overflow: hidden;
}
#loader {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(18, 18, 23);
  overscroll-behavior: contain;
  touch-action: none;
  z-index: 100;
}
.spinner-holder {
  margin: auto;
}
.spinner {
  width: 90px;
  height: 90px;
  visibility: hidden;
  border: 10px solid rgb(191, 191, 237);
  border-bottom-color: rgb(70, 70, 90);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.show {
  visibility: visible !important;
  opacity: 1 !important;
}
@media only print {
  #anchor-container, #gallery-full-view {
    display: none;
  }
  #outer-container {
    box-shadow: none;
  }
}
