#mainMenu .site-logo {
  display: none; }

.hero-media {
  height: 100dvh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  position: relative; }
  .hero-media > .aspectholder {
    height: 100%;
    width: 100%;
    overflow: hidden; }
    .hero-media > .aspectholder img, .hero-media > .aspectholder video {
      height: 100%;
      width: 100%;
      object-fit: cover; }
  .hero-media .mobile-logo-overlay {
    display: none; }
  .hero-media .hero-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px; }
    .hero-media .hero-logo-overlay .aspectholder {
      opacity: 0; }
    .hero-media .hero-logo-overlay svg path {
      fill: var(--cream); }
    .hero-media .hero-logo-overlay svg, .hero-media .hero-logo-overlay .aspectholder {
      width: 100%;
      height: 100%; }
  @media (max-width: 960px) {
    .hero-media {
      position: relative; }
      .hero-media .hero-logo-overlay {
        width: 100%;
        padding-left: var(--pm);
        padding-right: var(--pm); }
      .hero-media .mobile-logo-overlay {
        position: absolute;
        display: block;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%); }
        .hero-media .mobile-logo-overlay svg {
          width: 60px;
          height: auto; } }
@media (max-width: 960px) {
  #mainMenu {
    padding-top: 22px; } }

.body-section {
  min-height: 100dvh;
  background-color: var(--bg);
  z-index: 15;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding-top: 51px;
  padding-bottom: 30px; }
  .body-section .inner.grid-primary {
    column-gap: 52px;
    padding-top: 100px; }
  .body-section .img-1 {
    grid-column: span 6; }
    .body-section .img-1 .aspectholder, .body-section .img-1 img, .body-section .img-1 video {
      height: 100%; }
  .body-section .img-2 {
    grid-column: span 6; }
    .body-section .img-2 .aspectholder, .body-section .img-2 img, .body-section .img-2 video {
      height: 100%; }
  .body-section .content-right {
    grid-column: 13 / span 6;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 25px;
    color: var(--fg); }
    .body-section .content-right .form-wrap .form-title {
      padding-bottom: 18px; }
    .body-section .content-right .btm {
      display: flex;
      justify-content: space-between; }
      .body-section .content-right .btm .social-media {
        display: flex;
        align-items: flex-end;
        gap: 18px; }
        .body-section .content-right .btm .social-media img, .body-section .content-right .btm .social-media svg {
          height: 30px;
          width: auto;
          transition: var(--transition1); }
          .body-section .content-right .btm .social-media img:hover, .body-section .content-right .btm .social-media svg:hover {
            opacity: 0.5; }
    .body-section .content-right .sibling-site-link {
      padding-top: 10px;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 10px; }
      .body-section .content-right .sibling-site-link a {
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-thickness: 1px; }
      .body-section .content-right .sibling-site-link svg path {
        fill: var(--fg); }
      .body-section .content-right .sibling-site-link svg {
        width: 140px;
        height: auto; }
  @media (max-width: 960px) {
    .body-section {
      height: unset;
      margin-top: 0;
      padding-top: 30px; }
      .body-section .img-1, .body-section .img-2 {
        display: none; }
      .body-section .content-right {
        grid-column: 1/-1;
        padding-left: 0; }
        .body-section .content-right .form_fields {
          width: 100%; }
        .body-section .content-right .opening-hours, .body-section .content-right .address, .body-section .content-right .additional-info {
          text-align: center; }
        .body-section .content-right .social-media {
          justify-content: center;
          padding-bottom: 30px; }
        .body-section .content-right .btm {
          flex-direction: column-reverse; }
        .body-section .content-right .sibling-site-link {
          padding-top: 60px; }
      .body-section .inner.grid-primary {
        column-gap: 10px; } }
html {
  overscroll-behavior: none; }

/* Form Styling */
.form_full {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 1rem; }
  .form_full button, .form_full input, .form_full textarea {
    font-size: 18px; }

.form_fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: min-content;
  column-gap: var(--Pm);
  row-gap: 0.875rem; }

.form_field {
  display: flex;
  column-gap: 0.625rem;
  grid-column: 1/-1; }

.form_field.width_full {
  grid-column: span 2; }

.form_field label {
  white-space: nowrap;
  font-size: 18px; }

.form_field input,
.form_field textarea {
  border-bottom: 1px solid; }

.form_field ::placeholder {
  opacity: 0.5; }
